Package jsynoptic.plugins.java3d

Examples of jsynoptic.plugins.java3d.Values


    public Tuple3fDataEdit(Tuple3fAnimator object) {
        super(object, Tuple); // TODO tuple kind
    }

    public Values getOldValues() {
        return new Values(_oldValue);
    }
View Full Code Here


        }
        _editor = (Tuple3fDataEdit) editor;
        if (_editor != null) {
            _editor.addListener(this);

            Values v = _editor.getOldValues();
            _table.setModel(new Model(v));
            _newValue = false;
        }
    }
View Full Code Here

        }
    }

    @Override
    public void undoRedoPerfomed(boolean isUndo) {
        Values v = _editor.getPropertyValue();
        _newValue = false;
        _table.setModel(new Model(v));
    }
View Full Code Here

    public DataEdit(DataAnimator object) {
        super(object, Default);
    }

    public Values getOldValues() {
        return new Values(_oldValue);
    }
View Full Code Here

TOP

Related Classes of jsynoptic.plugins.java3d.Values

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.