Package org.objectweb.celtix.tools.utils

Examples of org.objectweb.celtix.tools.utils.PropertyUtil


    public ProcessorEnvironment() {
    }

    public void loadDefaultNS2Pck() {
        try {
            PropertyUtil properties = new PropertyUtil();
            properties.load(getResourceAsStream("toolspec/toolspecs/namespace2package.cfg"));
            namespacePackageMap.putAll(properties.getMaps());
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
View Full Code Here


        }
    }

    public void loadDefaultExcludes() {
        try {
            PropertyUtil properties = new PropertyUtil();
            properties.load(getResourceAsStream("toolspec/toolspecs/wsdltojavaexclude.cfg"));
            excludeNamespacePackageMap.putAll(properties.getMaps());
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
View Full Code Here

TOP

Related Classes of org.objectweb.celtix.tools.utils.PropertyUtil

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.