jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client AbstractInternalFrame.java,1.1.1.1,1.2 AbstractOptionDialog.java,1.1.1.1,1.2 AbstractTabularOptionDialog.java,1.1.1.1,1.2 ConnectDialog.java,1.1.1.1,1.2 CreateSampleDialog.java,1.1.1.1,1.2 DesktopPane.java,1.1.1.1,1.2 InstrumentClientFrame.java,1.1.1.1,1.2 InstrumentManagerConnection.java,1.1.1.1,1.2 InstrumentManagerTree.java,1.1.1.1,1.2 InstrumentManagerTreeCellRenderer.java,1.1.1.1,1.2 InstrumentManagerTreeModel.java,1.1.1.1,1.2 InstrumentNodeData.java,1.1.1.1,1.2 InstrumentSampleFrame.java,1.1.1.1,1.2 InstrumentSampleNodeData.java,1.1.1.1,1.2 InstrumentableNodeData.java,1.1.1.1,1.2 LargeMenu.java,1.1.1.1,1.2 LineChart.java,1.1.1.1,1.2 Main.java,1.1.1.1,1.2 MenuBar.java,1.1.1.1,1.2 NodeData.java,1.1.1.1,1.2 StatusBar.java,1.1.1.1,1.2
Leo Simons <[email protected]>
| Newsgroups | gmane.comp.java.jicarilla.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5723/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client Modified Files: AbstractInternalFrame.java AbstractOptionDialog.java AbstractTabularOptionDialog.java ConnectDialog.java CreateSampleDialog.java DesktopPane.java InstrumentClientFrame.java InstrumentManagerConnection.java InstrumentManagerTree.java InstrumentManagerTreeCellRenderer.java InstrumentManagerTreeModel.java InstrumentNodeData.java InstrumentSampleFrame.java InstrumentSampleNodeData.java InstrumentableNodeData.java LargeMenu.java LineChart.java Main.java MenuBar.java NodeData.java StatusBar.java Log Message: optimize imports Index: LargeMenu.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/LargeMenu.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- LargeMenu.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ LargeMenu.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,14 +17,8 @@ package org.apache.excalibur.instrument.client; -import java.awt.Container; -import java.awt.Dimension; -import java.awt.Point; -import java.awt.Toolkit; - -import javax.swing.Action; -import javax.swing.JMenu; -import javax.swing.JPopupMenu; +import javax.swing.*; +import java.awt.*; /** * The default JMenu class does not work correctly when the popup menu contains Index: InstrumentSampleNodeData.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/InstrumentSampleNodeData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- InstrumentSampleNodeData.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ InstrumentSampleNodeData.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,18 +17,14 @@ package org.apache.excalibur.instrument.client; -import java.awt.event.ActionEvent; -import java.util.ArrayList; - -import javax.swing.AbstractAction; -import javax.swing.Action; -import javax.swing.ImageIcon; -import javax.swing.JMenuItem; - import org.apache.excalibur.instrument.manager.interfaces.InstrumentManagerClient; import org.apache.excalibur.instrument.manager.interfaces.InstrumentSampleDescriptor; import org.apache.excalibur.instrument.manager.interfaces.InstrumentSampleUtils; +import javax.swing.*; +import java.awt.event.ActionEvent; +import java.util.ArrayList; + /** * @author <a href="mailto:[email protected]">Avalon Development Team</a> */ Index: StatusBar.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/StatusBar.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- StatusBar.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ StatusBar.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,10 +17,8 @@ package org.apache.excalibur.instrument.client; -import java.awt.BorderLayout; - -import javax.swing.JLabel; -import javax.swing.JPanel; +import javax.swing.*; +import java.awt.*; /** * This class defines the status bar at the bottom of the main frame. Index: DesktopPane.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/DesktopPane.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- DesktopPane.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ DesktopPane.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,8 +17,7 @@ package org.apache.excalibur.instrument.client; -import javax.swing.JDesktopPane; -import javax.swing.JInternalFrame; +import javax.swing.*; /** * This class was build to make it possible to use some of the JDK1.3 Index: CreateSampleDialog.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/CreateSampleDialog.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- CreateSampleDialog.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ CreateSampleDialog.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,19 +17,12 @@ package org.apache.excalibur.instrument.client; -import java.awt.Component; -import java.awt.Container; - -import javax.swing.Box; -import javax.swing.ButtonGroup; -import javax.swing.JCheckBox; -import javax.swing.JOptionPane; -import javax.swing.JRadioButton; -import javax.swing.JTextField; - import org.apache.excalibur.instrument.manager.interfaces.InstrumentDescriptor; import org.apache.excalibur.instrument.manager.interfaces.InstrumentManagerClient; +import javax.swing.*; +import java.awt.*; + /** * * @author <a href="mailto:[email protected]">Avalon Development Team</a> Index: AbstractOptionDialog.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/AbstractOptionDialog.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- AbstractOptionDialog.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ AbstractOptionDialog.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,24 +17,12 @@ package org.apache.excalibur.instrument.client; -import java.awt.BorderLayout; -import java.awt.Dimension; -import java.awt.FlowLayout; -import java.awt.Point; -import java.awt.event.ActionEvent; - -import javax.swing.AbstractAction; -import javax.swing.Action; -import javax.swing.Box; -import javax.swing.JButton; -import javax.swing.JDialog; -import javax.swing.JFrame; -import javax.swing.JLabel; -import javax.swing.JPanel; -import javax.swing.SwingConstants; +import javax.swing.*; import javax.swing.border.CompoundBorder; import javax.swing.border.EmptyBorder; import javax.swing.border.EtchedBorder; +import java.awt.*; +import java.awt.event.ActionEvent; /** * Index: InstrumentManagerTree.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/InstrumentManagerTree.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- InstrumentManagerTree.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ InstrumentManagerTree.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,20 +17,14 @@ package org.apache.excalibur.instrument.client; -import java.awt.BorderLayout; -import java.awt.Rectangle; -import java.awt.event.MouseAdapter; -import java.awt.event.MouseEvent; - -import javax.swing.JComponent; -import javax.swing.JPopupMenu; -import javax.swing.JScrollPane; -import javax.swing.JTree; -import javax.swing.ToolTipManager; +import javax.swing.*; import javax.swing.tree.DefaultMutableTreeNode; import javax.swing.tree.TreeModel; import javax.swing.tree.TreePath; import javax.swing.tree.TreeSelectionModel; +import java.awt.*; +import java.awt.event.MouseAdapter; +import java.awt.event.MouseEvent; /** * Index: MenuBar.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/MenuBar.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- MenuBar.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ MenuBar.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,23 +17,16 @@ package org.apache.excalibur.instrument.client; -import java.awt.event.ActionEvent; - -import javax.swing.AbstractAction; -import javax.swing.Action; -import javax.swing.JCheckBoxMenuItem; -import javax.swing.JInternalFrame; -import javax.swing.JMenu; -import javax.swing.JMenuBar; -import javax.swing.JMenuItem; -import javax.swing.event.MenuEvent; -import javax.swing.event.MenuListener; - import org.apache.excalibur.instrument.manager.interfaces.InstrumentDescriptor; import org.apache.excalibur.instrument.manager.interfaces.InstrumentManagerClient; import org.apache.excalibur.instrument.manager.interfaces.InstrumentSampleDescriptor; import org.apache.excalibur.instrument.manager.interfaces.InstrumentableDescriptor; +import javax.swing.*; +import javax.swing.event.MenuEvent; +import javax.swing.event.MenuListener; +import java.awt.event.ActionEvent; + /** * * @author <a href="mailto:[email protected]">Avalon Development Team</a> Index: InstrumentManagerTreeCellRenderer.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/InstrumentManagerTreeCellRenderer.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- InstrumentManagerTreeCellRenderer.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ InstrumentManagerTreeCellRenderer.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,11 +17,10 @@ package org.apache.excalibur.instrument.client; -import java.awt.Component; - -import javax.swing.JTree; +import javax.swing.*; import javax.swing.tree.DefaultMutableTreeNode; import javax.swing.tree.DefaultTreeCellRenderer; +import java.awt.*; /** * @author <a href="mailto:[email protected]">Avalon Development Team</a> Index: InstrumentableNodeData.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/InstrumentableNodeData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- InstrumentableNodeData.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ InstrumentableNodeData.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,10 +17,10 @@ package org.apache.excalibur.instrument.client; -import javax.swing.ImageIcon; - import org.apache.excalibur.instrument.manager.interfaces.InstrumentableDescriptor; +import javax.swing.*; + /** * @author <a href="mailto:[email protected]">Avalon Development Team</a> */ Index: InstrumentNodeData.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/InstrumentNodeData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- InstrumentNodeData.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ InstrumentNodeData.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -16,16 +16,12 @@ */ package org.apache.excalibur.instrument.client; -import java.awt.event.ActionEvent; - -import javax.swing.AbstractAction; -import javax.swing.Action; -import javax.swing.ImageIcon; -import javax.swing.JMenuItem; - import org.apache.excalibur.instrument.manager.interfaces.InstrumentDescriptor; import org.apache.excalibur.instrument.manager.interfaces.InstrumentManagerClient; +import javax.swing.*; +import java.awt.event.ActionEvent; + /** * @author <a href="mailto:[email protected]">Avalon Development Team</a> */ Index: Main.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/Main.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- Main.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ Main.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,10 +17,10 @@ package org.apache.excalibur.instrument.client; -import java.io.File; - import org.apache.avalon.framework.logger.ConsoleLogger; +import java.io.File; + /** * * @author <a href="mailto:[email protected]">Avalon Development Team</a> Index: InstrumentSampleFrame.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/InstrumentSampleFrame.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- InstrumentSampleFrame.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ InstrumentSampleFrame.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,20 +17,16 @@ package org.apache.excalibur.instrument.client; -import java.awt.Color; -import java.awt.Dimension; - -import javax.swing.ImageIcon; -import javax.swing.JLabel; -import javax.swing.SwingConstants; -import javax.swing.event.InternalFrameEvent; -import javax.swing.tree.DefaultMutableTreeNode; - import org.apache.avalon.framework.configuration.Configuration; import org.apache.avalon.framework.configuration.ConfigurationException; import org.apache.avalon.framework.configuration.DefaultConfiguration; import org.apache.excalibur.instrument.manager.interfaces.InstrumentSampleSnapshot; +import javax.swing.*; +import javax.swing.event.InternalFrameEvent; +import javax.swing.tree.DefaultMutableTreeNode; +import java.awt.*; + /** * * @author <a href="mailto:[email protected]">Avalon Development Team</a> Index: InstrumentManagerConnection.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/InstrumentManagerConnection.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- InstrumentManagerConnection.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ InstrumentManagerConnection.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,45 +17,33 @@ package org.apache.excalibur.instrument.client; -import java.awt.BorderLayout; -import java.awt.Color; -import java.awt.FlowLayout; -import java.awt.event.ActionEvent; -import java.beans.PropertyVetoException; -import java.io.IOException; -import java.util.ArrayList; -import java.util.HashMap; - -import javax.swing.AbstractAction; -import javax.swing.Action; -import javax.swing.Box; -import javax.swing.JButton; -import javax.swing.JComponent; -import javax.swing.JLabel; -import javax.swing.JPanel; -import javax.swing.SwingUtilities; -import javax.swing.tree.DefaultMutableTreeNode; - +import org.apache.altrmi.client.ConnectionRefusedException; +import org.apache.altrmi.client.Factory; +import org.apache.altrmi.client.HostContext; +import org.apache.altrmi.client.InvocationException; +import org.apache.altrmi.client.impl.ClientSideClassFactory; +import org.apache.altrmi.client.impl.socket.SocketCustomStreamHostContext; +import org.apache.altrmi.common.ConnectionException; import org.apache.avalon.framework.configuration.Configuration; import org.apache.avalon.framework.configuration.ConfigurationException; import org.apache.avalon.framework.configuration.DefaultConfiguration; import org.apache.avalon.framework.logger.LogEnabled; import org.apache.avalon.framework.logger.Logger; - -import org.apache.altrmi.client.HostContext; -import org.apache.altrmi.client.Factory; -import org.apache.altrmi.client.impl.socket.SocketCustomStreamHostContext; -import org.apache.altrmi.client.impl.ClientSideClassFactory; -import org.apache.altrmi.common.ConnectionException; -import org.apache.altrmi.client.InvocationException; -import org.apache.altrmi.client.ConnectionRefusedException; - import org.apache.excalibur.instrument.manager.interfaces.InstrumentDescriptor; import org.apache.excalibur.instrument.manager.interfaces.InstrumentManagerClient; import org.apache.excalibur.instrument.manager.interfaces.InstrumentSampleDescriptor; import org.apache.excalibur.instrument.manager.interfaces.InstrumentSampleSnapshot; import org.apache.excalibur.instrument.manager.interfaces.InstrumentSampleUtils; +import javax.swing.*; +import javax.swing.tree.DefaultMutableTreeNode; +import java.awt.*; +import java.awt.event.ActionEvent; +import java.beans.PropertyVetoException; +import java.io.IOException; +import java.util.ArrayList; +import java.util.HashMap; + /** * * @author <a href="mailto:[email protected]">Avalon Development Team</a> Index: AbstractTabularOptionDialog.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/AbstractTabularOptionDialog.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- AbstractTabularOptionDialog.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ AbstractTabularOptionDialog.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,15 +17,8 @@ package org.apache.excalibur.instrument.client; -import java.awt.Component; -import java.awt.Dimension; -import java.awt.GridBagConstraints; -import java.awt.GridBagLayout; - -import javax.swing.Box; -import javax.swing.JFrame; -import javax.swing.JLabel; -import javax.swing.JPanel; +import javax.swing.*; +import java.awt.*; /** * Creates a dialog which displays a table of labeled components to the user. Index: ConnectDialog.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/ConnectDialog.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- ConnectDialog.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ ConnectDialog.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,10 +17,8 @@ package org.apache.excalibur.instrument.client; -import java.awt.Component; - -import javax.swing.JOptionPane; -import javax.swing.JTextField; +import javax.swing.*; +import java.awt.*; /** * Index: InstrumentClientFrame.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/InstrumentClientFrame.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- InstrumentClientFrame.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ InstrumentClientFrame.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,10 +17,18 @@ package org.apache.excalibur.instrument.client; -import java.awt.BorderLayout; -import java.awt.Dimension; -import java.awt.Frame; -import java.awt.Toolkit; +import org.apache.avalon.framework.configuration.Configuration; +import org.apache.avalon.framework.configuration.ConfigurationException; +import org.apache.avalon.framework.configuration.DefaultConfiguration; +import org.apache.avalon.framework.configuration.DefaultConfigurationBuilder; +import org.apache.avalon.framework.configuration.DefaultConfigurationSerializer; +import org.apache.avalon.framework.logger.LogEnabled; +import org.apache.avalon.framework.logger.Logger; + +import javax.swing.*; +import javax.swing.border.BevelBorder; +import javax.swing.filechooser.FileFilter; +import java.awt.*; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.io.ByteArrayOutputStream; @@ -32,27 +40,6 @@ import java.util.ArrayList; import java.util.HashMap; -import javax.swing.ImageIcon; -import javax.swing.JDesktopPane; -import javax.swing.JFileChooser; -import javax.swing.JFrame; -import javax.swing.JInternalFrame; -import javax.swing.JOptionPane; -import javax.swing.JPanel; -import javax.swing.JSplitPane; -import javax.swing.JTabbedPane; -import javax.swing.SwingUtilities; -import javax.swing.border.BevelBorder; -import javax.swing.filechooser.FileFilter; - -import org.apache.avalon.framework.configuration.Configuration; -import org.apache.avalon.framework.configuration.ConfigurationException; -import org.apache.avalon.framework.configuration.DefaultConfiguration; -import org.apache.avalon.framework.configuration.DefaultConfigurationBuilder; -import org.apache.avalon.framework.configuration.DefaultConfigurationSerializer; -import org.apache.avalon.framework.logger.LogEnabled; -import org.apache.avalon.framework.logger.Logger; - /** * * @author <a href="mailto:[email protected]">Avalon Development Team</a> Index: InstrumentManagerTreeModel.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/InstrumentManagerTreeModel.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- InstrumentManagerTreeModel.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ InstrumentManagerTreeModel.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,20 +17,19 @@ package org.apache.excalibur.instrument.client; -import java.util.ArrayList; -import java.util.HashMap; +import org.apache.avalon.framework.logger.AbstractLogEnabled; +import org.apache.excalibur.instrument.manager.interfaces.InstrumentDescriptor; +import org.apache.excalibur.instrument.manager.interfaces.InstrumentManagerClient; +import org.apache.excalibur.instrument.manager.interfaces.InstrumentSampleDescriptor; +import org.apache.excalibur.instrument.manager.interfaces.InstrumentableDescriptor; import javax.swing.event.TreeModelEvent; import javax.swing.event.TreeModelListener; import javax.swing.tree.DefaultMutableTreeNode; import javax.swing.tree.TreeModel; import javax.swing.tree.TreePath; - -import org.apache.avalon.framework.logger.AbstractLogEnabled; -import org.apache.excalibur.instrument.manager.interfaces.InstrumentDescriptor; -import org.apache.excalibur.instrument.manager.interfaces.InstrumentManagerClient; -import org.apache.excalibur.instrument.manager.interfaces.InstrumentSampleDescriptor; -import org.apache.excalibur.instrument.manager.interfaces.InstrumentableDescriptor; +import java.util.ArrayList; +import java.util.HashMap; /** * @author <a href="mailto:[email protected]">Avalon Development Team</a> Index: AbstractInternalFrame.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/AbstractInternalFrame.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- AbstractInternalFrame.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ AbstractInternalFrame.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,17 +17,13 @@ package org.apache.excalibur.instrument.client; -import java.awt.BorderLayout; -import java.awt.Dimension; +import org.apache.avalon.framework.configuration.Configuration; +import org.apache.avalon.framework.configuration.DefaultConfiguration; -import javax.swing.JDesktopPane; -import javax.swing.JInternalFrame; -import javax.swing.JPanel; +import javax.swing.*; import javax.swing.event.InternalFrameEvent; import javax.swing.event.InternalFrameListener; - -import org.apache.avalon.framework.configuration.Configuration; -import org.apache.avalon.framework.configuration.DefaultConfiguration; +import java.awt.*; /** * Index: LineChart.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/LineChart.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- LineChart.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ LineChart.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,11 +17,8 @@ package org.apache.excalibur.instrument.client; -import java.awt.Color; -import java.awt.Dimension; -import java.awt.FontMetrics; -import java.awt.Graphics; -import java.awt.Insets; +import javax.swing.*; +import java.awt.*; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; import java.awt.event.MouseMotionListener; @@ -30,8 +27,6 @@ import java.util.Calendar; import java.util.Date; -import javax.swing.JComponent; - /** * Draws a nice pretty chart given a set of data. * Index: NodeData.java =================================================================== RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-client/src/java/org/apache/excalibur/instrument/client/NodeData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- NodeData.java 10 Apr 2004 14:40:37 -0000 1.1.1.1 +++ NodeData.java 10 Apr 2004 22:50:59 -0000 1.2 @@ -17,9 +17,7 @@ package org.apache.excalibur.instrument.client; -import javax.swing.ImageIcon; -import javax.swing.JMenuItem; -import javax.swing.JPopupMenu; +import javax.swing.*; /** * @author <a href="mailto:[email protected]">Avalon Development Team</a> ------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click