Examples of TextAreaInput


Examples of de.willuhn.jameica.gui.input.TextAreaInput

   */
  public Input getKommentar() throws RemoteException
  {
    if (this.kommentar != null)
      return this.kommentar;
    this.kommentar = new TextAreaInput(getKonto().getKommentar());
    return this.kommentar;
  }
View Full Code Here

Examples of de.willuhn.jameica.gui.input.TextAreaInput

   */
  public Input getKommentar() throws RemoteException
  {
    if (this.kommentar != null)
      return this.kommentar;
    this.kommentar = new TextAreaInput(this.getUmsatz().getKommentar());
    this.kommentar.setEnabled((getUmsatz().getFlags() & Umsatz.FLAG_NOTBOOKED) == 0);
    return this.kommentar;
  }
View Full Code Here

Examples of de.willuhn.jameica.gui.input.TextAreaInput

   */
  public Input getZweck() throws RemoteException
  {
    if (this.zweck == null)
    {
      this.zweck = new TextAreaInput(VerwendungszweckUtil.toString(getUmsatz(),"\n"));
      this.zweck.setEnabled(false);
    }
    return this.zweck;
  }
View Full Code Here

Examples of de.willuhn.jameica.gui.input.TextAreaInput

    sb.append(i18n.tr("JDBC-Username: {0}\n",driver.getJdbcUsername()));
    sb.append(i18n.tr("JDBC-Passwort: {0}\n",driver.getJdbcPassword()));
   
    Container container = new SimpleContainer(parent);
    container.addHeadline(i18n.tr("Datenbank-Einstellungen"));
    TextAreaInput text = new TextAreaInput(sb.toString());
    container.addPart(text);

    ButtonArea buttons = new ButtonArea();
    buttons.addButton(i18n.tr("Schlie�en"),new Action() {
      public void handleAction(Object context) throws ApplicationException
View Full Code Here

Examples of de.willuhn.jameica.gui.input.TextAreaInput

   */
  public Input getKommentar() throws RemoteException
  {
    if (this.kommentar != null)
      return this.kommentar;
    this.kommentar = new TextAreaInput(getAddress().getKommentar());
    this.kommentar.setEnabled(isHibiscusAdresse());
    return this.kommentar;
  }
View Full Code Here

Examples of org.jitterbit.application.ui.widget.TextAreaInput

        }

        @Override
        public void actionPerformed(ActionEvent e) {
            closeEditor();
            editor = new TextAreaInput("Description for " + group.getName(), new Receiver<String>() {

                @Override
                public void handle(String desc) {
                    if (desc != null) {
                        group.setDescription(desc);
View Full Code Here

Examples of org.jitterbit.application.ui.widget.TextAreaInput

    public void save() {
        page.getObject().setDescription(description);
    }

    private TextAreaInput createInputWidget() {
        TextAreaInput widget = new TextAreaInput("Description", new Receiver<String>() {

            @Override
            public void handle(String s) {
                if (s != null) {
                    handleNewDescription(description, s);
                }
                page.restoreFocus(50);
            }
        });
        widget.setCaption(createCaption());
        widget.setOverlayContainer(page.getOverlayContainer());
        widget.setSize(8, 50);
        return widget;
    }
View Full Code Here

Examples of org.jitterbit.application.ui.widget.TextAreaInput

            setEnabled(false);
        }

        @Override
        public void actionPerformed(ActionEvent e) {
            TextAreaInput input = new TextAreaInput(Strings.get("Deploy.Page.Tag.Title"), new Receiver<String>() {

                @Override
                public void handle(String tag) {
                    if (tag != null) {
                        DeployPage.this.tag = tag.trim();
                    }
                }
            });
            input.setCaption(Strings.get("Deploy.Page.Tag.Caption"));
            input.setOverlayContainer(getOverlayContainer());
            input.show(DeployPage.this.tag);
        }
View Full Code Here

Examples of org.metaworks.inputter.TextAreaInput

 
  public void initialize(final ProcessDesigner pd, Activity activity){
    super.initialize(pd, activity);
     
    FieldDescriptor fd = getFieldDescriptor("Content");
    fd.setInputter(new TextAreaInput());   

    setFieldDisplayNames(FileGenerateActivity.class);
  }
View Full Code Here

Examples of org.metaworks.inputter.TextAreaInput

  public void initialize(final ProcessDesigner pd, Activity activity){
    super.initialize(pd, activity);
     
    FieldDescriptor fd = getFieldDescriptor("SqlStmt");
   
    TextAreaInput textAreaInput = new TextAreaInput();
    textAreaInput.setCols(45);
    textAreaInput.setRows(15);   
    fd.setInputter(textAreaInput);
    setFieldDisplayNames(SQLActivity.class);
   
    ((MultipleInput) getFieldDescriptor("Parameters").getInputter()).getTable().removeFieldDescriptor("Type");
    ((MultipleInput) getFieldDescriptor("SelectMappings").getInputter()).getTable().removeFieldDescriptor("Type");
View Full Code Here
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.