Interface next.util.KeyValueCoding

INTERFACE DESCRIPTION

Extends:
java.lang.Object

This interface allows you to add "key-value coding" functionality to objects that inherit from java.lang.Object (also see the documentation for the next.util.keyValue class). Key-value coding allows you to access the properties of an object indirectly by name (or key), rather than directly through invocation of an accessor method or as instance variables. This allows you to access any object's state in a consistent manner.


METHODS

takeValueForKey

public abstract void takeValueForKey(java.lang.Object anObject, java.lang.String key)

Sets the value for the property identified by key to anObject.


valueForKey

public abstract java.lang.Object valueForKey(java.lang.String key)

Returns the value for the property identified by key.