363738394041424344
} 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; }
484950515253545556
} 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); }
282930313233343536
} 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); }