Package business_layer

Examples of business_layer.DataDictionary


        dataDictionary = loadDataDictionaryFile();
        //if it wasn't loaded, create new RedoLog object
        if(redoLog==null)
            redoLog = new RedoLog();
        if(dataDictionary==null)
            dataDictionary = new DataDictionary();
    }
View Full Code Here


        return true;
    }

    private DataDictionary loadDataDictionaryFile() {
        DataDictionary dict = null;
        String filename = "datadict.xml";
        if (filename != null) {
            try {
                XStream xstream = new XStream(new DomDriver());
                ObjectInputStream in = xstream.createObjectInputStream(new FileReader(filename));
View Full Code Here

TOP

Related Classes of business_layer.DataDictionary

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.