Example usage for org.eclipse.jface.viewers ICellEditorValidator interface-usage

List of usage examples for org.eclipse.jface.viewers ICellEditorValidator interface-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.viewers ICellEditorValidator interface-usage.

Usage

From source file com.aptana.ide.editors.views.outline.propertyManager.SerializableValidator.java

/**
 * SerializableValidator
 * @author Ingo Muschenetz
 *
 */
public abstract class SerializableValidator implements ICellEditorValidator, Serializable {

From source file com.jaspersoft.studio.property.descriptor.classname.NClassTypeCellEditorValidator.java

public class NClassTypeCellEditorValidator implements ICellEditorValidator {
    /** The instance. */
    private static NClassTypeCellEditorValidator instance;

    /**
     * Instance.

From source file com.mentor.nucleus.bp.core.ui.DefaultValueInputValidator.java

public class DefaultValueInputValidator implements ICellEditorValidator, IInputValidator {

    /*
     * (non-Javadoc)
     * 
     * @see org.eclipse.jface.dialogs.IInputValidator#isValid(java.lang.String)

From source file com.nextep.designer.sqlclient.ui.jface.DateCellValidator.java

/**
 * This validator validates that a date text entered by a user is parseable according to the date
 * format set in properties. If not, the parse error will be returned.
 * 
 * @author Christophe Fondacci
 */

From source file com.nokia.sdt.component.symbian.properties.ComposedCellEditorValidator.java

/**
* This class provides a ICellEditorValidator that composes
* the behavior of an existing ICellEditorValidator with
* a component's IComponentValidator (if present).
* <p>
* This class also provides a method of working around a

From source file com.nokia.sdt.symbian.ui.editors.ImageCellEditorValidator.java

public class ImageCellEditorValidator implements ICellEditorValidator {

    public ImageCellEditorValidator(EObject object, String propertyId) {
    }

    /* (non-Javadoc)

From source file com.twinsoft.convertigo.eclipse.property_editors.validators.CompilableValueValidator.java

public class CompilableValueValidator implements ICellEditorValidator {

    private ICellEditorValidator cev = null;

    public CompilableValueValidator(ICellEditorValidator cev) {
        this.cev = cev;

From source file com.twinsoft.convertigo.eclipse.property_editors.validators.NumberValidator.java

public class NumberValidator implements ICellEditorValidator {

    private Class<?> c;

    public NumberValidator(Class<?> c) {
        this.c = c;

From source file com.twinsoft.convertigo.eclipse.property_editors.validators.UrlValidator.java

public class UrlValidator implements ICellEditorValidator {

    public String isValid(Object value) {
        try {
            new URL(String.valueOf(value));
        } catch (Exception e) {

From source file de.clausthal.tu.ielf.resusdesigner.model.LogicNumberCellEditorValidator.java

public class LogicNumberCellEditorValidator implements ICellEditorValidator {

    private static LogicNumberCellEditorValidator instance;

    public static LogicNumberCellEditorValidator instance() {
        if (instance == null)