FileDocCategorySizeDatePackage
EjbRef.javaAPI DocGlassfish v2 API13661Fri May 04 22:34:38 BST 2007com.sun.enterprise.tools.common.dd

EjbRef

public class EjbRef extends com.sun.enterprise.tools.common.dd.SunBaseBean
This generated bean class EjbRef matches the schema element ejb-ref Generated on Wed Aug 13 12:12:27 PDT 2003

Fields Summary
static Vector
comparators
public static final String
EJB_REF_NAME
public static final String
JNDI_NAME
Constructors Summary
public EjbRef()

	// NOI18N

	  
		this(Common.USE_DEFAULT_VALUES);
	
public EjbRef(int options)

		super(comparators, new org.netbeans.modules.schema2beans.Version(1, 2, 0));
		// Properties (see root bean comments for the bean graph)
		this.createProperty("ejb-ref-name", 	// NOI18N
			EJB_REF_NAME, 
			Common.TYPE_1 | Common.TYPE_STRING | Common.TYPE_KEY, 
			String.class);
		this.createProperty("jndi-name", 	// NOI18N
			JNDI_NAME, 
			Common.TYPE_1 | Common.TYPE_STRING | Common.TYPE_KEY, 
			String.class);
		this.initialize(options);
	
Methods Summary
public static voidaddComparator(org.netbeans.modules.schema2beans.BeanComparator c)

		comparators.add(c);
	
public voiddump(java.lang.StringBuffer str, java.lang.String indent)

		String s;
		Object o;
		org.netbeans.modules.schema2beans.BaseBean n;
		str.append(indent);
		str.append("EjbRefName");	// NOI18N
		str.append(indent+"\t");	// NOI18N
		str.append("<");	// NOI18N
		s = this.getEjbRefName();
		str.append((s==null?"null":s.trim()));	// NOI18N
		str.append(">\n");	// NOI18N
		this.dumpAttributes(EJB_REF_NAME, 0, str, indent);

		str.append(indent);
		str.append("JndiName");	// NOI18N
		str.append(indent+"\t");	// NOI18N
		str.append("<");	// NOI18N
		s = this.getJndiName();
		str.append((s==null?"null":s.trim()));	// NOI18N
		str.append(">\n");	// NOI18N
		this.dumpAttributes(JNDI_NAME, 0, str, indent);

	
public java.lang.StringdumpBeanNode()

		StringBuffer str = new StringBuffer();
		str.append("EjbRef\n");	// NOI18N
		this.dump(str, "\n  ");	// NOI18N
		return str.toString();
	
public java.lang.StringgetEjbRefName()

		return (String)this.getValue(EJB_REF_NAME);
	
public java.lang.StringgetJndiName()

		return (String)this.getValue(JNDI_NAME);
	
voidinitialize(int options)

		
	
public static voidremoveComparator(org.netbeans.modules.schema2beans.BeanComparator c)

		comparators.remove(c);
	
public voidsetEjbRefName(java.lang.String value)

		this.setValue(EJB_REF_NAME, value);
	
public voidsetJndiName(java.lang.String value)

		this.setValue(JNDI_NAME, value);
	
public voidvalidate()

		boolean restrictionFailure = false;
		// Validating property ejbRefName
		if (getEjbRefName() == null) {
			throw new org.netbeans.modules.schema2beans.ValidateException("getEjbRefName() == null", "ejbRefName", this);	// NOI18N
		}
		// Validating property jndiName
		if (getJndiName() == null) {
			throw new org.netbeans.modules.schema2beans.ValidateException("getJndiName() == null", "jndiName", this);	// NOI18N
		}