Example usage for com.jgoodies.binding.value AbstractValueModel subclass-usage

List of usage examples for com.jgoodies.binding.value AbstractValueModel subclass-usage

Introduction

In this page you can find the example usage for com.jgoodies.binding.value AbstractValueModel subclass-usage.

Usage

From source file net.diogobohm.timed.api.ui.mvc.model.NewTypedValueModel.java

/**
 *
 * @author diogo.bohm
 */
public class NewTypedValueModel<T> extends AbstractValueModel {

From source file org.drugis.addis.gui.components.NotEmptyValidator.java

@SuppressWarnings("serial")
public class NotEmptyValidator extends AbstractValueModel {

    private List<JComponent> d_fields = new ArrayList<JComponent>();
    private DocumentListener d_myTextListener = new MyTextListener();
    private ComboBoxListener d_myActionListener = new ComboBoxListener();

From source file org.drugis.addis.gui.HTMLWrappingModel.java

@SuppressWarnings("serial")
public class HTMLWrappingModel extends AbstractValueModel {
    private final ValueModel d_nested;

    public HTMLWrappingModel(ValueModel nested) {
        d_nested = nested;

From source file org.drugis.addis.gui.util.ComboBoxSelectionModel.java

public class ComboBoxSelectionModel extends AbstractValueModel {
    private static final long serialVersionUID = -6232164102805810781L;

    private JComboBox d_comboBox;

    public ComboBoxSelectionModel(JComboBox comboBox) {

From source file org.drugis.addis.gui.util.NonEmptyValueModel.java

public class NonEmptyValueModel extends AbstractValueModel {
    private static final long serialVersionUID = 3077403842880451360L;
    private ValueModel d_wrapped;

    public NonEmptyValueModel(ValueModel wrapped) {
        d_wrapped = wrapped;

From source file org.drugis.addis.presentation.AbstractListValidator.java

public abstract class AbstractListValidator<E> extends AbstractValueModel implements ValueHolder<Boolean> {
    private static final long serialVersionUID = 391045513777444696L;
    protected final ObservableList<E> d_list;
    private boolean d_value;

    public AbstractListValidator(ObservableList<E> list) {

From source file org.drugis.addis.presentation.DecisionTreeChildModel.java

/**
 * ValueModel to set and monitor the target of a DecisionTreeEdge.
 */
public class DecisionTreeChildModel extends AbstractValueModel {
    private static final long serialVersionUID = -1412185396526083292L;
    private final DecisionTree d_tree;

From source file org.drugis.addis.presentation.DefaultLabelModel.java

@SuppressWarnings("serial")
public class DefaultLabelModel extends AbstractValueModel implements PropertyChangeListener {

    private final Observable d_bean;

    public DefaultLabelModel(Observable bean) {

From source file org.drugis.addis.presentation.DomainChangedModel.java

@SuppressWarnings("serial")
public class DomainChangedModel extends AbstractValueModel implements ValueHolder<Boolean> {
    private boolean d_changed;

    public DomainChangedModel(Domain domain, boolean changed) {
        d_changed = changed;

From source file org.drugis.addis.presentation.ListOfNamedValidator.java

/**
 * Validates an ObservableList of TypeWithName. The names should be unique and non-empty. It should contain at least minElms elements.
 */
@SuppressWarnings("serial")
public class ListOfNamedValidator<T extends TypeWithName> extends AbstractValueModel
        implements ValueHolder<Boolean> {