All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.swm.commons.mobile.client.validation.IHasValidator Maven / Gradle / Ivy

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(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy