| java.lang.Object org.w3c.cvs.CvsEntry
Method Summary | |
protected synchronized String | getRevision() | protected synchronized int | getStatus() Get this entry status. | protected synchronized String | getStickyOptions() | protected synchronized boolean | needsUpdate() Does this entry needs updating ?
This method checks the current timestamp for that entry against the
last modified date of the file to check if it needs a status update. | protected synchronized void | setRevision(String revision) | protected synchronized void | setStatus(long timestamp, int status) Set this entry current status. | protected synchronized void | setStickyOptions(String st_opt) |
file | protected File file(Code) | | Our underlying file.
|
isdir | boolean isdir(Code) | | Is that entry a directory ?
|
name | protected String name(Code) | | The file or directory this entry describes.
|
status | protected int status(Code) | | The most recent CVS status obtained for this entry.
|
sticky_options | protected String sticky_options(Code) | | the sticy options
|
timestamp | protected long timestamp(Code) | | The time at which we last updated the status.
|
getRevision | protected synchronized String getRevision()(Code) | | |
getStatus | protected synchronized int getStatus()(Code) | | Get this entry status.
An integer describing the CVS status of that entry. |
getStickyOptions | protected synchronized String getStickyOptions()(Code) | | |
needsUpdate | protected synchronized boolean needsUpdate()(Code) | | Does this entry needs updating ?
This method checks the current timestamp for that entry against the
last modified date of the file to check if it needs a status update.
It also check the repository file stamp.
A boolean, true if the some cvs command required. |
setRevision | protected synchronized void setRevision(String revision)(Code) | | |
setStatus | protected synchronized void setStatus(long timestamp, int status)(Code) | | Set this entry current status.
Parameters: timestamp - Date at which the CVS command was initiated. Parameters: status - The new status for this entry. |
setStickyOptions | protected synchronized void setStickyOptions(String st_opt)(Code) | | |
|
|