| |
|
| java.lang.Object com.ice.cvsc.CVSIgnore
Constructor Summary | |
public | CVSIgnore() Constructs a new CVSIgnore object. | public | CVSIgnore(String default_spec) Constructs a new CVSIgnore object, setting the
ignore's list to that specified by the parameter. |
Method Summary | |
public void | addIgnoreFile(File ignoreFile) Adds the cvsignore specifications from the file
provided to the current list of ignored files. | public void | addIgnoreSpec(String spec) Adds the cvsignore specifications to the current list
of ignored files. | public void | dumpIgnoreList(String message) | public boolean | isFileToBeIgnored(String name) Determines if a file is to be ignored.
Parameters: name - The name of the file to check. | public void | setIgnoreSpec(String spec) Replaces all current ignore specs with those passed in. | public int | size() |
CVSIgnore | public CVSIgnore()(Code) | | Constructs a new CVSIgnore object.
|
CVSIgnore | public CVSIgnore(String default_spec)(Code) | | Constructs a new CVSIgnore object, setting the
ignore's list to that specified by the parameter.
Parameters: default_spec - The default ignore specs. |
addIgnoreFile | public void addIgnoreFile(File ignoreFile)(Code) | | Adds the cvsignore specifications from the file
provided to the current list of ignored files.
Parameters: ignoreFile - The file containing the ignore specs. |
addIgnoreSpec | public void addIgnoreSpec(String spec)(Code) | | Adds the cvsignore specifications to the current list
of ignored files.
Parameters: spec - The string listing the specs to add. |
dumpIgnoreList | public void dumpIgnoreList(String message)(Code) | | |
isFileToBeIgnored | public boolean isFileToBeIgnored(String name)(Code) | | Determines if a file is to be ignored.
Parameters: name - The name of the file to check. If the file is to be ignored, true, else false. |
setIgnoreSpec | public void setIgnoreSpec(String spec)(Code) | | Replaces all current ignore specs with those passed in.
Parameters: spec - The string listing the specs to replace with. |
|
|
|