Package org.openquark.cal.valuenode

Examples of org.openquark.cal.valuenode.FileNameValueNode$FileNameValueNodeProvider


    @Override
    protected void commitValue() {
        // If there is a selected file, then update the value, else keep old value.
        File file = fileNameChooser.getSelectedFile();
        if (file != null) {
            ValueNode returnVN = new FileNameValueNode(file.getPath(), getValueNode().getTypeExpr());
            replaceValueNode(returnVN, true);

            notifyValueCommitted();
        }
    }
View Full Code Here

TOP

Related Classes of org.openquark.cal.valuenode.FileNameValueNode$FileNameValueNodeProvider

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.