Package de.gamobi.jkariam.simpletypes

Examples of de.gamobi.jkariam.simpletypes.Position


    Document doc = builder.build(this.cityFile);
    Element city = doc.getRootElement();
   
    this.id = this.cityFile.getName().split(" ")[0];
    this.name = city.getAttributeValue("name");
    this.position = new Position(city.getAttributeValue("position"));
    this.resource = city.getAttributeValue("resource");
   
    this.totalPopulation = Integer.valueOf(city.getChild("population").getAttributeValue("total"));
    this.worker = Integer.valueOf(city.getChild("population").getAttributeValue("worker"));
    this.miner = Integer.valueOf(city.getChild("population").getAttributeValue("miner"));
View Full Code Here

TOP

Related Classes of de.gamobi.jkariam.simpletypes.Position

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.