Package de.mhus.lib.cao

Examples of de.mhus.lib.cao.CaoMetadata


  }
 
  public EmptyElement(CaoApplication app, String name,CaoList children) throws CaoException {
    super(app);
    this.name = name;
    this.meta = new CaoMetadata(getDriver());
    if (children != null)
      this.children = children;
  }
View Full Code Here


  }
 
  public EmptyElement(CaoElement parent, String name,List<CaoElement> children) throws CaoException {
    super(parent);
    this.name = name;
    this.meta = new CaoMetadata(getDriver());
    if (children != null)
      this.children = new LinkedCaoList(this, children);
  }
View Full Code Here

  }
 
  public EmptyElement(CaoApplication app, String name,List<CaoElement> children) throws CaoException {
    super(app);
    this.name = name;
    this.meta = new CaoMetadata(getDriver());
    if (children != null)
      this.children = new LinkedCaoList(this, children);
  }
View Full Code Here

TOP

Related Classes of de.mhus.lib.cao.CaoMetadata

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.