387388389390391392393
public void removeAttribute(String name) { this.attributes.remove(name); } public Enumeration getAttributeNames() { return new IteratorEnumeration(this.attributes.keySet().iterator()); }
61626364656667
this.attributes.remove(name); } public Enumeration getAttributeNames() { getLogger().debug("CommandlineContext: getAttributeNames"); return new IteratorEnumeration(this.attributes.keySet().iterator()); }
65666768697071
public Enumeration getAttributeNames() { if (getLogger().isDebugEnabled()) { getLogger().debug("CommandlineContext: getAttributeNames"); } return new IteratorEnumeration(this.attributes.keySet().iterator()); }
338339340341342343344
389390391392393394395
409410411412413414415
110111112113114115116