Package com.izforge.izpack.adaptator

Examples of com.izforge.izpack.adaptator.IXMLElement


   * @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 XML tree to read the data from.
   */
  public void runAutomated(IXMLElement panelRoot)
  {
    // We set the data path
    IXMLElement ipath = panelRoot.getFirstChildNamed("teamdatapath");
    idata.setVariable(TEAM_DATA_PATH, ipath.getContent());
  }
View Full Code Here

    // now we need to tell the packs panel to recreate its XML data.
    for (int i = 0;  i < idata.panels.size();   i++) {
      IzPanel panel = (IzPanel) idata.panels.get(i);
      if ("packsPanel".equals(panel.metadata.getPanelid())) {
        IXMLElement panelXML = idata.xmlData.getChildAtIndex(i);
        while (panelXML.hasChildren())
          panelXML.removeChild(panelXML.getChildAtIndex(0));
        panel.makeXMLData(panelXML);
        break;
      }
    }
  }
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

   * @param  panelRoot  The XML tree to read the data from.
   */
  public void runAutomated(IXMLElement panelRoot)
  {
    // We set the data path
    IXMLElement ipath = panelRoot.getFirstChildNamed("datapath");
    idata.setVariable(DATA_PATH, ipath.getContent());
  }
View Full Code Here

TOP

Related Classes of com.izforge.izpack.adaptator.IXMLElement

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.