| com.xoetrope.data.pojo.XPropertiesRetriever
All known Subclasses: com.xoetrope.data.pojo.PropertiesRetriever,
XPropertiesRetriever | public interface XPropertiesRetriever (Code) | | Copyright (c) Xoetrope Ltd., 2001-2007, This software is licensed under
the GNU Public License (GPL), please see license.txt for more details. If
you make commercial use of this software you must purchase a commercial
license from Xoetrope.
|
containsProperty | public boolean containsProperty(XPojoModelVis model, String property)(Code) | | Indicates whether the property of the given model has been stored
Parameters: model - the model which property is to be queried true if the property value has been set, false otherwise |
getPropertyValue | public Object getPropertyValue(XPojoModelVis model, String property)(Code) | | Retrieves the value of the given property for the given model node
Parameters: model - model which property is to be returned Parameters: property - property to be returned value of the property |
removeProperty | public void removeProperty(XPojoModelVis model, String property)(Code) | | Removes the given property
Parameters: model - model whose property is to be removed Parameters: property - the name of the property |
setPropertyValue | public void setPropertyValue(XPojoModelVis model, String property, Object value)(Code) | | Saves the given property value
Parameters: model - model which property is to be saved Parameters: property - the name of the property to be saved Parameters: value - value to be saved |
|
|