Uses of Interface
net.sf.fikin.pojostate.Property

Packages that use Property
net.sf.fikin.pojostate Package Specification POJO State : observer everythign everywhere This library provides with implementation and APIs for observing POJO state applicable in various uses cases. 
net.sf.fikin.pojostate.format Package Specification This package contains formatting objects used by Property.getValue() and State.toString()
net.sf.fikin.pojostate.state Package Specification This package contains implementation of State and Property interfaces 
 

Uses of Property in net.sf.fikin.pojostate
 

Methods in net.sf.fikin.pojostate that return Property
 Property State.getProperty(java.lang.String propertyName)
          find the property with that name from the collection
 Property StatePrototype.newProperty(MethodMeta mm)
          instantiate new Property for given MethodMeta This is a factory method used by Decorator during instantiation of new State object
 

Uses of Property in net.sf.fikin.pojostate.format
 

Methods in net.sf.fikin.pojostate.format with parameters of type Property
 void XmlStateFormat.printProperty(Property property, org.xml.sax.ContentHandler out)
          TODO
 void PropertiesStateFormat.printProperty(Property property, java.io.PrintWriter out)
          Prints the Property object in properties-like fashion: UI name=UI value #UI description
 

Uses of Property in net.sf.fikin.pojostate.state
 

Classes in net.sf.fikin.pojostate.state that implement Property
 class AbstractDecoratorProperty
          Prototype of Property methods.
 class DynamicState.DynamicProperty
          Implements dynamic read-execute value It expect MethodMeta, the actual POJO is accessed from nestling class.
 class SnapshotState.StaticProperty
          Implements read-once method value, executed upon object construction time created on Mar 1, 2007
 

Methods in net.sf.fikin.pojostate.state that return Property
 Property AbstractState.getProperty(java.lang.String propertyName)
          look for Property object with given UI name
 Property SnapshotState.newProperty(MethodMeta mm)
          instantiate new SnapshotState.StaticProperty object
 Property EmptyState.newProperty(MethodMeta mm)
           
 Property DynamicState.newProperty(MethodMeta mm)
          instantiate new DynamicState.DynamicProperty object
 

Methods in net.sf.fikin.pojostate.state with parameters of type Property
 void AbstractState.add(Property property)
           
 



Copyright © 2005 Nikolay Fiykov. All Rights Reserved.