Codota Logo
HasRows.fireEvent
Code IndexAdd Codota 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)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
BufferedReader b =
  • Codota IconInputStream in;new BufferedReader(new InputStreamReader(in))
  • Codota IconReader in;new BufferedReader(in)
  • Codota IconFile file;new BufferedReader(new FileReader(file))
  • Smart code suggestions by Codota
}
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

  • Reading from database using SQL prepared statement
  • startActivity (Activity)
  • setContentView (Activity)
  • getSystemService (Context)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • BitSet (java.util)
    This class implements a vector of bits that grows as needed. Each component of the bit set has a boo
  • ResourceBundle (java.util)
    Resource bundles contain locale-specific objects. When your program needs a locale-specific resource
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • JCheckBox (javax.swing)
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now