[Bprocessor-commit] gui/src/net/sourceforge/bprocessor/gui/attrview GenericPanel.java, 1.52, 1.53
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2007-12-28 11:17:05
|
Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/attrview In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv8519/src/net/sourceforge/bprocessor/gui/attrview Modified Files: GenericPanel.java Log Message: adjusted move tool Index: GenericPanel.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/attrview/GenericPanel.java,v retrieving revision 1.52 retrieving revision 1.53 diff -C2 -d -r1.52 -r1.53 *** GenericPanel.java 27 Dec 2007 23:14:30 -0000 1.52 --- GenericPanel.java 28 Dec 2007 11:17:09 -0000 1.53 *************** *** 8,12 **** import java.awt.BorderLayout; - import java.awt.Color; import java.awt.Dimension; import java.awt.event.ItemEvent; --- 8,11 ---- *************** *** 23,27 **** import javax.swing.JLabel; import javax.swing.JPanel; - import javax.swing.border.Border; import javax.swing.border.EtchedBorder; import javax.swing.border.TitledBorder; --- 22,25 ---- *************** *** 68,73 **** public GenericPanel(Parametric param) { super(new BorderLayout()); - Border border = BorderFactory.createLineBorder(Color.black); - this.setBorder(border); this.content = Box.createVerticalBox(); obj = param; --- 66,69 ---- |