| java.lang.Object com.ibm.rbm.Occurance
Occurance | public class Occurance (Code) | | This is a class used by the RBReporter to track occurances of a resource
key found while scanning a text code file. It is used mainly to produce error
messages with helpful context information.
author: Jared Jackson See Also: com.ibm.rbm.RBReporter |
Constructor Summary | |
| Occurance(String file_name, String file_path, int line_number) Basic data constructor. |
Occurance | Occurance(String file_name, String file_path, int line_number)(Code) | | Basic data constructor.
|
getFileName | public String getFileName()(Code) | | Returns the associated file name of the occurance
|
getFilePath | public String getFilePath()(Code) | | Returns the associated file path of the occurance
|
getLineNumber | public int getLineNumber()(Code) | | Returns the line number of the occurance.
|
toString | public String toString()(Code) | | A representation of the occurance of the form 'Occurance: _file_path_ (_line_number_)'
|
|
|