| 24 |
|
*/ |
| 25 |
|
public static final String REVISION = "$Revision$"; |
| 26 |
|
|
| 27 |
– |
/** |
| 28 |
– |
* The friendly name for this component, used by |
| 29 |
– |
* all related classes. |
| 30 |
– |
*/ |
| 31 |
– |
public static final String NAME = "FilterManager"; |
| 32 |
– |
|
| 27 |
|
//---STATIC METHODS--- |
| 28 |
|
|
| 29 |
|
//---CONSTRUCTORS--- |
| 30 |
|
|
| 31 |
+ |
/** |
| 32 |
+ |
* Constructs a FilterManager with the name given |
| 33 |
+ |
* |
| 34 |
+ |
* @param givenName the name |
| 35 |
+ |
*/ |
| 36 |
+ |
public FilterManager(String givenName) { |
| 37 |
+ |
NAME = givenName; |
| 38 |
+ |
} |
| 39 |
+ |
|
| 40 |
|
//---PUBLIC METHODS--- |
| 41 |
|
|
| 42 |
|
/** |
| 88 |
|
*/ |
| 89 |
|
public String toString() { |
| 90 |
|
return FormatName.getName( |
| 91 |
< |
_name, |
| 91 |
> |
NAME, |
| 92 |
|
getClass().getName(), |
| 93 |
|
REVISION); |
| 94 |
|
} |
| 122 |
|
private ReferenceManager _refman = ReferenceManager.getInstance(); |
| 123 |
|
|
| 124 |
|
//---STATIC ATTRIBUTES--- |
| 125 |
+ |
|
| 126 |
+ |
/** |
| 127 |
+ |
* The friendly name for this component, used by |
| 128 |
+ |
* all related classes. |
| 129 |
+ |
* This is set from the configuration. |
| 130 |
+ |
*/ |
| 131 |
+ |
public static String NAME; |
| 132 |
|
|
| 133 |
|
} |