Methods Summary |
---|
public int | addActivationConfigProperty(com.sun.enterprise.tools.common.dd.ejb.ActivationConfigProperty value)
return this.addValue(ACTIVATION_CONFIG_PROPERTY, value);
|
public static void | addComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.add(c);
|
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"); // NOI18N
str.append(indent+"\t"); // NOI18N
str.append("<"); // NOI18N
s = this.getDescription();
str.append((s==null?"null":s.trim())); // NOI18N
str.append(">\n"); // NOI18N
this.dumpAttributes(DESCRIPTION, 0, str, indent);
str.append(indent);
str.append("ActivationConfigProperty["+this.sizeActivationConfigProperty()+"]"); // NOI18N
for(int i=0; i<this.sizeActivationConfigProperty(); i++)
{
str.append(indent+"\t");
str.append("#"+i+":");
n = (org.netbeans.modules.schema2beans.BaseBean) this.getActivationConfigProperty(i);
if (n != null)
n.dump(str, indent + "\t"); // NOI18N
else
str.append(indent+"\tnull"); // NOI18N
this.dumpAttributes(ACTIVATION_CONFIG_PROPERTY, i, str, indent);
}
|
public java.lang.String | dumpBeanNode()
StringBuffer str = new StringBuffer();
str.append("ActivationConfig\n"); // NOI18N
this.dump(str, "\n "); // NOI18N
return str.toString();
|
public com.sun.enterprise.tools.common.dd.ejb.ActivationConfigProperty | getActivationConfigProperty(int index)
return (ActivationConfigProperty)this.getValue(ACTIVATION_CONFIG_PROPERTY, index);
|
public com.sun.enterprise.tools.common.dd.ejb.ActivationConfigProperty[] | getActivationConfigProperty()
return (ActivationConfigProperty[])this.getValues(ACTIVATION_CONFIG_PROPERTY);
|
public java.lang.String | getDescription()
return (String)this.getValue(DESCRIPTION);
|
void | initialize(int options)
|
public int | removeActivationConfigProperty(com.sun.enterprise.tools.common.dd.ejb.ActivationConfigProperty value)
return this.removeValue(ACTIVATION_CONFIG_PROPERTY, value);
|
public static void | removeComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.remove(c);
|
public void | setActivationConfigProperty(int index, com.sun.enterprise.tools.common.dd.ejb.ActivationConfigProperty value)
this.setValue(ACTIVATION_CONFIG_PROPERTY, index, value);
|
public void | setActivationConfigProperty(com.sun.enterprise.tools.common.dd.ejb.ActivationConfigProperty[] value)
this.setValue(ACTIVATION_CONFIG_PROPERTY, value);
|
public void | setDescription(java.lang.String value)
this.setValue(DESCRIPTION, value);
|
public int | sizeActivationConfigProperty()
return this.size(ACTIVATION_CONFIG_PROPERTY);
|
public void | validate()
boolean restrictionFailure = false;
// Validating property description
if (getDescription() != null) {
}
// Validating property activationConfigProperty
if (sizeActivationConfigProperty() == 0) {
throw new org.netbeans.modules.schema2beans.ValidateException("sizeActivationConfigProperty() == 0", "activationConfigProperty", this); // NOI18N
}
for (int _index = 0; _index < sizeActivationConfigProperty();
++_index) {
com.sun.enterprise.tools.common.dd.ejb.ActivationConfigProperty element = getActivationConfigProperty(_index);
if (element != null) {
element.validate();
}
}
|