com.google.gwt.event.logical.shared
Class HighlightEvent<V>

java.lang.Object
  extended by com.google.gwt.event.shared.GwtEvent<HighlightHandler<V>>
      extended by com.google.gwt.event.logical.shared.HighlightEvent<V>
Type Parameters:
V - the highlighted value type

public class HighlightEvent<V>
extends GwtEvent<HighlightHandler<V>>

Represents a highlight event.


Nested Class Summary
 
Nested classes/interfaces inherited from class com.google.gwt.event.shared.GwtEvent
GwtEvent.Type<H>
 
Method Summary
static
<V,S extends HasHighlightHandlers<V> & HasHandlers>
void
fire(S source, V highlighted)
          Fires a highlight event on all registered handlers in the handler manager.
 GwtEvent.Type<HighlightHandler<V>> getAssociatedType()
          Returns the type used to register this event.
 V getHighlighted()
          Gets the value highlighted.
static GwtEvent.Type<HighlightHandler<?>> getType()
          Gets the type associated with this event.
 
Methods inherited from class com.google.gwt.event.shared.GwtEvent
getSource, toDebugString, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Method Detail

fire

public static <V,S extends HasHighlightHandlers<V> & HasHandlers> void fire(S source,
                                                                           V highlighted)
Fires a highlight event on all registered handlers in the handler manager.

Type Parameters:
V - the highlighted value type
S - The event source
Parameters:
source - the source of the handlers
highlighted - the value highlighted

getType

public static GwtEvent.Type<HighlightHandler<?>> getType()
Gets the type associated with this event.

Returns:
returns the handler type

getAssociatedType

public final GwtEvent.Type<HighlightHandler<V>> getAssociatedType()
Description copied from class: GwtEvent
Returns the type used to register this event. Used by handler manager to dispatch events to the correct handlers.

Specified by:
getAssociatedType in class GwtEvent<HighlightHandler<V>>
Returns:
the type

getHighlighted

public V getHighlighted()
Gets the value highlighted.

Returns:
value highlighted