Example usage for com.jgoodies.validation Validator interface-usage

List of usage examples for com.jgoodies.validation Validator interface-usage

Introduction

In this page you can find the example usage for com.jgoodies.validation Validator interface-usage.

Usage

From source file org.archiviststoolkit.editor.rde.RapidResourceComponentDataEntryValidator.java

public class RapidResourceComponentDataEntryValidator implements Validator {

    private RapidResourceComponentDataEntry dialog;

    public RapidResourceComponentDataEntryValidator(RapidResourceComponentDataEntry dialog) {
        this.dialog = dialog;

From source file org.archiviststoolkit.model.validators.ATValidator.java

public interface ATValidator extends Validator {

    public void setModelToValidate(Object modelToValidate);
}

From source file org.openthinclient.console.nodes.views.DirObjectEditor.java

/**
 * @author Natalie Bohnert
 */
public class DirObjectEditor extends AbstractDetailView implements Validator {
    public static final String KEY_VALIDATOR = "validator"; //$NON-NLS-1$

From source file org.openthinclient.console.util.ChildValidator.java

/**
 * A validator which validates the parent JComponent it is attached to as well
 * as all children.
 */
public class ChildValidator implements Validator {
    private final List<Validator> childValidators = new LinkedList<Validator>();

From source file salomon.util.gui.validation.IValidator.java

/**
 * 
 */
public interface IValidator extends Validator {
    Model getModel();
}