Tabnine Logo
HasRows.fireEvent
Code IndexAdd Tabnine to your IDE (free)

How to use
fireEvent
method
in
com.google.gwt.view.client.HasRows

Best Java code snippets using com.google.gwt.view.client.HasRows.fireEvent (Showing top 6 results out of 315)

origin: com.google.gwt/gwt-servlet

/**
 * Fires a {@link RowCountChangeEvent} on all registered handlers in the
 * handler manager. If no such handlers exist, this method will do nothing.
 *
 * @param source the source of the handlers
 * @param rowCount the new rowCount
 * @param isExact true if rowCount is an exact count
 */
public static void fire(HasRows source, int rowCount, boolean isExact) {
 if (TYPE != null) {
  RowCountChangeEvent event = new RowCountChangeEvent(rowCount, isExact);
  source.fireEvent(event);
 }
}
origin: com.google.gwt/gwt-servlet

/**
 * Fires a {@link RangeChangeEvent} on all registered handlers in the handler
 * manager. If no such handlers exist, this method will do nothing.
 *
 * @param source the source of the handlers
 * @param range the new range
 */
public static void fire(HasRows source, Range range) {
 if (TYPE != null) {
  RangeChangeEvent event = new RangeChangeEvent(range);
  source.fireEvent(event);
 }
}
origin: com.vaadin.external.gwt/gwt-user

/**
 * Fires a {@link RowCountChangeEvent} on all registered handlers in the
 * handler manager. If no such handlers exist, this method will do nothing.
 *
 * @param source the source of the handlers
 * @param rowCount the new rowCount
 * @param isExact true if rowCount is an exact count
 */
public static void fire(HasRows source, int rowCount, boolean isExact) {
 if (TYPE != null) {
  RowCountChangeEvent event = new RowCountChangeEvent(rowCount, isExact);
  source.fireEvent(event);
 }
}
origin: com.vaadin.external.gwt/gwt-user

/**
 * Fires a {@link RangeChangeEvent} on all registered handlers in the handler
 * manager. If no such handlers exist, this method will do nothing.
 *
 * @param source the source of the handlers
 * @param range the new range
 */
public static void fire(HasRows source, Range range) {
 if (TYPE != null) {
  RangeChangeEvent event = new RangeChangeEvent(range);
  source.fireEvent(event);
 }
}
origin: net.wetheinter/gwt-user

/**
 * Fires a {@link RangeChangeEvent} on all registered handlers in the handler
 * manager. If no such handlers exist, this method will do nothing.
 *
 * @param source the source of the handlers
 * @param range the new range
 */
public static void fire(HasRows source, Range range) {
 if (TYPE != null) {
  RangeChangeEvent event = new RangeChangeEvent(range);
  source.fireEvent(event);
 }
}
origin: net.wetheinter/gwt-user

/**
 * Fires a {@link RowCountChangeEvent} on all registered handlers in the
 * handler manager. If no such handlers exist, this method will do nothing.
 *
 * @param source the source of the handlers
 * @param rowCount the new rowCount
 * @param isExact true if rowCount is an exact count
 */
public static void fire(HasRows source, int rowCount, boolean isExact) {
 if (TYPE != null) {
  RowCountChangeEvent event = new RowCountChangeEvent(rowCount, isExact);
  source.fireEvent(event);
 }
}
com.google.gwt.view.clientHasRowsfireEvent

Popular methods of HasRows

  • getVisibleRange
    Get the range of visible rows.
  • setVisibleRange
    Set the visible range or rows.
  • getRowCount
    Get the total count of all rows.
  • isRowCountExact
    Check if the total row count is exact, or an estimate.
  • setRowCount
    Set the total count of all rows, specifying whether the count is exact or an estimate.
  • addRangeChangeHandler
    Add a RangeChangeEvent.Handler.
  • addRowCountChangeHandler
    Add a RowCountChangeEvent.Handler.

Popular in Java

  • Making http requests using okhttp
  • getContentResolver (Context)
  • findViewById (Activity)
  • getSupportFragmentManager (FragmentActivity)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • String (java.lang)
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • Collectors (java.util.stream)
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now