[Jarspy-commits] CVS: JarSpy/src/com/ociweb/jarspy/gui JarSpyGUI.java,1.35,1.36
Status: Beta
Brought to you by:
brown_j
|
From: Jeff B. <br...@us...> - 2002-09-14 00:42:55
|
Update of /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/gui
In directory usw-pr-cvs1:/tmp/cvs-serv1118/src/com/ociweb/jarspy/gui
Modified Files:
JarSpyGUI.java
Log Message:
Index: JarSpyGUI.java
===================================================================
RCS file: /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/gui/JarSpyGUI.java,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** JarSpyGUI.java 22 Aug 2002 23:09:07 -0000 1.35
--- JarSpyGUI.java 14 Sep 2002 00:42:52 -0000 1.36
***************
*** 56,59 ****
--- 56,60 ----
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
+ import javax.swing.JButton;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
***************
*** 69,72 ****
--- 70,75 ----
import java.awt.Point;
import java.awt.event.WindowListener;
+ import java.awt.event.ActionEvent;
+ import java.awt.event.ActionListener;
import java.io.File;
import java.io.IOException;
***************
*** 113,116 ****
--- 116,123 ----
splitter = new JSplitPane();
cont.add(BorderLayout.NORTH, createToolBar());
+ StatusBar sb = new StatusBar();
+
+ addClassSelectionListener(sb);
+ cont.add(BorderLayout.SOUTH, sb);
cont.add(BorderLayout.CENTER, splitter);
splitter.setRightComponent(classDetailPanel);
***************
*** 300,303 ****
--- 307,311 ----
});
} catch (Exception e1) {
+ e1.printStackTrace();
}
}
***************
*** 389,393 ****
/**
* Called whenever the value of the selection changes.
! * @param e the event that characterizes the change.
*/
public void valueChanged(TreeSelectionEvent tse) {
--- 397,401 ----
/**
* Called whenever the value of the selection changes.
! * @param tse the event that characterizes the change.
*/
public void valueChanged(TreeSelectionEvent tse) {
|