Example usage for com.google.gwt.user.client.ui LongBox LongBox

List of usage examples for com.google.gwt.user.client.ui LongBox LongBox

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui LongBox LongBox.

Prototype

public LongBox() 

Source Link

Usage

From source file:com.dawg6.web.dhcalc.client.LongSpinner.java

License:Open Source License

public LongSpinner(String text) {
    super(new LongBox(), text, 0L, Long.MAX_VALUE, 1L);
}

From source file:com.googlecode.mgwt.ui.client.widget.MLongBox.java

License:Apache License

/**
 * Construct a long box with a given css
 *
 * @param css the css to use/*  w ww  .j  a va  2s.co m*/
 */
public MLongBox(InputCss css) {
    super(css, new LongBox());
    impl.setType(box.getElement(), "number");
    addStyleName(css.textBox());
}

From source file:gwt.material.design.client.ui.MaterialLongBox.java

License:Apache License

public MaterialLongBox() {
    super(new LongBox());
}