T - the type being openedpublic class OpenEvent<T> extends GwtEvent<OpenHandler<T>>
GwtEvent.Type<H>| Modifier | Constructor and Description | 
|---|---|
| protected  | OpenEvent(T target)Creates a new open event. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected void | dispatch(OpenHandler<T> handler)Should only be called by  HandlerManager. | 
| static <T> void | fire(HasOpenHandlers<T> source,
    T target)Fires a open event on all registered handlers in the handler manager.If no
 such handlers exist, this method will do nothing. | 
| GwtEvent.Type<OpenHandler<T>> | getAssociatedType()Returns the  Event.Typeused to register this event, allowing anEventBusto find handlers of the appropriate class. | 
| T | getTarget()Gets the target. | 
| static GwtEvent.Type<OpenHandler<?>> | getType()Gets the type associated with this event. | 
assertLive, getSource, isLive, kill, revivesetSource, toDebugString, toStringprotected OpenEvent(T target)
target - the ui object being openedpublic static <T> void fire(HasOpenHandlers<T> source, T target)
T - the target typesource - the source of the handlerstarget - the targetpublic static GwtEvent.Type<OpenHandler<?>> getType()
public final GwtEvent.Type<OpenHandler<T>> getAssociatedType()
EventEvent.Type used to register this event, allowing an
 EventBus to find handlers of the appropriate class.getAssociatedType in class GwtEvent<OpenHandler<T>>public T getTarget()
protected void dispatch(OpenHandler<T> handler)
GwtEventHandlerManager. In other words, do not use
 or call.dispatch in class GwtEvent<OpenHandler<T>>handler - handlerEventBus.dispatchEvent(Event, Object)