FileDocCategorySizeDatePackage
CacheHelper.javaAPI DocGlassfish v2 API23775Fri May 04 22:34:42 BST 2007com.sun.enterprise.tools.common.dd.webapp

CacheHelper

public class CacheHelper extends com.sun.enterprise.tools.common.dd.SunBaseBean
This generated bean class CacheHelper matches the schema element cache-helper Generated on Tue Sep 02 18:08:42 PDT 2003

Fields Summary
static Vector
comparators
public static final String
NAME
public static final String
CLASSNAME
public static final String
PROPERTY
Constructors Summary
public CacheHelper()

	// NOI18N

	  
		this(Common.USE_DEFAULT_VALUES);
	
public CacheHelper(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 voidaddComparator(org.netbeans.modules.schema2beans.BeanComparator c)

		comparators.add(c);
	
public intaddWebProperty(com.sun.enterprise.tools.common.dd.webapp.WebProperty value)

		return this.addValue(PROPERTY, value);
	
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("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.StringdumpBeanNode()

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

		return getAttributeValue(CLASSNAME);
	
public java.lang.StringgetName()

		return getAttributeValue(NAME);
	
public com.sun.enterprise.tools.common.dd.webapp.WebProperty[]getWebProperty()

		return (WebProperty[])this.getValues(PROPERTY);
	
public com.sun.enterprise.tools.common.dd.webapp.WebPropertygetWebProperty(int index)

		return (WebProperty)this.getValue(PROPERTY, index);
	
voidinitialize(int options)

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

		comparators.remove(c);
	
public intremoveWebProperty(com.sun.enterprise.tools.common.dd.webapp.WebProperty value)

		return this.removeValue(PROPERTY, value);
	
public voidsetClassName(java.lang.String value)

		setAttributeValue(CLASSNAME, value);
	
public voidsetName(java.lang.String value)

		setAttributeValue(NAME, value);
	
public voidsetWebProperty(com.sun.enterprise.tools.common.dd.webapp.WebProperty[] value)

		this.setValue(PROPERTY, value);
	
public voidsetWebProperty(int index, com.sun.enterprise.tools.common.dd.webapp.WebProperty value)

		this.setValue(PROPERTY, index, value);
	
public intsizeWebProperty()

		return this.size(PROPERTY);
	
public voidvalidate()

		boolean restrictionFailure = false;
		// Validating property name
		if (getName() == null) {
			throw new org.netbeans.modules.schema2beans.ValidateException("getName() == null", "name", this);	// NOI18N
		}
		// Validating property className
		if (getClassName() == null) {
			throw new org.netbeans.modules.schema2beans.ValidateException("getClassName() == null", "className", this);	// NOI18N
		}
		// 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();
			}
		}