Interface ProjectsLoaderCallback
-
- All Known Implementing Classes:
CompositeProjectLoaderCallback
public interface ProjectsLoaderCallback
-
-
Method Summary
-
-
-
Method Detail
-
projectRemoved
default void projectRemoved(@NotNull SProject project)
-
projectCreated
default void projectCreated(@NotNull SProject project)
-
projectUpdated
default void projectUpdated(@NotNull SProject prevProject, @NotNull SProject curProject)
-
projectExternalIdChanged
default void projectExternalIdChanged(@NotNull SProject project, @NotNull String prevExtId, @NotNull String newExtId)
-
vcsRootRemoved
default void vcsRootRemoved(@NotNull SVcsRoot vcsRoot)
-
vcsRootCreated
default void vcsRootCreated(@NotNull SVcsRoot vcsRoot)
-
vcsRootUpdated
default void vcsRootUpdated(@NotNull SVcsRoot prevVcsRoot, @NotNull SVcsRoot newVcsRoot)
-
vcsRootExternalIdChanged
default void vcsRootExternalIdChanged(@NotNull SVcsRoot vcsRoot, @NotNull String prevExtId, @NotNull String newExtId)
-
buildTypeRemoved
default void buildTypeRemoved(@NotNull SBuildType buildType)
-
buildTypeCreated
default void buildTypeCreated(@NotNull SBuildType buildType)
-
buildTypeUpdated
default void buildTypeUpdated(@NotNull SBuildType prevBuildType, @NotNull SBuildType newBuildType)
-
buildTypeExternalIdChanged
default void buildTypeExternalIdChanged(@NotNull SBuildType buildType, @NotNull String prevExtId, @NotNull String newExtId)
-
buildTypeTemplateRemoved
default void buildTypeTemplateRemoved(@NotNull BuildTypeTemplate tpl)
-
buildTypeTemplateCreated
default void buildTypeTemplateCreated(@NotNull BuildTypeTemplate tpl)
-
buildTypeTemplateUpdated
default void buildTypeTemplateUpdated(@NotNull BuildTypeTemplate prevTpl, @NotNull BuildTypeTemplate newTpl)
-
buildTypeTemplateExternalIdChanged
default void buildTypeTemplateExternalIdChanged(@NotNull BuildTypeTemplate tpl, @NotNull String prevExtId, @NotNull String newExtId)
-
processingFinished
default void processingFinished()
-
-