Package org.apache.cayenne.project

Examples of org.apache.cayenne.project.ProjectConfiguration


     * Creates a configuration suitable for use in the Modeler. Used mainly by subclasses.
     *
     * @since 1.2
     */
    protected Configuration buildProjectConfiguration(File projectFile) {
        ProjectConfiguration config = new ProjectConfiguration(projectFile);
        config.setLoaderDelegate(new ModelerProjectLoadDelegate(config));
        config.setSaverDelegate(new ModelerProjectSaveDelegate(config));
        return config;
    }
View Full Code Here


     * Creates a configuration suitable for use in the Modeler. Used mainly by subclasses.
     *
     * @since 1.2
     */
    protected Configuration buildProjectConfiguration(File projectFile) {
        ProjectConfiguration config = new ProjectConfiguration(projectFile);
        config.setLoaderDelegate(new ModelerProjectLoadDelegate(config));
        config.setSaverDelegate(new ModelerProjectSaveDelegate(config));
        return config;
    }
View Full Code Here

TOP

Related Classes of org.apache.cayenne.project.ProjectConfiguration

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.