Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.progeeks.meta
Interface PropertyMutator  view PropertyMutator download PropertyMutator.java

All Known Subinterfaces:
ListMutator
All Known Implementing Classes:
AbstractListMutator, DefaultListMutator, DefaultPropertyMutator

public interface PropertyMutator

Provides access to an individual property value and allows for accessing or modifying it.

Version:
$Revision: 1.1 $

Method Summary
 void addPropertyChangeListener(java.beans.PropertyChangeListener l)
          Adds the specified PropertyChangeListener to this mutator.
 MetaObject getParentObject()
          Returns the object that contains this property.
 PropertyInfo getPropertyInfo()
          Returns the info associated with this property.
 java.lang.String getPropertyName()
          Returns the name of this property.
 java.lang.Object getValue()
          Returns the value of this property.
 void removePropertyChangeListener(java.beans.PropertyChangeListener l)
          Removes the specified PropertyChangeListener from this mutator.
 void setValue(java.lang.Object value)
          Resets the value of this property.
 

Method Detail

getPropertyName

public java.lang.String getPropertyName()
Returns the name of this property.


getParentObject

public MetaObject getParentObject()
Returns the object that contains this property.


getPropertyInfo

public PropertyInfo getPropertyInfo()
Returns the info associated with this property.


getValue

public java.lang.Object getValue()
Returns the value of this property.


setValue

public void setValue(java.lang.Object value)
Resets the value of this property.


addPropertyChangeListener

public void addPropertyChangeListener(java.beans.PropertyChangeListener l)
Adds the specified PropertyChangeListener to this mutator.


removePropertyChangeListener

public void removePropertyChangeListener(java.beans.PropertyChangeListener l)
Removes the specified PropertyChangeListener from this mutator.