Package org.openquark.gems.client.valueentry

Examples of org.openquark.gems.client.valueentry.ValueEditorListener


                        }
                    };
        valueGem.addValueChangeListener(editorValueGemListener);

        // Create a listener so that we can do some extra work when committing the value
        ValueEditorListener vel = new ValueEditorListener() {
                public void valueChanged(ValueEditorEvent evt) {
                }
               
                public void valueCommitted(ValueEditorEvent evt) {
                    // HACK: We have to remove the listener so that it doesn't cancel editing
View Full Code Here


        // Get a value node for the input and set it into the value editor as an initial value
        valueEditor.setOwnerValueNode(explorerOwner.getValueNode(input));

        // Register a listener so that we can do some extra work when committing the value
        valueEditor.addValueEditorListener(new ValueEditorListener() {
                public void valueChanged(ValueEditorEvent evt) {
                }
               
                public void valueCommitted(ValueEditorEvent evt) {
                    explorerOwner.changeValueNode(input, ((ValueEditor)editorComponent).getValueNode());
View Full Code Here

                MirrorValueEntryPanel mirroredEntryPanel =
                        new ValueEntryPanel.MirrorValueEntryPanel(getValueEditorHierarchyManager(), getArgumentPanel(inputPart));

                // Add a listener to update the node when the value changes..
                mirroredEntryPanel.addValueEditorListener(new ValueEditorListener() {

                    public void valueChanged(ValueEditorEvent evt) {
                    }

                    public void valueCommitted(ValueEditorEvent evt) {
View Full Code Here

TOP

Related Classes of org.openquark.gems.client.valueentry.ValueEditorListener

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.