Package org.jitterbit.integration.client.ui.project

Examples of org.jitterbit.integration.client.ui.project.IntegrationProjectFactory


            }
        }
       
        public IntegrationProject loadProject() {
            try {
                IntegrationProjectFactory factory = new IntegrationProjectFactory(projectManager);
                return factory.loadExistingProject(projectLocation);
            } catch (Exception ex) {
                exceptionHandler.caught(ex);
            }
            return null;
        }
View Full Code Here


    @Override
    public IntegrationProject getProject() {
        String projectName = inputPanel.getProjectName();
        File rootDir = new File(getNewProjectLocation(), projectName);
        try {
            IntegrationProjectFactory factory = new IntegrationProjectFactory(projectManager);
            return factory.createNewProject(projectName, rootDir);
        } catch (IntegrationProjectFactoryException ex) {
            logger.throwing(getClass().getName(), "createNewProject", ex);
            ErrorLog.attention(CreateNewProjectOption.class, Strings.get("Launcher.CreateProjectFailed"), ex);
        }
        return null;
View Full Code Here

    }

    @Override
    public IntegrationProject getProject() throws Exception {
        try {
            IntegrationProjectFactory factory = new IntegrationProjectFactory(projectManager);
            return factory.loadExistingProject(projectToOpen);
        } finally {
            isOpeningProject = false;
        }
    }
View Full Code Here

            }
        }

        private IntegrationProject createNewProject() {
            try {
                IntegrationProjectFactory factory = new IntegrationProjectFactory(projectManager);
                return factory.createNewProject(projectName, new File(location, projectName));
            } catch (IntegrationProjectFactoryException ex) {
                waitLock.release();
                ErrorLog.attention(DialogBasedNewProjectLoader.class, "Failed to create new project.", ex);
            } finally {
                waitLock.release();
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.ui.project.IntegrationProjectFactory

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.