| java.lang.Object org.tigris.subversion.javahl.Info
Info | public class Info (Code) | | Give information about one subversion item (file or directory) in the
working copy
|
Constructor Summary | |
| Info(String name, String url, String uuid, String repository, int schedule, int nodeKind, String author, long revision, long lastChangedRevision, Date lastChangedDate, Date lastDateTextUpdate, Date lastDatePropsUpdate, boolean copied, boolean deleted, boolean absent, boolean incomplete, long copyRev, String copyUrl) |
Info | Info(String name, String url, String uuid, String repository, int schedule, int nodeKind, String author, long revision, long lastChangedRevision, Date lastChangedDate, Date lastDateTextUpdate, Date lastDatePropsUpdate, boolean copied, boolean deleted, boolean absent, boolean incomplete, long copyRev, String copyUrl)(Code) | | Constructor to be called only by the native code
Parameters: name - name of the item Parameters: url - url of the item Parameters: uuid - uuid of the repository Parameters: repository - url of the repository Parameters: author - author of the last change Parameters: revision - revision of the last update Parameters: lastChangedRevision - revision of the last change Parameters: lastChangedDate - the date of the last change Parameters: lastDateTextUpdate - the date of the last text change Parameters: lastDatePropsUpdate - the date of the last property change Parameters: copied - is the item copied Parameters: deleted - is the item deleted Parameters: absent - is the item absent Parameters: incomplete - is the item incomplete Parameters: copyRev - copy source revision Parameters: copyUrl - copy source url |
getAuthor | public String getAuthor()(Code) | | Retrieves the author of the last commit
author of the last commit |
getCopyRev | public long getCopyRev()(Code) | | Retrieves the copy source revision
copy source revision |
getCopyUrl | public String getCopyUrl()(Code) | | Retrieves the copy source url
copy source url |
getLastChangedDate | public Date getLastChangedDate()(Code) | | Retrieves the date of the last commit
the date of the last commit |
getLastChangedRevision | public long getLastChangedRevision()(Code) | | Retrieves the revision of the last commit
the revision of the last commit |
getLastDatePropsUpdate | public Date getLastDatePropsUpdate()(Code) | | Retrieves the last date the properties were changed
last date the properties were changed |
getLastDateTextUpdate | public Date getLastDateTextUpdate()(Code) | | Retrieves the last date the text content was changed
last date the text content was changed |
getName | public String getName()(Code) | | Retrieves the name of the item
name of the item |
getNodeKind | public int getNodeKind()(Code) | | Retrieves the nodeKind
nodeKind |
getRepository | public String getRepository()(Code) | | Retrieves the url of the repository
url of the repository |
getRevision | public long getRevision()(Code) | | Retrieves the last revision the item was updated to
last revision the item was updated to |
getSchedule | public int getSchedule()(Code) | | Retrieves the schedule of the next commit
schedule of the next commit |
getUrl | public String getUrl()(Code) | | Retrieves the url of the item
url of the item |
getUuid | public String getUuid()(Code) | | Retrieves the uuid of the repository
uuid of the repository |
isAbsent | public boolean isAbsent()(Code) | | Retrieve if the item is absent
the item is absent |
isCopied | public boolean isCopied()(Code) | | Retrieve if the item was copied
the item was copied |
isDeleted | public boolean isDeleted()(Code) | | Retrieve if the item was deleted
the item was deleted |
isIncomplete | public boolean isIncomplete()(Code) | | Retrieve if the item is incomplete
the item is incomplete |
|
|