Examples of addVegetation()


Examples of org.freerealm.vegetation.VegetationManagerImpl.addVegetation()

    public VegetationManager initializeFromNode(Realm realm, Node node) {
        VegetationManagerImpl vegetationManager = new VegetationManagerImpl();
        for (Node vegetationNode = node.getFirstChild(); vegetationNode != null; vegetationNode = vegetationNode.getNextSibling()) {
            if (vegetationNode.getNodeType() == Node.ELEMENT_NODE) {
                Vegetation vegetation = (new VegetationImplXMLConverter()).initializeFromNode(realm, vegetationNode);
                vegetationManager.addVegetation(vegetation);
            }
        }
        return vegetationManager;
    }
}
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.