Methods Summary |
---|
public void | addElement(ExtensionElementDescriptor newElement)Add a deployment extension element to his deployment extension
elements.add(newElement);
changed();
|
private void | changed()notify our observers we have changed
setChanged();
notifyObservers();
|
public java.util.Iterator | elements()
return elements.iterator();
|
public boolean | getMustUnderstand()
return mustUnderstand;
|
public java.lang.String | getNameSpace()
return nameSpace;
|
public void | print(java.lang.StringBuffer toStringBuffer)
toStringBuffer.append("namespace ").append(nameSpace);
toStringBuffer.append("\nmustUnderstand = ").append(mustUnderstand);
for(Iterator itr = elements();itr.hasNext();) {
toStringBuffer.append("\nelement = ").append(itr.next());
}
|
public void | setMustUnderstand(boolean mustUnderstand)Sets the mustUnderstand flag
this.mustUnderstand = mustUnderstand;
changed();
|
public void | setNameSpace(java.lang.String nameSpace)Sets the namespace for this deployment entension
this.nameSpace = nameSpace;
changed();
|