Methods Summary |
---|
public static void | addComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.add(c);
|
public int | addQueryMethod(com.sun.enterprise.tools.common.dd.ejb.QueryMethod value)
return this.addValue(QUERY_METHOD, 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("QueryMethod["+this.sizeQueryMethod()+"]"); // NOI18N
for(int i=0; i<this.sizeQueryMethod(); i++)
{
str.append(indent+"\t");
str.append("#"+i+":");
n = (org.netbeans.modules.schema2beans.BaseBean) this.getQueryMethod(i);
if (n != null)
n.dump(str, indent + "\t"); // NOI18N
else
str.append(indent+"\tnull"); // NOI18N
this.dumpAttributes(QUERY_METHOD, i, str, indent);
}
|
public java.lang.String | dumpBeanNode()
StringBuffer str = new StringBuffer();
str.append("PrefetchDisabled\n"); // NOI18N
this.dump(str, "\n "); // NOI18N
return str.toString();
|
public com.sun.enterprise.tools.common.dd.ejb.QueryMethod | getQueryMethod(int index)
return (QueryMethod)this.getValue(QUERY_METHOD, index);
|
public com.sun.enterprise.tools.common.dd.ejb.QueryMethod[] | getQueryMethod()
return (QueryMethod[])this.getValues(QUERY_METHOD);
|
void | initialize(int options)
|
public static void | removeComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.remove(c);
|
public int | removeQueryMethod(com.sun.enterprise.tools.common.dd.ejb.QueryMethod value)
return this.removeValue(QUERY_METHOD, value);
|
public void | setQueryMethod(int index, com.sun.enterprise.tools.common.dd.ejb.QueryMethod value)
this.setValue(QUERY_METHOD, index, value);
|
public void | setQueryMethod(com.sun.enterprise.tools.common.dd.ejb.QueryMethod[] value)
this.setValue(QUERY_METHOD, value);
|
public int | sizeQueryMethod()
return this.size(QUERY_METHOD);
|
public void | validate()
boolean restrictionFailure = false;
// Validating property queryMethod
if (sizeQueryMethod() == 0) {
throw new org.netbeans.modules.schema2beans.ValidateException("sizeQueryMethod() == 0", "queryMethod", this); // NOI18N
}
for (int _index = 0; _index < sizeQueryMethod(); ++_index) {
com.sun.enterprise.tools.common.dd.ejb.QueryMethod element = getQueryMethod(_index);
if (element != null) {
element.validate();
}
}
|