/* * * Copyright 1999, 2000 Sun Microsystems, Inc. All Rights Reserved. * * This software is the proprietary information of Sun Microsystems, Inc. * Use is subject to license terms. * */ import javax.servlet.jsp.*; import javax.servlet.jsp.tagext.*; public class EjbExtraInfo extends TagExtraInfo { public VariableInfo[] getVariableInfo(TagData data) { System.out.println("getVariableInfo()"); return new VariableInfo[] { new VariableInfo((String)data.getAttribute("homeVar"), (String)data.getAttribute("homeInterface"), true, VariableInfo.NESTED), }; } }