net.openmarkup
Interface PropertyMap

All Known Subinterfaces:
NamedPropertyMap

public interface PropertyMap

Provides support for setting and getting client properties (also known as "user data").

Author:
Ramesh Gupta

Method Summary
 Object getClientProperty(Object key)
          Gets client property (also known as user data) identified by the specified key.
 void putClientProperty(Object key, Object value)
          Saves the specified value object as a client property (also known as user data) for subsequent retrieval using the specified key.
 

Method Detail

getClientProperty

public Object getClientProperty(Object key)
Gets client property (also known as user data) identified by the specified key.

Parameters:
key - used to look up the property value
Returns:
property value for the specified key

putClientProperty

public void putClientProperty(Object key,
                              Object value)
Saves the specified value object as a client property (also known as user data) for subsequent retrieval using the specified key.

Parameters:
key - used to look up the property value
value - value stored as client property or user data


Copyright 2003-2004 eNode, Inc. All rights reserved.