[Jarspy-commits] CVS: JarSpy/src/com/ociweb/jarspy/gui/classdetails ClassDetailsPanel.java,1.3,1.4 F
Status: Beta
Brought to you by:
brown_j
|
From: Jeff B. <br...@us...> - 2003-01-25 01:28:16
|
Update of /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/gui/classdetails
In directory sc8-pr-cvs1:/tmp/cvs-serv31272/classdetails
Modified Files:
ClassDetailsPanel.java FieldsTab.java GeneralTab.java
MethodsTab.java
Log Message:
significant refactoring of viewer code from JarSpyGUI into ClassesViewer
Index: ClassDetailsPanel.java
===================================================================
RCS file: /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/gui/classdetails/ClassDetailsPanel.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ClassDetailsPanel.java 14 Sep 2002 00:42:52 -0000 1.3
--- ClassDetailsPanel.java 25 Jan 2003 01:28:10 -0000 1.4
***************
*** 21,26 ****
import com.ociweb.jarspy.ClassInfo;
import com.ociweb.jarspy.gui.ClassSelectionListener;
import com.ociweb.jarspy.gui.JarFileSelectionListener;
- import com.ociweb.jarspy.gui.JarSpyGUI;
import java.awt.CardLayout;
import java.io.File;
--- 21,26 ----
import com.ociweb.jarspy.ClassInfo;
import com.ociweb.jarspy.gui.ClassSelectionListener;
+ import com.ociweb.jarspy.gui.ClassesViewer;
import com.ociweb.jarspy.gui.JarFileSelectionListener;
import java.awt.CardLayout;
import java.io.File;
***************
*** 42,48 ****
private ClassDetailTabbedPane tabbedPane = new ClassDetailTabbedPane();
! public ClassDetailsPanel(JarSpyGUI gui) {
! gui.addClassSelectionListener(this);
! gui.addJarFileSelectionListener(this);
setLayout(cardLayout);
--- 42,47 ----
private ClassDetailTabbedPane tabbedPane = new ClassDetailTabbedPane();
! public ClassDetailsPanel(ClassesViewer viewer) {
! viewer.addClassSelectionListener(this);
setLayout(cardLayout);
Index: FieldsTab.java
===================================================================
RCS file: /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/gui/classdetails/FieldsTab.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** FieldsTab.java 4 Oct 2002 01:57:16 -0000 1.5
--- FieldsTab.java 25 Jan 2003 01:28:10 -0000 1.6
***************
*** 19,23 ****
package com.ociweb.jarspy.gui.classdetails;
- import com.ociweb.classinfo.CRField;
import com.ociweb.jarspy.ClassInfo;
import java.awt.BorderLayout;
--- 19,22 ----
Index: GeneralTab.java
===================================================================
RCS file: /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/gui/classdetails/GeneralTab.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** GeneralTab.java 4 Oct 2002 02:34:42 -0000 1.4
--- GeneralTab.java 25 Jan 2003 01:28:10 -0000 1.5
***************
*** 23,29 ****
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
- import java.util.SortedSet;
- import javax.swing.DefaultComboBoxModel;
- import javax.swing.JComboBox;
import javax.swing.JComponent;
import javax.swing.JLabel;
--- 23,26 ----
Index: MethodsTab.java
===================================================================
RCS file: /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/gui/classdetails/MethodsTab.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** MethodsTab.java 4 Oct 2002 01:57:16 -0000 1.5
--- MethodsTab.java 25 Jan 2003 01:28:10 -0000 1.6
***************
*** 21,26 ****
import com.ociweb.jarspy.ClassInfo;
import java.awt.BorderLayout;
- import java.util.SortedSet;
import java.util.Iterator;
import javax.swing.JTextArea;
--- 21,26 ----
import com.ociweb.jarspy.ClassInfo;
import java.awt.BorderLayout;
import java.util.Iterator;
+ import java.util.SortedSet;
import javax.swing.JTextArea;
|