List of usage examples for com.google.gwt.event.shared HasHandlers interface-usage
From source file at.ait.dme.yuma.client.image.annotation.handler.selection.HasImageAnnotationSelectionHandlers.java
/**
* A widget that implements this interface provides registration for
* {@link ImageAnnotationSelectionHandler} instances.
*
* @author Christian Sadilek
*/
From source file at.ait.dme.yuma.suite.apps.core.client.events.selection.HasAnnotationSelectionHandlers.java
/**
* A widget that implements this interface provides registration for
* {@link AnnotationSelectionHandler} instances.
*
* @author Christian Sadilek
*/
From source file com.ait.toolkit.editors.ckeditor.client.event.HasInstanceReadyHandlers.java
public interface HasInstanceReadyHandlers extends HasHandlers {
HandlerRegistration addInstanceReadyHandler(InstanceReadyHandler handler);
}
From source file com.ait.toolkit.editors.ckeditor.client.event.HasSaveHandlers.java
public interface HasSaveHandlers<T> extends HasHandlers {
HandlerRegistration addSaveHandler(SaveHandler<T> handler);
}
From source file com.alkacon.geranium.client.ui.I_HasToggleHandlers.java
/** * Interface to indicate that the implementing widget may have toggle event handlers.<p> */ public interface I_HasToggleHandlers extends HasHandlers { /**
From source file com.appkit.ui.client.events.touch.HasTouchHandlers.java
/** * This is a convenience interface that includes all touch handlers defined by * appkit. */ public interface HasTouchHandlers extends HasHandlers {
From source file com.arcbees.beestore.client.application.CurrentBrandImpl.java
public class CurrentBrandImpl implements CurrentBrand, HasHandlers { private final EventBus eventBus; private Brand brand; @Inject
From source file com.arcbees.beestore.client.application.CurrentOrderImpl.java
public class CurrentOrderImpl implements CurrentOrder, HasHandlers { private static final float TPS = 0.09975f; private static final float TVQ = 0.05f; private final EventBus eventBus; private final ShoppingCartLocalStorage shoppingCartLocalStorage;
From source file com.arcbees.chosen.client.event.HasChosenChangeHandlers.java
public interface HasChosenChangeHandlers extends HasHandlers {
HandlerRegistration addChosenChangeHandler(ChosenChangeHandler handler);
}
From source file com.arcbees.chosen.client.event.HasHidingDropDownHandlers.java
public interface HasHidingDropDownHandlers extends HasHandlers {
HandlerRegistration addHidingDropDownHandler(HidingDropDownHandler handler);
}