EjbLocalRefTypepublic class EjbLocalRefType extends org.netbeans.modules.schema2beans.BaseBean This generated bean class EjbLocalRefType matches the schema element ejb-local-refType
===============================================================
The ejb-local-refType is used by ejb-local-ref elements for
the declaration of a reference to an enterprise bean's local
home. The declaration consists of:
- an optional description
- the EJB reference name used in the code of the Deployment
Component that's referencing the enterprise bean
- the expected type of the referenced enterprise bean
- the expected local home and local interfaces of the
referenced enterprise bean
- optional ejb-link information, used to specify the
referenced enterprise bean
===============================================================
Generated on Fri Apr 22 15:42:57 PDT 2005 |
Fields Summary |
---|
static Vector | comparators | public static final String | DESCRIPTION | public static final String | EJB_REF_NAME | public static final String | EJB_REF_TYPE | public static final String | LOCAL_HOME | public static final String | LOCAL | public static final String | EJB_LINK |
Constructors Summary |
---|
public EjbLocalRefType() // NOI18N
this(Common.USE_DEFAULT_VALUES);
| public EjbLocalRefType(int options)
super(comparators, new org.netbeans.modules.schema2beans.Version(1, 2, 0));
// Properties (see root bean comments for the bean graph)
this.createProperty("description", // NOI18N
DESCRIPTION,
Common.TYPE_0_N | Common.TYPE_STRING | Common.TYPE_KEY,
java.lang.String.class);
this.createAttribute(DESCRIPTION, "id", "Id",
AttrProp.CDATA | AttrProp.IMPLIED,
null, null);
this.createAttribute(DESCRIPTION, "xml:lang", "XmlLang",
AttrProp.CDATA | AttrProp.IMPLIED,
null, null);
this.createProperty("ejb-ref-name", // NOI18N
EJB_REF_NAME,
Common.TYPE_1 | Common.TYPE_STRING | Common.TYPE_KEY,
java.lang.String.class);
this.createProperty("ejb-ref-type", // NOI18N
EJB_REF_TYPE,
Common.TYPE_1 | Common.TYPE_STRING | Common.TYPE_KEY,
java.lang.String.class);
this.createProperty("local-home", // NOI18N
LOCAL_HOME,
Common.TYPE_1 | Common.TYPE_STRING | Common.TYPE_KEY,
java.lang.String.class);
this.createProperty("local", // NOI18N
LOCAL,
Common.TYPE_1 | Common.TYPE_STRING | Common.TYPE_KEY,
java.lang.String.class);
this.createProperty("ejb-link", // NOI18N
EJB_LINK,
Common.TYPE_0_1 | Common.TYPE_STRING | Common.TYPE_KEY,
java.lang.String.class);
this.initialize(options);
|
Methods Summary |
---|
public static void | addComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.add(c);
| public int | addDescription(java.lang.String value)
return this.addValue(DESCRIPTION, value);
| public void | dump(java.lang.StringBuffer str, java.lang.String indent)
String s;
Object o;
org.netbeans.modules.schema2beans.BaseBean n;
str.append(indent);
str.append("Description["+this.sizeDescription()+"]"); // NOI18N
for(int i=0; i<this.sizeDescription(); i++)
{
str.append(indent+"\t");
str.append("#"+i+":");
str.append(indent+"\t"); // NOI18N
str.append("<"); // NOI18N
s = this.getDescription(i);
str.append((s==null?"null":s.trim())); // NOI18N
str.append(">\n"); // NOI18N
this.dumpAttributes(DESCRIPTION, i, str, indent);
}
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("EjbRefType"); // NOI18N
str.append(indent+"\t"); // NOI18N
str.append("<"); // NOI18N
s = this.getEjbRefType();
str.append((s==null?"null":s.trim())); // NOI18N
str.append(">\n"); // NOI18N
this.dumpAttributes(EJB_REF_TYPE, 0, str, indent);
str.append(indent);
str.append("LocalHome"); // NOI18N
str.append(indent+"\t"); // NOI18N
str.append("<"); // NOI18N
s = this.getLocalHome();
str.append((s==null?"null":s.trim())); // NOI18N
str.append(">\n"); // NOI18N
this.dumpAttributes(LOCAL_HOME, 0, str, indent);
str.append(indent);
str.append("Local"); // NOI18N
str.append(indent+"\t"); // NOI18N
str.append("<"); // NOI18N
s = this.getLocal();
str.append((s==null?"null":s.trim())); // NOI18N
str.append(">\n"); // NOI18N
this.dumpAttributes(LOCAL, 0, str, indent);
str.append(indent);
str.append("EjbLink"); // NOI18N
str.append(indent+"\t"); // NOI18N
str.append("<"); // NOI18N
s = this.getEjbLink();
str.append((s==null?"null":s.trim())); // NOI18N
str.append(">\n"); // NOI18N
this.dumpAttributes(EJB_LINK, 0, str, indent);
| public java.lang.String | dumpBeanNode()
StringBuffer str = new StringBuffer();
str.append("EjbLocalRefType\n"); // NOI18N
this.dump(str, "\n "); // NOI18N
return str.toString();
| public java.lang.String | getDescription(int index)
return (java.lang.String)this.getValue(DESCRIPTION, index);
| public java.lang.String[] | getDescription()
return (java.lang.String[])this.getValues(DESCRIPTION);
| public java.lang.String | getEjbLink()
return (java.lang.String)this.getValue(EJB_LINK);
| public java.lang.String | getEjbRefName()
return (java.lang.String)this.getValue(EJB_REF_NAME);
| public java.lang.String | getEjbRefType()
return (java.lang.String)this.getValue(EJB_REF_TYPE);
| public java.lang.String | getLocal()
return (java.lang.String)this.getValue(LOCAL);
| public java.lang.String | getLocalHome()
return (java.lang.String)this.getValue(LOCAL_HOME);
| void | initialize(int options)
| public static void | removeComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.remove(c);
| public int | removeDescription(java.lang.String value)
return this.removeValue(DESCRIPTION, value);
| public void | setDescription(int index, java.lang.String value)
this.setValue(DESCRIPTION, index, value);
| public void | setDescription(java.lang.String[] value)
this.setValue(DESCRIPTION, value);
| public void | setEjbLink(java.lang.String value)
this.setValue(EJB_LINK, value);
| public void | setEjbRefName(java.lang.String value)
this.setValue(EJB_REF_NAME, value);
| public void | setEjbRefType(java.lang.String value)
this.setValue(EJB_REF_TYPE, value);
| public void | setLocal(java.lang.String value)
this.setValue(LOCAL, value);
| public void | setLocalHome(java.lang.String value)
this.setValue(LOCAL_HOME, value);
| public int | sizeDescription()
return this.size(DESCRIPTION);
| public void | validate()
|
|