01: /*
02: * $Header: /cvs/j3dfly/J3dEditor/src/org/jdesktop/j3dedit/scenegrapheditor/nodeeditors/NodeEditorPanelTemplate.java,v 1.1 2005/04/20 22:21:01 paulby Exp $
03: *
04: * Sun Public License Notice
05: *
06: * The contents of this file are subject to the Sun Public License Version
07: * 1.0 (the "License"). You may not use this file except in compliance with
08: * the License. A copy of the License is available at http://www.sun.com/
09: *
10: * The Original Code is the Java 3D(tm) Scene Graph Editor.
11: * The Initial Developer of the Original Code is Paul Byrne.
12: * Portions created by Paul Byrne are Copyright (C) 2002.
13: * All Rights Reserved.
14: *
15: * Contributor(s): Paul Byrne.
16: *
17: **/
18: package org.jdesktop.j3dedit.scenegrapheditor.nodeeditors;
19:
20: import java.awt.Frame;
21: import javax.media.j3d.*;
22: import org.jdesktop.j3dedit.scenegraph.SGNode;
23: import org.jdesktop.j3dedit.scenegrapheditor.nodeeditors.NodeEditorPanel;
24:
25: /**
26: * @author Paul Byrne
27: * @version 1.6, 01/18/02
28: */
29: public class NodeEditorPanelTemplate extends NodeEditorPanel {
30:
31: public NodeEditorPanelTemplate() {
32: super ();
33: initComponents();
34:
35: }
36:
37: /** This method is called from within the constructor to
38: * initialize the form.
39: * WARNING: Do NOT modify this code. The content of this method is
40: * always regenerated by the FormEditor.
41: */
42: private void initComponents() {//GEN-BEGIN:initComponents
43:
44: setLayout(new java.awt.BorderLayout());
45:
46: }//GEN-END:initComponents
47:
48: /**
49: * Permanently apply the changes to the node
50: */
51: public void applyChanges() {
52:
53: }
54:
55: /**
56: * Reset the changes to the state when setControls or applyChanges
57: * was last called
58: */
59: public void resetChanges() {
60:
61: }
62:
63: /**
64: * Set the GUI controls to represent node
65: * Store the state of the node so any subsequent changes
66: * can be reset
67: */
68: protected void setControls() {
69: }
70:
71: protected void setReadCapabilityBits(javax.media.j3d.Node node) {
72: }
73:
74: protected void setReadWriteCapabilityBits(javax.media.j3d.Node node) {
75: }
76:
77: // Variables declaration - do not modify//GEN-BEGIN:variables
78: // End of variables declaration//GEN-END:variables
79:
80: }
|