jicarilla-suf/suf-components/instrument-manager/impl/src/java/org/apache/excalibur/instrument/manager AbstractInstrumentSample.java,1.1.1.1,1.2 DefaultInstrumentManager.java,1.1.1.1,1.2 InstrumentDescriptorLocalImpl.java,1.1.1.1,1.2 InstrumentProxy.java,1.1.1.1,1.2 InstrumentableProxy.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-manager/impl/src/java/org/apache/excalibur/instrument/manager
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5723/suf-components/instrument-manager/impl/src/java/org/apache/excalibur/instrument/manager

Modified Files:
	AbstractInstrumentSample.java DefaultInstrumentManager.java 
	InstrumentDescriptorLocalImpl.java InstrumentProxy.java 
	InstrumentableProxy.java 
Log Message:
optimize imports

Index: InstrumentableProxy.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-manager/impl/src/java/org/apache/excalibur/instrument/manager/InstrumentableProxy.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- InstrumentableProxy.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ InstrumentableProxy.java	10 Apr 2004 22:51:00 -0000	1.2
@@ -17,16 +17,16 @@
 
 package org.apache.excalibur.instrument.manager;
 
-import java.util.Arrays;
-import java.util.Comparator;
-import java.util.HashMap;
-
 import org.apache.avalon.framework.configuration.Configurable;
 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.AbstractLogEnabled;
 
+import java.util.Arrays;
+import java.util.Comparator;
+import java.util.HashMap;
+
 /**
  * A InstrumentableProxy makes it easy for the InstrumentManager to manage
  *  Instrumentables and their Instruments.

Index: DefaultInstrumentManager.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-manager/impl/src/java/org/apache/excalibur/instrument/manager/DefaultInstrumentManager.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- DefaultInstrumentManager.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ DefaultInstrumentManager.java	10 Apr 2004 22:51:00 -0000	1.2
@@ -17,18 +17,6 @@
 
 package org.apache.excalibur.instrument.manager;
 
-import java.io.ByteArrayOutputStream;
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.FileOutputStream;
-import java.io.InputStream;
-import java.io.OutputStream;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.Comparator;
-import java.util.HashMap;
-import java.util.Iterator;
-
 import org.apache.avalon.framework.activity.Disposable;
 import org.apache.avalon.framework.activity.Initializable;
 import org.apache.avalon.framework.configuration.Configurable;
@@ -52,6 +40,18 @@
 import org.apache.excalibur.instrument.manager.interfaces.NoSuchInstrumentSampleException;
 import org.apache.excalibur.instrument.manager.interfaces.NoSuchInstrumentableException;
 
+import java.io.ByteArrayOutputStream;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileOutputStream;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Comparator;
+import java.util.HashMap;
+import java.util.Iterator;
+
 /**
  *
  * @author <a href="mailto:[email protected]">Avalon Development Team</a>

Index: InstrumentProxy.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-manager/impl/src/java/org/apache/excalibur/instrument/manager/InstrumentProxy.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- InstrumentProxy.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ InstrumentProxy.java	10 Apr 2004 22:51:00 -0000	1.2
@@ -17,10 +17,6 @@
 
 package org.apache.excalibur.instrument.manager;
 
-import java.util.Arrays;
-import java.util.Comparator;
-import java.util.HashMap;
-
 import org.apache.avalon.framework.configuration.Configurable;
 import org.apache.avalon.framework.configuration.Configuration;
 import org.apache.avalon.framework.configuration.ConfigurationException;
@@ -30,6 +26,10 @@
 import org.apache.excalibur.instrument.manager.interfaces.InstrumentManagerClient;
 import org.apache.excalibur.instrument.manager.interfaces.InstrumentSampleUtils;
 
+import java.util.Arrays;
+import java.util.Comparator;
+import java.util.HashMap;
+
 /**
  * Instrumentables which do not implement ThreadSafe may have multiple instances
  *  created by the ComponentLocator.  Each of these Instruments will share

Index: AbstractInstrumentSample.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-manager/impl/src/java/org/apache/excalibur/instrument/manager/AbstractInstrumentSample.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- AbstractInstrumentSample.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ AbstractInstrumentSample.java	10 Apr 2004 22:51:00 -0000	1.2
@@ -17,9 +17,6 @@
 
 package org.apache.excalibur.instrument.manager;
 
-import java.util.StringTokenizer;
-import java.util.Calendar;
-
 import org.apache.avalon.framework.configuration.Configuration;
 import org.apache.avalon.framework.configuration.ConfigurationException;
 import org.apache.avalon.framework.configuration.DefaultConfiguration;
@@ -27,6 +24,9 @@
 import org.apache.excalibur.instrument.manager.interfaces.InstrumentSampleSnapshot;
 import org.apache.excalibur.instrument.manager.interfaces.InstrumentSampleUtils;
 
+import java.util.Calendar;
+import java.util.StringTokenizer;
+
 /**
  * An AbstractInstrumentSample contains all of the functionality common to all
  *  InstrumentSamples.

Index: InstrumentDescriptorLocalImpl.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/instrument-manager/impl/src/java/org/apache/excalibur/instrument/manager/InstrumentDescriptorLocalImpl.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- InstrumentDescriptorLocalImpl.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ InstrumentDescriptorLocalImpl.java	10 Apr 2004 22:51:00 -0000	1.2
@@ -17,8 +17,8 @@
 
 package org.apache.excalibur.instrument.manager;
 
-import org.apache.excalibur.instrument.manager.interfaces.InstrumentableDescriptor;
 import org.apache.excalibur.instrument.manager.interfaces.InstrumentSampleDescriptor;
+import org.apache.excalibur.instrument.manager.interfaces.InstrumentableDescriptor;
 import org.apache.excalibur.instrument.manager.interfaces.NoSuchInstrumentSampleException;
 
 /**



-------------------------------------------------------
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
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.