Package jetbrains.buildServer.agent
Class VcsChange
- java.lang.Object
-
- jetbrains.buildServer.agent.VcsChange
-
- All Implemented Interfaces:
Comparable
public class VcsChange extends Object implements Comparable
-
-
Constructor Summary
Constructors Constructor Description VcsChange()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(Object o)
String
getAbsolutePath()
String
getChangeType()
String
getRelativePath()
String
getRevision()
boolean
isPersonal()
boolean
isRelatedToClass(String className)
static VcsChange
parse(String line)
void
setCheckoutDir(String checkoutDir)
-
-
-
Method Detail
-
getRelativePath
public String getRelativePath()
-
getAbsolutePath
public String getAbsolutePath()
-
getChangeType
public String getChangeType()
-
getRevision
public String getRevision()
-
isPersonal
public boolean isPersonal()
-
setCheckoutDir
public void setCheckoutDir(String checkoutDir)
-
isRelatedToClass
public boolean isRelatedToClass(String className)
- Parameters:
className
- Java class name- Returns:
- true if this VcsChange belongs to Java source file corresponding to specified class
-
compareTo
public int compareTo(Object o)
- Specified by:
compareTo
in interfaceComparable
-
-