Java Code Examples for com.google.gwt.event.shared.HasHandlers#fireEvent()

The following examples show how to use com.google.gwt.event.shared.HasHandlers#fireEvent() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: NextCalendarEvent.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source, JsDateRange dateRange) {
    source.fireEvent(new NextCalendarEvent(dateRange));
}
 
Example 2
Source File: CropEvent.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source, String result) {
    source.fireEvent(new CropEvent(result));
}
 
Example 3
Source File: ColorSchemeChangeEvent.java    From gwt-material with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source, ColorScheme colorScheme) {
    source.fireEvent(new ColorSchemeChangeEvent(colorScheme));
}
 
Example 4
Source File: SetPageTitleEvent.java    From gwt-material-demo with Apache License 2.0 4 votes vote down vote up
public static void fire(String title, String description, String link, String specification, HasHandlers source) {
    source.fireEvent(new SetPageTitleEvent(title, description, link, specification));
}
 
Example 5
Source File: InitEvent.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source) {
    source.fireEvent(new InitEvent());
}
 
Example 6
Source File: CompleteEvent.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source, int total) {
    source.fireEvent(new CompleteEvent(total));
}
 
Example 7
Source File: OpeningEvent.java    From gwt-material with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source) {
    source.fireEvent(new OpeningEvent());
}
 
Example 8
Source File: ErrorEvent.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source, String message) {
    source.fireEvent(new ErrorEvent(message));
}
 
Example 9
Source File: DragEndEvent.java    From gwt-material with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source) {
    source.fireEvent(new DragEndEvent());
}
 
Example 10
Source File: InvalidEvent.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source, Object result, String error) {
    source.fireEvent(new InvalidEvent(result, error));
}
 
Example 11
Source File: ChangeAllEvent.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source, String input) {
    source.fireEvent(new ChangeAllEvent(input));
}
 
Example 12
Source File: ObservedEvent.java    From gwt-material with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source, String old, String value) {
    source.fireEvent(new ObservedEvent(old, value));
}
 
Example 13
Source File: LoadedEvent.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source, LoadResult<?> result) {
    source.fireEvent(new LoadedEvent(result));
}
 
Example 14
Source File: SignatureClearEvent.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source) {
    source.fireEvent(new SignatureClearEvent());
}
 
Example 15
Source File: CompleteEvent.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source, Object result) {
    source.fireEvent(new CompleteEvent(result));
}
 
Example 16
Source File: NavBarShrinkEvent.java    From gwt-material with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source) {
    source.fireEvent(new NavBarShrinkEvent());
}
 
Example 17
Source File: DragMoveEvent.java    From gwt-material with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source) {
    source.fireEvent(new DragMoveEvent());
}
 
Example 18
Source File: DropEvent.java    From gwt-material with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source, JQueryElement relatedTarget) {
    source.fireEvent(new DropEvent(relatedTarget));
}
 
Example 19
Source File: KeyPressEvent.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source, String message) {
    source.fireEvent(new KeyPressEvent(message));
}
 
Example 20
Source File: PreviousCalendarEvent.java    From gwt-material-addins with Apache License 2.0 4 votes vote down vote up
public static void fire(HasHandlers source, JsDateRange dateRange) {
    source.fireEvent(new PreviousCalendarEvent(dateRange));
}