com.plumtree.portaluiinfrastructure.tags.data
Interface IDataObject

All Known Subinterfaces:
IHierarchicalDataObject
All Known Implementing Classes:
HashtableDataObject

public interface IDataObject

Data objects are used to store collections of variables in Tag memory so that they can be accessed automatically using attribute value replacement.

For instance, if an IDataObject is stored in memory (ATag.SetVariable or SetSharedVariable) under the key "links" and has data stored in it under the keys "url" and "name", it could be used as follows:

<pt:core.html pt:tag="a" href="$url" title="$name">
<pt:logic.value value="$links.name"/>
</pt:core.html>


Method Summary
 java.lang.String GetData(java.lang.String _strKey)
          Gets the data stored with a particular key.
 

Method Detail

GetData

java.lang.String GetData(java.lang.String _strKey)
Gets the data stored with a particular key.

Parameters:
_strKey - The key for the requested data
Returns:
String The requested data



Copyright © 2002,2003,2004,2005 Plumtree Software, Inc., All Rights Reserved.