[Jarspy-commits] CVS: JarSpy/src/com/ociweb/jarspy/gui JarSpyGUI.java,1.28,1.29
Status: Beta
Brought to you by:
brown_j
|
From: Jeff B. <br...@us...> - 2002-07-17 13:21:10
|
Update of /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/gui
In directory usw-pr-cvs1:/tmp/cvs-serv9208
Modified Files:
JarSpyGUI.java
Log Message:
reorg import statements
Index: JarSpyGUI.java
===================================================================
RCS file: /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy/gui/JarSpyGUI.java,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** JarSpyGUI.java 17 Jul 2002 13:17:52 -0000 1.28
--- JarSpyGUI.java 17 Jul 2002 13:21:08 -0000 1.29
***************
*** 26,33 ****
import com.ociweb.jarspy.preferences.JarSpyPreferencesFactory;
! import javax.swing.*;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
! import java.awt.*;
import java.awt.event.WindowListener;
import java.io.File;
--- 26,57 ----
import com.ociweb.jarspy.preferences.JarSpyPreferencesFactory;
! import javax.swing.Action;
! import javax.swing.BorderFactory;
! import javax.swing.DefaultListModel;
! import javax.swing.ImageIcon;
! import javax.swing.JComponent;
! import javax.swing.JFrame;
! import javax.swing.JLabel;
! import javax.swing.JList;
! import javax.swing.JMenu;
! import javax.swing.JMenuBar;
! import javax.swing.JMenuItem;
! import javax.swing.JOptionPane;
! import javax.swing.JPanel;
! import javax.swing.JScrollPane;
! import javax.swing.JSplitPane;
! import javax.swing.JToolBar;
! import javax.swing.ListModel;
! import javax.swing.ListSelectionModel;
! import javax.swing.SwingUtilities;
! import javax.swing.UIManager;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
! import java.awt.BorderLayout;
! import java.awt.Container;
! import java.awt.Cursor;
! import java.awt.Dimension;
! import java.awt.Font;
! import java.awt.Point;
import java.awt.event.WindowListener;
import java.io.File;
***************
*** 38,42 ****
import java.util.Map;
import java.util.jar.JarFile;
- import java.util.jar.Manifest;
/**
--- 62,65 ----
***************
*** 128,144 ****
private void createActions() {
actions.put(ActionNames.OPEN_ARCHIVE_ACTION,
! new OpenArchiveAction(this));
actions.put(ActionNames.EXIT_ACTION,
! new ExitAction(this));
actions.put(ActionNames.EXTRACT_ARCHIVE_ACTION,
! new ExtractArchiveAction(this, jarInspector));
actions.put(ActionNames.VIEW_MANIFEST_ACTION,
! new ViewManifestAction(this, jarInspector));
actions.put(ActionNames.ABOUT_ACTION,
! new AboutAction(this));
actions.put(ActionNames.DECOMPILE_ACTION,
! new DecompileAction(this, classList, jarInspector));
actions.put(ActionNames.VIEW_JAR_CONTENTS_ACTION,
! new ViewJarContentsAction(this));
}
--- 151,167 ----
private void createActions() {
actions.put(ActionNames.OPEN_ARCHIVE_ACTION,
! new OpenArchiveAction(this));
actions.put(ActionNames.EXIT_ACTION,
! new ExitAction(this));
actions.put(ActionNames.EXTRACT_ARCHIVE_ACTION,
! new ExtractArchiveAction(this, jarInspector));
actions.put(ActionNames.VIEW_MANIFEST_ACTION,
! new ViewManifestAction(this, jarInspector));
actions.put(ActionNames.ABOUT_ACTION,
! new AboutAction(this));
actions.put(ActionNames.DECOMPILE_ACTION,
! new DecompileAction(this, classList, jarInspector));
actions.put(ActionNames.VIEW_JAR_CONTENTS_ACTION,
! new ViewJarContentsAction(this));
}
***************
*** 305,311 ****
} catch (ClassNotFoundException e) {
JOptionPane.showMessageDialog(null,
! "JarSpy requires Java Runtime 1.3 or greater.",
! "Incompatible VM",
! JOptionPane.ERROR_MESSAGE);
System.exit(0);
}
--- 328,334 ----
} catch (ClassNotFoundException e) {
JOptionPane.showMessageDialog(null,
! "JarSpy requires Java Runtime 1.3 or greater.",
! "Incompatible VM",
! JOptionPane.ERROR_MESSAGE);
System.exit(0);
}
|