[Jarspy-commits] CVS: JarSpy/src/com/ociweb/jarspy/gui/classdetails ConstantPoolTab.java,1.1,1.2 Dep
Status: Beta
Brought to you by:
brown_j
|
From: Jeff B. <br...@us...> - 2002-08-23 02:44:41
|
Update of /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/gui/classdetails
In directory usw-pr-cvs1:/tmp/cvs-serv31173
Modified Files:
ConstantPoolTab.java DependencyTab.java
Log Message:
add no implement labels to dep and cp tabs
Index: ConstantPoolTab.java
===================================================================
RCS file: /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/gui/classdetails/ConstantPoolTab.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ConstantPoolTab.java 21 Jul 2002 02:03:47 -0000 1.1
--- ConstantPoolTab.java 23 Aug 2002 02:44:37 -0000 1.2
***************
*** 21,24 ****
--- 21,26 ----
import com.ociweb.jarspy.ClassInfo;
+ import javax.swing.JLabel;
+
/**
* Panel to diplay the constant pool in a class
***************
*** 30,33 ****
--- 32,36 ----
public ConstantPoolTab() {
super("Constant Pool");
+ add(new JLabel("Not Implemented Yet."));
}
Index: DependencyTab.java
===================================================================
RCS file: /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/gui/classdetails/DependencyTab.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** DependencyTab.java 21 Jul 2002 02:03:47 -0000 1.1
--- DependencyTab.java 23 Aug 2002 02:44:37 -0000 1.2
***************
*** 21,24 ****
--- 21,26 ----
import com.ociweb.jarspy.ClassInfo;
+ import javax.swing.JLabel;
+
/**
* A Panel to display dependency information about a class
***************
*** 30,33 ****
--- 32,36 ----
public DependencyTab() {
super("Dependencies");
+ add(new JLabel("Not Implemented Yet."));
}
|