All Packages  Class Hierarchy  This Package  Previous  Next  Index  WEKA's home

Class weka.experiment.PropertyNode

java.lang.Object
   |
   +----weka.experiment.PropertyNode

public class PropertyNode
extends Object
implements Serializable
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: 1.2 $
Author:
Len Trigg (trigg@cs.waikato.ac.nz)

Variable Index

 o parentClass
The class of the object with this property
 o property
Other info about the property
 o value
The current property value

Constructor Index

 o PropertyNode(Object)
Creates a mostly empty property.
 o PropertyNode(Object, PropertyDescriptor, Class)
Creates a fully specified property node.

Method Index

 o toString()
Returns a string description of this property.

Variables

 o value
 public Object value
The current property value

 o parentClass
 public Class parentClass
The class of the object with this property

 o property
 public PropertyDescriptor property
Other info about the property

Constructors

 o PropertyNode
 public PropertyNode(Object pValue)
Creates a mostly empty property.

Parameters:
pValue - a property value.
 o PropertyNode
 public PropertyNode(Object pValue,
                     PropertyDescriptor prop,
                     Class pClass)
Creates a fully specified property node.

Parameters:
pValue - the current property value.
prop - the PropertyDescriptor.
pClass - the Class of the object with this property.

Methods

 o toString
 public String toString()
Returns a string description of this property.

Returns:
a value of type 'String'
Overrides:
toString in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index  WEKA's home