| org.w3c.jigedit.cvs.CvsHandlerInterface
All known Subclasses: org.w3c.jigedit.cvs.CvsDirectoryHandler,
CvsHandlerInterface | public interface CvsHandlerInterface (Code) | | |
Method Summary | |
public void | perform(Request request, String action, String regexp, String comment) Perform action on the given cvs entry, on behalf of the given client. | public void | perform(Request request, String action, String regexp) Perform action on the given cvs entry, on behalf of the given client. | public void | perform(Request request, String action, String names, String revs) Perform action on the given cvs entry, on behalf of the given client. | public void | perform(Request request, String action, String names, String revs, String comment) Perform action on the given cvs entry, on behalf of the given client. |
perform | public void perform(Request request, String action, String regexp, String comment) throws ProtocolException(Code) | | Perform action on the given cvs entry, on behalf of the given client.
Parameters: request - The request to handle. Parameters: action - The action to perform. Parameters: regexp - The regular expression Parameters: comment - Some comments describing your changes. exception: ProtocolException - If the action couldn't be performed. |
perform | public void perform(Request request, String action, String regexp) throws ProtocolException(Code) | | Perform action on the given cvs entry, on behalf of the given client.
Parameters: request - The request to handle. Parameters: action - The action to perform. Parameters: regexp - The regular expression exception: ProtocolException - If the action couldn't be performed. |
perform | public void perform(Request request, String action, String names, String revs) throws ProtocolException(Code) | | Perform action on the given cvs entry, on behalf of the given client.
Parameters: request - The request to handle. Parameters: action - The action to perform. Parameters: entry - The entry to act on. Parameters: direntries - the directories to act on exception: ProtocolException - If the action couldn't be performed. |
perform | public void perform(Request request, String action, String names, String revs, String comment) throws ProtocolException(Code) | | Perform action on the given cvs entry, on behalf of the given client.
Parameters: request - The request that triggered the processing. Parameters: action - The action to perform. Parameters: entry - The entry to act on. Parameters: direntries - the directories to act on Parameters: comment - Some comments describing your changes. exception: ProtocolException - If the action couldn't be performed. |
|
|