All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.talk2object.plum.interaction.rich.field.AbstractComponentBridge Maven / Gradle / Ivy

package com.talk2object.plum.interaction.rich.field;

import com.talk2object.plum.view._abstract.window.UIComponent;

public abstract class AbstractComponentBridge implements ComponentBridge {
	private UIComponent component;

	public AbstractComponentBridge(UIComponent component) {
		this.component = component;
	}

	/**
	 * get value from component to Input.
	 */
	public abstract Object getValue();

	/**
	 * set value to component from Input.
	 * 
	 * @param value
	 */
	public abstract void setValue(Object value);

	public UIComponent getComponent() {
		return component;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy