oracle.ide.controller
Class PropertyResolver
java.lang.Object
oracle.ide.controller.PropertyResolver
- public abstract class PropertyResolver
- extends java.lang.Object
A property resolver is responsible for looking up a named property. In the
IDE framework, you can associate PropertyResolvers with
ToggleAction using
ToggleAction.addPropertyResolver(PropertyResolver).
- Since:
- 10.1.3
- See Also:
ToggleAction
|
Method Summary |
abstract java.lang.Object |
get(java.lang.String propertyName)
Get the value of the specified property. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
PropertyResolver
public PropertyResolver()
get
public abstract java.lang.Object get(java.lang.String propertyName)
- Get the value of the specified property.
- Parameters:
propertyName - the name of a property. Will never be null.
- Returns:
- the value of the specified property. May be null.
Copyright © 1997, 2005, Oracle.All rights reserved.