Source code file content
src / branches / dev-hh-2 / ValidationAPI / src / org / netbeans / validation / api / ui / ValidationListener.java
Size: 5560 bytes, 1 line
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 1997-2009 Sun Microsystems, Inc. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common
* Development and Distribution License("CDDL") (collectively, the
* "License"). You may not use this file except in compliance with the
* License. You can obtain a copy of the License at
* http://www.netbeans.org/cddl-gplv2.html
* or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
* specific language governing permissions and limitations under the
* License. When distributing the software, include this License Header
* Notice in each file and include the License file at
* nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the GPL Version 2 section of the License file that
* accompanied this code. If applicable, add the following below the
* License Header, with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
* Contributor(s):
*
* The Original Software is NetBeans. The Initial Developer of the Original
* Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
* Microsystems, Inc. All Rights Reserved.
*
* If you wish your version of this file to be governed by only the CDDL
* or only the GPL Version 2, indicate your decision by adding
* "[Contributor] elects to include this software in this distribution
* under the [CDDL or GPL Version 2] license." If you do not indicate a
* single choice of license, a recipient has the option to distribute
* your version of this file under either the CDDL, the GPL Version 2 or
* to extend the choice of license to its licensees as provided above.
* However, if you add GPL Version 2 code and therefore, elected the GPL
* Version 2 license, then the option applies only if the new code is
* made subject to such option by the copyright holder.
*/
package org.netbeans.validation.api.ui;
import org.netbeans.validation.api.Problem;
import org.netbeans.validation.api.Problems;
/**
* Abstract base class for UI component listeners that can trigger validation when an interesting
* event occurs, and when requested perform validation of the UI component using a {@link org.netbeans.validation.api.Validator}.
* <p>
* Implement whatever UI component listener interface
* is necessary, add it as a listener to the UI component(s) it should listen to, and
* then pass the listener to {@code ValidationGroup.add()}.
* <p>
* When an event that should
* trigger validation occurs, let the listener (the subclass of {@code ValidationListener}) call the
* super.{@link #triggerValidation()} method to notfify the simplevalidation infrastructure
* what's going on. The infrastrure will then usually call the {@link #performValidation()}
* method, in which the the listener (the subclass of {@code ValidationItem})
* should validate the UI-component using a suitable {@link org.netbeans.validation.api.Validator}.
* <p>
* Note that one validation listener may not belong to more than one ValidationGroup.
* <p>
*
* @author Tim Boudreau
* @author Hugo Heden
*/
public abstract class ValidationListener extends ValidationItem implements java.util.EventListener {
protected ValidationListener(ValidationUI ui){
super(ui);
}
/**
* Called by subclasses to indicate to the simple-validation infrastructure
* that user has interacted with the UI-component in a way that makes revalidation
* needed.
*
* This will initiate the validation logic (unless the validation is suspended, see
* {@link ValidationItem#runWithValidationSuspended(java.lang.Runnable)}:
* A call to {@link ValidationListener#performValidation(org.netbeans.validation.api.Problems)}
* will occur.
*
* If this results in a {@link Problem}, the {@link ValidationUI}
* managed by this {@code ValidationListener} (such as an error icon
* decorating the UI-component) will be activated, indicating the {@code Problem}
* to the user.
*
* If this ValidationListener is added to a {@link ValidationGroup},
* the latter will update its {@code ValidationUI}:s as well (unless there happens
* to be a more severe {@code Problem} somewhere else within that {@code ValidationGroup})
*/
protected final void triggerValidation() { // Intended to be called by subclasses
super.performValidation();
}
@Override
final void subtreeRevalidation(){ // Intended to be called by parent ValidationGroup
if (isSuspended()) {
return;
}
Problems ps = new Problems();
this.performValidation(ps);
Problem lead = ps.getLeadProblem();
super.setCurrentLeadProblem(lead);
}
/**
* Called by the simplevalidation infrastructure when it is time to
* perform the validation. The instance of the class subclassing ValidationListener
* should have access to the UI-component to validate, and to a validator, and simply call
* the validator's validate() method with the appropriate arguments.
*
* If the component to be validated is disabled (it is greyed out and can't
* be interacted with) it is usually considered to have no problems.
*/
protected abstract void performValidation(Problems problems);
}





