| java.lang.Object org.openharmonise.vfs.search.PropertyCondition
PropertyCondition | public class PropertyCondition (Code) | | This class holds the information for a VirtualFileSystem search,
property based, condition.
author: Matthew Large version: $Revision: 1.1 $ |
PropertyCondition | public PropertyCondition(String sPropNamespace, String sPropName, String operator)(Code) | | Constructs a new property condition.
Parameters: sPropNamespace - Namespace of property to be searched on Parameters: sPropName - Name of property to be searched on Parameters: operator - Operator for this condition, defaults to '=' |
getOperator | public String getOperator()(Code) | | Returns the operator for this condition.
Operator |
getPropName | public String getPropName()(Code) | | Returns the name of the property.
Name |
getPropNamespaceURI | public String getPropNamespaceURI()(Code) | | Returns the namespace of the property.
Namespace |
getValues | public List getValues()(Code) | | Returns a list of value for this condition.
List of values |
setValue | public void setValue(String sValue)(Code) | | Sets the value of this condition.
Parameters: sValue - Value |
setValue | public void setValue(List aValues)(Code) | | Sets a list of values for this condition.
Parameters: aValues - List of values |
|
|