Class DictionaryComponent<T extends DictionaryComponent>

java.lang.Object
oracle.rules.sdk2.dictionary.DictionaryObject
oracle.rules.sdk2.dictionary.DictionaryComponent<T>
All Implemented Interfaces:
Serializable, Cloneable, Map<String,Object>
Direct Known Subclasses:
DictionaryName, ModelComponent, RuleComponent, UnnamedDictionaryComponent

public abstract class DictionaryComponent<T extends DictionaryComponent> extends DictionaryObject implements Map<String,Object>
A dictionary component is a Map of name-value pairs that describes a rule, a fact type, an expression, etc. Each pair is called a "property". Properties may be accessed in 3 ways:
  1. methods from the Map interface, sucha as get(java.lang.Object)
  2. as a java bean property using getters/setters
  3. as a DictionaryProperty
See Also: