Package ch.epfl.lbd.etl

Examples of ch.epfl.lbd.etl.XML


          "primaryKey  =\""+table.getPrimaryKey()+"\">"+
          "<Table "+
            "name =\""+table.getTableName()+"\"/>"+
        "</Hierarchy>";
   
    hierDef = new XML(hierString);
   
  }
View Full Code Here


import ch.epfl.lbd.etl.XML;

public class XMLTester extends Tester {
 
  public void run(){
    XML document = new XML("root");
    XML newNode = new XML("child");
    newNode.addAttributeToRootNode("age", "12");
    logger.info(document);
   
    document.addToRootNode(newNode);
    logger.info(document);
   
    XML newdoc = new XML("second child");
    document.addToRootNode(newdoc);
    logger.info(document);
   
    XML thirdDoc = new XML("<hello><name>john</name></hello>");
    logger.info(thirdDoc);
  }
View Full Code Here

TOP

Related Classes of ch.epfl.lbd.etl.XML

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.