| java.lang.Object com.jgoodies.binding.beans.Model com.jgoodies.binding.tests.beans.CustomBean
CustomBean | final public class CustomBean extends Model (Code) | | A Java Bean that provides a bunch of properties.
The property types are: Object, boolean and int;
the access types are: read-write, read-only and write-only.
In addition, there's a property that doesn't check for changes
- and may cause problems with event notification cycles.
This class is intended to be used by the Binding unit test suite.
author: Karsten Lentzsch version: $Revision: 1.9 $ |
readOnlyBooleanProperty | public boolean readOnlyBooleanProperty(Code) | | |
readOnlyIntProperty | public int readOnlyIntProperty(Code) | | |
readOnlyObjectProperty | public Object readOnlyObjectProperty(Code) | | |
readWriteBooleanProperty | public boolean readWriteBooleanProperty(Code) | | |
readWriteIntProperty | public int readWriteIntProperty(Code) | | |
readWriteIntegerProperty | public Integer readWriteIntegerProperty(Code) | | |
readWriteObjectProperty | public Object readWriteObjectProperty(Code) | | |
writeOnlyBooleanProperty | public boolean writeOnlyBooleanProperty(Code) | | |
writeOnlyIntProperty | public int writeOnlyIntProperty(Code) | | |
writeOnlyObjectProperty | public Object writeOnlyObjectProperty(Code) | | |
getNoAccess | public Object getNoAccess()(Code) | | Throws a runtime exception.
nothing - won't return |
getReadOnlyIntProperty | public int getReadOnlyIntProperty()(Code) | | |
getReadOnlyObjectProperty | public Object getReadOnlyObjectProperty()(Code) | | |
getReadWriteIntProperty | public int getReadWriteIntProperty()(Code) | | |
getReadWriteIntegerProperty | public Integer getReadWriteIntegerProperty()(Code) | | |
getReadWriteObjectProperty | public Object getReadWriteObjectProperty()(Code) | | |
isReadOnlyBooleanProperty | public boolean isReadOnlyBooleanProperty()(Code) | | |
isReadWriteBooleanProperty | public boolean isReadWriteBooleanProperty()(Code) | | |
setNoAccess | public void setNoAccess(Object object)(Code) | | Throws a runtime exception.
Parameters: object - an arbitrary object |
setReadWriteBooleanProperty | public void setReadWriteBooleanProperty(boolean newValue)(Code) | | |
setReadWriteIntProperty | public void setReadWriteIntProperty(int newValue)(Code) | | |
setReadWriteIntegerProperty | public void setReadWriteIntegerProperty(Integer newValue)(Code) | | |
setReadWriteObjectProperties | public void setReadWriteObjectProperties(Object object, boolean b, int i)(Code) | | |
setReadWriteObjectProperty | public void setReadWriteObjectProperty(Object newValue)(Code) | | |
setWriteOnlyBooleanProperty | public void setWriteOnlyBooleanProperty(boolean newValue)(Code) | | |
setWriteOnlyIntProperty | public void setWriteOnlyIntProperty(int newValue)(Code) | | |
setWriteOnlyObjectProperty | public void setWriteOnlyObjectProperty(Object newValue)(Code) | | |
Methods inherited from com.jgoodies.binding.beans.Model | final public synchronized void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) final public synchronized void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) final public synchronized void addVetoableChangeListener(VetoableChangeListener listener)(Code)(Java Doc) final public synchronized void addVetoableChangeListener(String propertyName, VetoableChangeListener listener)(Code)(Java Doc) final protected boolean equals(Object o1, Object o2)(Code)(Java Doc) final protected void fireIndexedPropertyChange(String propertyName, int index, Object oldValue, Object newValue)(Code)(Java Doc) final protected void fireIndexedPropertyChange(String propertyName, int index, int oldValue, int newValue)(Code)(Java Doc) final protected void fireIndexedPropertyChange(String propertyName, int index, boolean oldValue, boolean newValue)(Code)(Java Doc) final protected void fireMultiplePropertiesChanged()(Code)(Java Doc) final protected void firePropertyChange(PropertyChangeEvent event)(Code)(Java Doc) final protected void firePropertyChange(String propertyName, Object oldValue, Object newValue)(Code)(Java Doc) final protected void firePropertyChange(String propertyName, Object oldValue, Object newValue, boolean checkIdentity)(Code)(Java Doc) final protected void firePropertyChange(String propertyName, boolean oldValue, boolean newValue)(Code)(Java Doc) final protected void firePropertyChange(String propertyName, double oldValue, double newValue)(Code)(Java Doc) final protected void firePropertyChange(String propertyName, float oldValue, float newValue)(Code)(Java Doc) final protected void firePropertyChange(String propertyName, int oldValue, int newValue)(Code)(Java Doc) final protected void firePropertyChange(String propertyName, long oldValue, long newValue)(Code)(Java Doc) final protected void fireVetoableChange(PropertyChangeEvent event) throws PropertyVetoException(Code)(Java Doc) final protected void fireVetoableChange(String propertyName, Object oldValue, Object newValue) throws PropertyVetoException(Code)(Java Doc) final protected void fireVetoableChange(String propertyName, boolean oldValue, boolean newValue) throws PropertyVetoException(Code)(Java Doc) final protected void fireVetoableChange(String propertyName, double oldValue, double newValue) throws PropertyVetoException(Code)(Java Doc) final protected void fireVetoableChange(String propertyName, int oldValue, int newValue) throws PropertyVetoException(Code)(Java Doc) final protected void fireVetoableChange(String propertyName, float oldValue, float newValue) throws PropertyVetoException(Code)(Java Doc) final protected void fireVetoableChange(String propertyName, long oldValue, long newValue) throws PropertyVetoException(Code)(Java Doc) final public synchronized PropertyChangeListener[] getPropertyChangeListeners()(Code)(Java Doc) final public synchronized PropertyChangeListener[] getPropertyChangeListeners(String propertyName)(Code)(Java Doc) final public synchronized VetoableChangeListener[] getVetoableChangeListeners()(Code)(Java Doc) final public synchronized VetoableChangeListener[] getVetoableChangeListeners(String propertyName)(Code)(Java Doc) final public synchronized void removePropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) final public synchronized void removePropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) final public synchronized void removeVetoableChangeListener(VetoableChangeListener listener)(Code)(Java Doc) final public synchronized void removeVetoableChangeListener(String propertyName, VetoableChangeListener listener)(Code)(Java Doc)
|
|
|