Package honeycrm.client.field

Source Code of honeycrm.client.field.FieldText

package honeycrm.client.field;

import java.io.Serializable;

import com.google.gwt.user.client.ui.TextArea;
import com.google.gwt.user.client.ui.Widget;

public class FieldText extends FieldString {
  private static final long serialVersionUID = 5081155630980085278L;

  public FieldText() {
  }

  public FieldText(final String index, final String label, final int width) {
    super(index, label);
    this.width = width;
  }

  @Override
  protected Serializable internalGetData(Widget w) {
    return ((TextArea) w).getText();
  }

  @Override
  protected Widget editField() {
    return new TextArea();
  }
}
TOP

Related Classes of honeycrm.client.field.FieldText

TOP
Copyright © 2018 www.massapi.com. 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.