Package gistoolkit.common

Examples of gistoolkit.common.Node.addChild()


    /** Set up the configuration of this server. */
    public Node getNode()throws Exception{
        // There may be several services involved in a single server.
        Node tempNode = new Node(SERVER_TAG);
        for (int i=0; i<myServices.size(); i++){
            tempNode.addChild( ((Service) myServices.elementAt(i)).getNode());
        }
        return tempNode;
    }
   
    /** Read the configuration information. */
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.