Interface ProjectListener


  • public interface ProjectListener
    ProjectListeners get registered with the project manager. Normally this will eventually result in a pull (possibly after UI interaction). Objects interested in the results of the pull should register ProjectResourceListeners with the Project.
    • Method Detail

      • projectAdded

        void projectAdded​(java.lang.String projectName)
        Called when a new project is added.
      • projectDeleted

        void projectDeleted​(java.lang.String projectName)
        Called when a project is deleted. Listeners should assume that this is called after the project is deleted from the underlying datastore.
      • projectUpdated

        void projectUpdated​(java.lang.String projectName)
        Parameters:
        projectName - The name of the project that has been updated.