Package org.xmlBlaster.jmxgui.util

Examples of org.xmlBlaster.jmxgui.util.XmlUtil


  private Hashtable hObjects;
  private static String ME = "ComponentController";

  public ComponentController(Global glob) {
    if (glob == null) glob = Global.instance();
    xmlUtil = new XmlUtil();

    hObjects = new Hashtable();
    Document doc = xmlUtil.loadConfig();
    buildDOM(doc);
  }
View Full Code Here


  private final String ME = "DataModel";
  private Document config = null;
  private Vector vSubNodes;

  public DataModel(Global glob) throws Exception {
    xmlUtil = new XmlUtil();
    //get Globals and Log
//    if (glob == null) glob = Global.instance();
    this.glob = glob;

    log.info("building new tree...");
View Full Code Here

TOP

Related Classes of org.xmlBlaster.jmxgui.util.XmlUtil

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.