com.javapathfinder.vjp.config.editors
Class Property

java.lang.Object
  extended by com.javapathfinder.vjp.config.editors.Property

public class Property
extends java.lang.Object


Constructor Summary
Property(java.lang.String name, java.lang.String value)
          Constructs a property with the specified name and value
 
Method Summary
 boolean equals(java.lang.Object o)
          Returns whether the object passed is equal to this property
 java.lang.String getName()
          The name of this property.
 java.lang.String getValue()
          The value of this property.
 void setName(java.lang.String name)
          Set the name of this property
 void setValue(java.lang.String value)
          Set the value of this property
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Property

public Property(java.lang.String name,
                java.lang.String value)
Constructs a property with the specified name and value

Parameters:
name - the of this property
value - the value for this property
Method Detail

getName

public java.lang.String getName()
The name of this property.

Returns:
the name of this property

getValue

public java.lang.String getValue()
The value of this property.

Returns:
the value of this property

setName

public void setName(java.lang.String name)
Set the name of this property

Parameters:
name - the new name for this property

setValue

public void setValue(java.lang.String value)
Set the value of this property

Parameters:
name - the new value for this property

equals

public boolean equals(java.lang.Object o)
Returns whether the object passed is equal to this property

Overrides:
equals in class java.lang.Object

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object
Returns:
a string representation of this property.