Interface ProjectExManager

All Known Implementing Classes:
ProjectExManagerImpl

public interface ProjectExManager
user: Ildar date: 24.03.15
  • Method Details

    • createProject

      void createProject(Path path, String name, String code) throws ProjectCreateException
      Throws:
      ProjectCreateException
    • loadAndOpenProject

      void loadAndOpenProject(Path path)
      Opens a project
      Parameters:
      path - path to project Future that will return null after the project is opened or failed to open
    • createProjectWithDialog

      Future<?> createProjectWithDialog(Path path, String name, String code)
      Creates a new project, installs required packages
      Parameters:
      path - parent folder in which project folder will be created
      name - project name
      code - project code (this is used e.g. for project folder name or Maven coordinates)
      Returns:
      Future that will return null after the project is created or failed to create