|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.aragost.javahg.Changeset
public class Changeset
Represent data for a single changeset.
A Changeset object can be created just with the node id. The actually data will be loaded on demand when it is accessed
Nested Class Summary | |
---|---|
class |
Changeset.Extra
Class representing the extra dictionary Mercurial has for each changeset. |
Field Summary | |
---|---|
static String |
CHANGESET_EAGER_STYLE_PATH
|
static String |
CHANGESET_STYLE_PATH
Style file used among other with the log command to read changesets. |
protected com.aragost.javahg.ChangesetData |
data
The actual data for the Changeset |
protected com.aragost.javahg.ChangesetFileData |
fileData
The actual file data for the Changeset |
static String |
NULL_ID
The id for the null changeset |
Constructor Summary | |
---|---|
Changeset(Repository repository,
String node)
Use Repository.changeset(String) to create Changesets |
Method Summary | |
---|---|
boolean |
equals(Changeset that)
|
boolean |
equals(Object that)
|
List<String> |
getAddedFiles()
|
String |
getBranch()
|
List<String> |
getDeletedFiles()
|
Changeset.Extra |
getExtra()
|
String |
getMessage()
|
List<String> |
getModifiedFiles()
|
String |
getNode()
|
Changeset |
getParent1()
|
Changeset |
getParent2()
|
int |
getRevision()
|
DateTime |
getTimestamp()
|
String |
getUser()
|
int |
hashCode()
|
Phase |
phase()
|
static List<Changeset> |
readListFromStream(Repository repository,
HgInputStream in)
This method is an alias for readListFromStream(Repository, HgInputStream, boolean)
with the eager parameter set to false. |
static List<Changeset> |
readListFromStream(Repository repository,
HgInputStream in,
boolean eager)
Read the rest of the content of the stream and return a List of the Changeset found there. |
Phase |
readPhase()
Deprecated. |
List<String> |
tags()
Return tags that is pointing the this changeset |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final String CHANGESET_STYLE_PATH
The style is parsed by the createFromInputStream() method.
public static final String CHANGESET_EAGER_STYLE_PATH
public static final String NULL_ID
protected com.aragost.javahg.ChangesetData data
protected com.aragost.javahg.ChangesetFileData fileData
Constructor Detail |
---|
public Changeset(Repository repository, String node)
Repository.changeset(String)
to create Changesets
repository
- Method Detail |
---|
public static List<Changeset> readListFromStream(Repository repository, HgInputStream in)
readListFromStream(Repository, HgInputStream, boolean)
with the eager parameter set to false.
repository
- in
-
public static List<Changeset> readListFromStream(Repository repository, HgInputStream in, boolean eager)
Be aware the this method will read everything from the stream, what is after the changesets will simply be discarded.
repository
- in
- eager
-
public String getNode()
public int getRevision()
public String getUser()
public DateTime getTimestamp()
public String getBranch()
public Changeset getParent1()
public Changeset getParent2()
public String getMessage()
public List<String> getAddedFiles()
public List<String> getModifiedFiles()
public List<String> getDeletedFiles()
@Deprecated public Phase readPhase()
public Phase phase()
public List<String> tags()
public Changeset.Extra getExtra()
public boolean equals(Object that)
equals
in class Object
public boolean equals(Changeset that)
public int hashCode()
hashCode
in class Object
public String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |