| java.lang.Object com.ice.util.Globber
Constructor Summary | |
public | Globber() Constructs a new Glob object, with no match list. | public | Globber(String default_spec) Constructs a new Glob object, setting the
match list to that specified by the parameter. |
Globber | public Globber()(Code) | | Constructs a new Glob object, with no match list.
Parameters: default_spec - The default match specs. |
Globber | public Globber(String default_spec)(Code) | | Constructs a new Glob object, setting the
match list to that specified by the parameter.
Parameters: default_spec - The default match specs. |
addMatchFile | public void addMatchFile(File matchFile)(Code) | | Adds the glob matching specifications from the file
to the current list of matching specifications.
Parameters: ignoreFile - The file containing the ignore specs. |
addMatchSpec | public void addMatchSpec(String spec)(Code) | | Adds the glob matching specifications to the current list
of matching specifications.
Parameters: spec - The string listing the specs to add. |
dumpMatchSpecs | public void dumpMatchSpecs(String message)(Code) | | |
isFileMatched | public boolean isFileMatched(String name)(Code) | | Determines if a file is to be matched.
Parameters: name - The name of the file to check. If the file is to be ignored, true, else false. |
setMatchSpec | public void setMatchSpec(String spec)(Code) | | Replaces all current match specs with those passed in.
Parameters: spec - The string listing the specs to replace with. |
|
|