Package nu.fw.jeti.backend

Examples of nu.fw.jeti.backend.XMLData


    private MapTag loadMapImpl(String mapID, String originID) {
        String completeID = new String(originID + "/" + mapID);
        String filename = new String(mapPath + "/" + completeID);
        try {
            XMLFileIO mapLoader = new XMLFileIO();
            XMLData d = mapLoader.readFile(filename);
            if (d == null)
                return null;
            if (d instanceof MapTag) {
                maps.put(completeID, d);
                return (MapTag) d;
View Full Code Here

TOP

Related Classes of nu.fw.jeti.backend.XMLData

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.