Alien-SVN
view release on metacpan or search on metacpan
src/subversion/subversion/bindings/javahl/src/org/tigris/subversion/javahl/Status.java view on Meta::CPAN
/**
* Returns test status of the properties in the repository (See StatusKind)
* @return file status property enum of the "property" component im the
* repository.
*/
public int getRepositoryPropStatus()
{
return repositoryPropStatus;
}
/**
* Returns if the item is locked (running or aborted subversion operation)
* @return true if locked
*/
public boolean isLocked()
{
return locked;
}
/**
* Returns if the item has been copied
* @return true if copied
*/
public boolean isCopied()
{
return copied;
}
/**
* Returns in case of conflict, the filename of the most recent repository
* version
* @return the filename of the most recent repository version
*/
public String getConflictNew()
{
return conflictNew;
}
/**
* Returns in case of conflict, the filename of the common base version
* @return the filename of the common base version
*/
public String getConflictOld()
{
return conflictOld;
}
/**
* Returns in case of conflict, the filename of the former working copy
* version
* @return the filename of the former working copy version
*/
public String getConflictWorking()
{
return conflictWorking;
}
/**
* Returns the URI to where the item might exist in the
* repository. We say "might" because the item might exist in
* your working copy, but have been deleted from the repository.
* Or it might exist in the repository, but your working copy
* might not yet contain it (because the WC is not up to date).
* @return URI in repository, or <code>null</code> if the item
* exists in neither the repository nor the WC.
*/
public String getUrl()
{
return url;
}
/**
* Returns the last revision the file was changed as a Revision object
* @return last changed revision
*/
public Revision.Number getLastChangedRevision()
{
return Revision.createNumber(lastChangedRevision);
}
/**
* Returns the last revision the file was changed as a long integer
* @return last changed revision
*/
public long getLastChangedRevisionNumber()
{
return lastChangedRevision;
}
/**
* Returns the kind of the node (file, directory or unknown, see NodeKind)
* @return the node kind
*/
public int getNodeKind()
{
return nodeKind;
}
/**
* Returns if copied the copy source url or null
* @return the source url
*/
public String getUrlCopiedFrom()
{
return urlCopiedFrom;
}
/**
* Returns if copied the source revision as a Revision object
* @return the source revision
*/
public Revision.Number getRevisionCopiedFrom()
{
return Revision.createNumber(revisionCopiedFrom);
}
/**
* Returns if copied the source revision as s long integer
* @return the source revision
( run in 0.597 second using v1.01-cache-2.11-cpan-483215c6ad5 )