Package weka.experiment
Class PropertyNode
java.lang.Object
weka.experiment.PropertyNode
- All Implemented Interfaces:
- Serializable,- RevisionHandler
Stores information on a property of an object: the class of the object with
 the property; the property descriptor, and the current value.
- Version:
- $Revision: 10203 $
- Author:
- Len Trigg (trigg@cs.waikato.ac.nz)
- See Also:
- 
Field SummaryFieldsModifier and TypeFieldDescriptionClass<?>The class of the object with this propertyOther info about the propertyThe current property value
- 
Constructor SummaryConstructorsConstructorDescriptionPropertyNode(Object pValue) Creates a mostly empty property.PropertyNode(Object pValue, PropertyDescriptor prop, Class<?> pClass) Creates a fully specified property node.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the revision string.toString()Returns a string description of this property.
- 
Field Details- 
valueThe current property value
- 
parentClassThe class of the object with this property
- 
propertyOther info about the property
 
- 
- 
Constructor Details- 
PropertyNodeCreates a mostly empty property.- Parameters:
- pValue- a property value.
 
- 
PropertyNodeCreates a fully specified property node.- Parameters:
- pValue- the current property value.
- prop- the PropertyDescriptor.
- pClass- the Class of the object with this property.
 
 
- 
- 
Method Details- 
toStringReturns a string description of this property.
- 
getRevisionReturns the revision string.- Specified by:
- getRevisionin interface- RevisionHandler
- Returns:
- the revision
 
 
-