info.joseluismartin.gui.bind.AbstractControlAccessor Maven / Gradle / Ivy
/*
* Copyright 2009-2011 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package info.joseluismartin.gui.bind;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.SimpleTypeConverter;
import org.springframework.beans.TypeConverter;
import org.springframework.beans.TypeMismatchException;
/**
* Base class for ControlAccessors
*
* @author Jose Luis Martin - ([email protected])
*/
public abstract class AbstractControlAccessor implements ControlAccessor {
/** control object */
private Object control;
/** control change listener list */
private List listeners = new ArrayList();
/** type converter */
private TypeConverter converter = new SimpleTypeConverter();
/**
* Default ctor.
*/
public AbstractControlAccessor() {
}
/**
* Create a ContolAccesor and set the control
* @param control the control to set
*/
public AbstractControlAccessor(Object control) {
setControl(control);
}
/**
* {@inheritDoc}
*/
public void addControlChangeListener(ControlChangeListener l) {
if (!listeners.contains(l))
listeners.add(l);
}
/**
* {@inheritDoc}
*/
public void removeControlChangeListener(ControlChangeListener l) {
if (!listeners.contains(l))
listeners.remove(l);
}
/**
* Convert Object to required type using SimpleTypeConverter
* @param
* @param value
* @param requiredType
* @return
* @throws TypeMismatchException
* @see org.springframework.beans.TypeConverter#convertIfNecessary(java.lang.Object, java.lang.Class)
*/
protected T convertIfNecessary(Object value, Class requiredType) throws TypeMismatchException {
return converter.convertIfNecessary(value, requiredType);
}
/**
* Notifiy Listeners that control value has changed
*/
protected void fireControlChange() {
for (ControlChangeListener l : listeners)
l.controlChange(new ControlEvent(this));
}
/**
* @return the control
*/
public Object getControl() {
return control;
}
/**
* @param control the control to set
*/
public void setControl(Object control) {
this.control = control;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy