| Home >> All >> org >> scopemvc >> model >> [ basic Javadoc ] |
org.scopemvc.model.basic: Javadoc index of package org.scopemvc.model.basic.
Package Samples:
org.scopemvc.model.basic
Classes:
BasicModel: A simple implementation of ModelChangeEventSource for use as a base class. An alternative (JavaBeans style) is to use ModelChangeEventSupport as a delegate in all models. To implement a BasicModel: extend BasicModel , Notify interested listeners of changes in Model state at the end of set methods by: fireModelChange(...) Register as a ModelChangeListener with submodels in the appropriate set methods to ensure event propogation up the tree of models. For example: public final static Selector NAME = Selector.fromString("name"); public final static Selector ADDRESS = Selector.fromString("address"); ...
ModelChangeEventSupport: Delegate to help ModelChangeEvent listener registration and firing. Used by BasicModel . Events are fired synchronously in this implementation.
BasicModelChangeEvent: Concrete implementation of ModelChangeEvent .
| Home | Contact Us | Privacy Policy | Terms of Service |