Methods Summary |
---|
public java.util.Properties | getAttributes()
return attributes;
|
public java.lang.String | getDescription()
return sDescription;
|
public com.sun.enterprise.config.serverbeans.ElementProperty[] | getElementProperty()
Object[] arrayObj = vProperty.toArray();
//convert vector to array
ElementProperty [] epArray = new ElementProperty[arrayObj.length];
for (int ii=0; ii<arrayObj.length; ii++) {
epArray[ii] = (ElementProperty)arrayObj[ii];
}
return epArray;
|
public int | getType()
return resType;
|
public void | setAttribute(java.lang.String name, java.lang.String value)
attributes.setProperty(name, value);
|
public void | setDescription(java.lang.String sDescription)
this.sDescription = sDescription;
|
public void | setElementProperty(java.lang.String name, java.lang.String value, java.lang.String sDesc)
ElementProperty ep = new ElementProperty();
ep.setName(name);
ep.setValue(value);
ep.setDescription(sDesc);
vProperty.add(ep);
|
public void | setElementProperty(java.lang.String name, java.lang.String value)
ElementProperty ep = new ElementProperty();
ep.setName(name);
ep.setValue(value);
vProperty.add(ep);
|
public void | setType(int type)
resType = type;
|