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

org.dashbuilder.common.client.editor.HasRestrictedValue Maven / Gradle / Ivy

The newest version!
package org.dashbuilder.common.client.editor;

import com.google.gwt.editor.client.Editor;

/**
 * 

Editor that restrict a set of predefined values to use.

* * @since 0.4.0 */ public interface HasRestrictedValue { /** * Specify the value that is restricted to use. * @param value */ @Editor.Ignore void onValueRestricted(T value); /** * Specify the value that was restricted for using but it can be used again. * @param value */ @Editor.Ignore void onValueUnRestricted(T value); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy