Package org.tuba.data.xml.util

Examples of org.tuba.data.xml.util.OperationList


  private XMLIntegrator integrator = null;

  public XMLReference(Element element) {
    super();
    this.element = element;
    this.operations = new OperationList(this.element);

    Element rep = element.getChild(XMLProvider.TAG);
    if (rep != null)
      provider = new XMLProvider(rep);
View Full Code Here


    return elem.getChildren(name);
  }

  public XMLReference(XMLProvider provider) {
    this.element = new Element(TAG);
    this.operations = new OperationList(this.element);

    element.setAttribute(ATTRIBUTE_ID, UUID.randomUUID().toString());
    element.addContent(provider.getElement());
  }
View Full Code Here

TOP

Related Classes of org.tuba.data.xml.util.OperationList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.