List of usage examples for com.google.gwt.i18n.client HasDirection interface-usage
From source file cc.alcina.framework.gwt.client.widget.Para.java
/** * * @author Nick Reddel */ public class Para extends Widget implements HasClickHandlers, HasHorizontalAlignment, HasText, HasWordWrap, HasDirection, HasHTML {
From source file com.extjs.gxt.ui.client.widget.form.TextField.java
/**
* Basic text field. <b>Code snippet</b>:
*
* <pre>
* TextField<String> text = new TextField<String>();
* text.setFieldLabel("Name");
From source file hudson.gwtmarketplace.client.components.LabeledListBox.java
public class LabeledListBox extends LabeledContainer<ListBox> implements HasDirection { public LabeledListBox() { super(null, new ListBox()); }
From source file hudson.gwtmarketplace.client.components.LabeledPasswordTextBox.java
public class LabeledPasswordTextBox extends LabeledContainer<PasswordTextBox> implements HasDirection { public LabeledPasswordTextBox() { super(null, new PasswordTextBox()); }
From source file hudson.gwtmarketplace.client.components.LabeledTextBox.java
public class LabeledTextBox extends LabeledContainer<TextBox> implements HasDirection { public LabeledTextBox() { super(null, new TextBox()); }
From source file org.cruxframework.crux.smartfaces.client.input.NumberBox.java
/** * A numeric box * @author Thiago da Rosa de Bustamante * */ public class NumberBox extends Composite implements HasEnabled, Focusable, HasValue<Number>, HasName,
From source file org.cruxframework.crux.widgets.client.maskedlabel.MaskedLabel.java
/** * @author Thiago da Rosa de Bustamante * */ public class MaskedLabel extends Composite implements HasFormatter, HasAutoHorizontalAlignment, HasWordWrap, HasDirection, HasClickHandlers, HasAllMouseHandlers, HasDoubleClickHandlers {
From source file org.cruxframework.crux.widgets.client.maskedtextbox.MaskedTextBox.java
/** * * @author Thiago da Rosa de Bustamante * */ public class MaskedTextBox extends Composite implements HasFormatter, HasDirection, HasChangeHandlers,
From source file org.jax.gwtutil.client.TextArea.java
/**
* A text box that allows multiple lines of text to be entered.
*
* <p>
* <img class='gallery' src='TextArea.png'/>
* </p>