com.fruitioninc.jwc
Class Property

java.lang.Object
  |
  +--com.fruitioninc.jwc.Property

public class Property
extends java.lang.Object

A element of component state.


Field Summary
 Component component
          The component that property is from.
 java.lang.String componentPathName
          The path name to the component enclosing this property.
 java.lang.String propertyName
          The name of the property
 java.lang.Object value
          The value of the property
 
Constructor Summary
Property()
           
Property(Component componentArg, java.lang.String componentPathNameArg, java.lang.String propertyNameArg, java.lang.Object valueArg)
           
 
Method Summary
 java.lang.String toString()
          Returns a string reprentation of the property suitable for debugging.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

componentPathName

public java.lang.String componentPathName
The path name to the component enclosing this property.


propertyName

public java.lang.String propertyName
The name of the property


value

public java.lang.Object value
The value of the property


component

public Component component
The component that property is from.

Constructor Detail

Property

public Property()

Property

public Property(Component componentArg,
                java.lang.String componentPathNameArg,
                java.lang.String propertyNameArg,
                java.lang.Object valueArg)
Method Detail

toString

public java.lang.String toString()
Returns a string reprentation of the property suitable for debugging.

Overrides:
toString in class java.lang.Object