Package org.jitterbit.application.ui.widget

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


        }

        @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


    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

            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

TOP

Related Classes of org.jitterbit.application.ui.widget.TextAreaInput$OverlayEditor

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.