/* * Created on 28-jun-2006 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ import javax.swing.*; import java.awt.event.*; import java.awt.*; /** * @author Lennard * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public class JointEditor { private DHJointConstraint edit; private JPanel panel; private JTextField[] tf = new JTextField[8]; public JointEditor(DHJointConstraint edit) { this.edit = edit; this.panel = new JPanel(new FlowLayout()); for (int i=0;i<8;i++) { tf[i] = new JTextField(); tf[i].setSize(100,25); this.panel.add(tf[i]); } } public JPanel getPanel() { return this.panel; } }