Package com.izforge.izpack.adaptator.impl

Examples of com.izforge.izpack.adaptator.impl.XMLElementImpl


   * @param  panelRoot  The tree to put the data in.
   */
  public void makeXMLData(IXMLElement panelRoot)
  {
    // Data path markup
    IXMLElement ipath = new XMLElementImpl("teamdatapath", panelRoot);
    ipath.setContent(idata.getVariable(TEAM_DATA_PATH));
    panelRoot.addChild(ipath);
  }
View Full Code Here


   * @param  panelRoot  The tree to put the data in.
   */
  public void makeXMLData(IXMLElement panelRoot)
  {
    // Data path markup
    IXMLElement ipath = new XMLElementImpl("datapath", panelRoot);
    ipath.setContent(idata.getVariable(DATA_PATH));
    panelRoot.addChild(ipath);
  }
View Full Code Here

TOP

Related Classes of com.izforge.izpack.adaptator.impl.XMLElementImpl

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.