Interface IGitBoundProjectStateDelta
-
public interface IGitBoundProjectStateDelta
Describes changes of the Git-associated state of a project.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IGitBoundProjectState
getNewState()
IGitBoundProjectState
getOldState()
org.eclipse.core.resources.IProject
getProject()
org.eclipse.jgit.lib.Repository
getRepository()
-
-
-
Method Detail
-
getProject
org.eclipse.core.resources.IProject getProject()
- Returns:
- the project, never
null
-
getRepository
org.eclipse.jgit.lib.Repository getRepository()
- Returns:
- the repository, never
null
-
getOldState
IGitBoundProjectState getOldState()
- Returns:
- old Git-associated project state, or
null
if unknown
-
getNewState
IGitBoundProjectState getNewState()
- Returns:
- new Git-associated project state, or
null
if unknown
-
-