Package org.springframework.ide.eclipse.config.ui.widgets

Examples of org.springframework.ide.eclipse.config.ui.widgets.TextAreaAttribute


   * @param client the parent composite
   * @param elem the element name
   * @return {@link TextAreaAttribute} widget set
   */
  protected TextAreaAttribute createTextArea(Composite client, String elem) {
    TextAreaAttribute textElem = new TextAreaAttribute(client, toolkit, elem) {
      @Override
      public void modifyAttribute() {
        editElement(text.getText());
      }

      @Override
      public void update() {
        setTextValue(text, getElementValue());
      }
    };
    textElem.createAttribute(2);
    return textElem;
  }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.config.ui.widgets.TextAreaAttribute

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.