ClassLoaderpublic class ClassLoader extends com.sun.enterprise.tools.common.dd.SunBaseBean This generated bean class ClassLoader matches the schema element class-loader
Generated on Tue Mar 02 19:59:37 PST 2004 |
Fields Summary |
---|
static Vector | comparators | public static final String | EXTRACLASSPATH | public static final String | DELEGATE | public static final String | DYNAMICRELOADINTERVAL | public static final String | PROPERTY |
Constructors Summary |
---|
public ClassLoader() // NOI18N
this(Common.USE_DEFAULT_VALUES);
| public ClassLoader(int options)
super(comparators, new org.netbeans.modules.schema2beans.Version(1, 2, 0));
// Properties (see root bean comments for the bean graph)
this.createProperty("property", // NOI18N
PROPERTY,
Common.TYPE_0_N | Common.TYPE_BEAN | Common.TYPE_KEY,
WebProperty.class);
this.createAttribute(PROPERTY, "name", "Name",
AttrProp.CDATA | AttrProp.REQUIRED,
null, null);
this.createAttribute(PROPERTY, "value", "Value",
AttrProp.CDATA | AttrProp.REQUIRED,
null, null);
this.initialize(options);
|
Methods Summary |
---|
public static void | addComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.add(c);
| public int | addWebProperty(com.sun.enterprise.tools.common.dd.webapp.WebProperty value)
return this.addValue(PROPERTY, 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("WebProperty["+this.sizeWebProperty()+"]"); // NOI18N
for(int i=0; i<this.sizeWebProperty(); i++)
{
str.append(indent+"\t");
str.append("#"+i+":");
n = (org.netbeans.modules.schema2beans.BaseBean) this.getWebProperty(i);
if (n != null)
n.dump(str, indent + "\t"); // NOI18N
else
str.append(indent+"\tnull"); // NOI18N
this.dumpAttributes(PROPERTY, i, str, indent);
}
| public java.lang.String | dumpBeanNode()
StringBuffer str = new StringBuffer();
str.append("ClassLoader\n"); // NOI18N
this.dump(str, "\n "); // NOI18N
return str.toString();
| public java.lang.String | getDelegate()
return getAttributeValue(DELEGATE);
| public java.lang.String | getDynamicReloadInterval()
return getAttributeValue(DYNAMICRELOADINTERVAL);
| public java.lang.String | getExtraClassPath()
return getAttributeValue(EXTRACLASSPATH);
| public com.sun.enterprise.tools.common.dd.webapp.WebProperty | getWebProperty(int index)
return (WebProperty)this.getValue(PROPERTY, index);
| public com.sun.enterprise.tools.common.dd.webapp.WebProperty[] | getWebProperty()
return (WebProperty[])this.getValues(PROPERTY);
| void | initialize(int options)
| public static void | removeComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.remove(c);
| public int | removeWebProperty(com.sun.enterprise.tools.common.dd.webapp.WebProperty value)
return this.removeValue(PROPERTY, value);
| public void | setDelegate(java.lang.String value)
setAttributeValue(DELEGATE, value);
| public void | setDynamicReloadInterval(java.lang.String value)
setAttributeValue(DYNAMICRELOADINTERVAL, value);
| public void | setExtraClassPath(java.lang.String value)
setAttributeValue(EXTRACLASSPATH, value);
| public void | setWebProperty(int index, com.sun.enterprise.tools.common.dd.webapp.WebProperty value)
this.setValue(PROPERTY, index, value);
| public void | setWebProperty(com.sun.enterprise.tools.common.dd.webapp.WebProperty[] value)
this.setValue(PROPERTY, value);
| public int | sizeWebProperty()
return this.size(PROPERTY);
| public void | validate()
boolean restrictionFailure = false;
// Validating property extraClassPath
if (getExtraClassPath() != null) {
}
// Validating property delegate
if (getDelegate() == null) {
throw new org.netbeans.modules.schema2beans.ValidateException("getDelegate() == null", "delegate", this); // NOI18N
}
// Validating property dynamicReloadInterval
if (getDynamicReloadInterval() != null) {
}
// Validating property webProperty
for (int _index = 0; _index < sizeWebProperty(); ++_index) {
com.sun.enterprise.tools.common.dd.webapp.WebProperty element = getWebProperty(_index);
if (element != null) {
element.validate();
}
}
|
|