com.intel.gpe.gridbeans
Interface IGridBeanModel

All Known Subinterfaces:
IGridBean
All Known Implementing Classes:
DefaultGridBeanModel

public interface IGridBeanModel

The model of the GridBean. It is a kind of a map where each value has a name of type QName.

Version:
$Id: IGridBeanModel.java,v 1.3 2005/12/07 12:12:42 lukichev Exp $
Author:
Alexander Lukichev

Method Summary
 java.lang.Object get(javax.xml.namespace.QName key)
          Get the value
 java.util.Set keySet()
          Get the set of value names.
 void set(javax.xml.namespace.QName key, java.lang.Object value)
          Set the value
 

Method Detail

get

java.lang.Object get(javax.xml.namespace.QName key)
Get the value

Parameters:
key - The name of the value
Returns:
The value

set

void set(javax.xml.namespace.QName key,
         java.lang.Object value)
Set the value

Parameters:
key - The name of the value
value - The value

keySet

java.util.Set keySet()
Get the set of value names.

Returns:
The set of the value names