ca.quine.jcommons.transform
Class GlobalProperties
java.lang.Object
|
+--ca.quine.jcommons.transform.GlobalProperties
- public class GlobalProperties
- extends Object
Provides a non-type safe generic way of setting and accessing global
properties for transforms. Users are not required to use this class
for global properties, but those wishing to write transforms that can
easily be reused should strongly consider it.
If type safety is required, the author recommends creating a Singleton
that is similar in nature to this one that is more specific to the
task at hand.
Recommendations:
- See Also:
ThreadProperties
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
getInstance
public static GlobalProperties getInstance()
setProperty
public void setProperty(Object key,
Object value)
getProperty
public Object getProperty(Object key)
removeProperty
public Object removeProperty(Object key)