Lines Matching refs:XMLElement

46  * class as well as in <code>XMLElement</code> class.
89 public XMLElement getRootElement() {
96 * a new <code>XMLElement</code> object is returned to the caller.
108 public XMLElement newElement(String name) throws Exception {
115 * a new <code>XMLElement</code> object is returned to the caller.
129 public XMLElement newCollapsedElement(String name) throws Exception {
136 * a new <code>XMLElement</code> object is returned to the caller.
149 public XMLElement newElementFromXMLFragment(String xmlFragment)
160 return (XMLElement) elements.get(0);
166 * a new <code>XMLElement</code> object is returned to the caller.
180 public XMLElement newElement(String name, String value) throws Exception {
287 void addValueTokenForElement(XMLElement element, String value)
317 * Adds the given XMLElement after the token whoes index matches the given
326 void addXMLElementAfterTokenIndex(int lastTokenIndex, XMLElement element,
333 * Adds the given XMLElement after the token whoes index matches the given
343 void addXMLElementAfterTokenIndex(int lastTokenIndex, XMLElement element,
400 void insertEndTokenForElement(XMLElement element) throws Exception {
546 private XMLElement newElement(String name, String value,
566 private XMLElement newElement(String name, String value,
568 XMLElement result = new XMLElement(this, name);
701 setRootElement((XMLElement) elements.get(0));
790 XMLElement element = null;
802 element = new XMLElement(this, elementName);
818 element = new XMLElement(this,
866 element = new XMLElement(this, elementName,
895 element = new XMLElement(this,
976 private void setRootElement(XMLElement root) {
1060 private XMLElement root;