de.swm.commons.mobile.client.validation.IHasValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swm-mobile Show documentation
Show all versions of swm-mobile Show documentation
GWT Bibliothek fuer Mobile Plattformen der SWM
package de.swm.commons.mobile.client.validation;
/**
* Interface for widgets that contain validators.
*
* @author kutschke.christian
* copyright (C) 2012, SWM Services GmbH
*/
public interface IHasValidator {
/**
* Validates the current content of the widget with the underlying validators.
*
* @return true if valid, false otherwise
*/
boolean validate();
/**
* Clears the component of all validation results.
*/
void clearValidation();
}