Package org.gwt.mosaic.ui.client

Examples of org.gwt.mosaic.ui.client.TextLabel


   *
   * @see WidgetFactory
   */
  public final TextLabel addTitle(String textWithMnemonic,
      CellConstraints constraints) {
    TextLabel titleLabel = null;// XXX
    // getComponentFactory().createTitle(textWithMnemonic);
    add(titleLabel, constraints);
    return titleLabel;
  }
View Full Code Here


   * @param textWithMnemonic the label's text - may contain an ampersand (
   *          <tt>&amp;</tt>) to mark a mnemonic
   * @return an label with optional mnemonic
   */
  public TextLabel createLabel(String textWithMnemonic) {
    TextLabel label = new TextLabel(textWithMnemonic);
    // setTextAndMnemonic(label, textWithMnemonic);
    return label;
  }
View Full Code Here

TOP

Related Classes of org.gwt.mosaic.ui.client.TextLabel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.