diff options
author | Dalibor Topic <robilad@kaffe.org> | 2004-04-23 06:39:30 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2004-04-23 06:39:30 +0000 |
commit | 5d837a584fa54f5181f52ef4d14ef441ead866be (patch) | |
tree | f16e0fc1c2b8d731e36bcc58921665e6f046eabc /libjava/javax | |
parent | ace7ed7c2439c79567fc46315b790e6ad1e1199d (diff) | |
download | gcc-5d837a584fa54f5181f52ef4d14ef441ead866be.zip gcc-5d837a584fa54f5181f52ef4d14ef441ead866be.tar.gz gcc-5d837a584fa54f5181f52ef4d14ef441ead866be.tar.bz2 |
PortableRemoteObjectDelegate.java, [...]: Cleaned up imports.
2004-04-23 Dalibor Topic <robilad@kaffe.org>
* javax/rmi/CORBA/PortableRemoteObjectDelegate.java,
javax/rmi/CORBA/Stub.java,
javax/rmi/CORBA/Util.java,
javax/rmi/CORBA/ValueHandler.java,
javax/rmi/CORBA/ValueHandler.java,
javax/rmi/PortableRemoteObject.java:
Cleaned up imports.
From-SVN: r81078
Diffstat (limited to 'libjava/javax')
-rw-r--r-- | libjava/javax/rmi/CORBA/PortableRemoteObjectDelegate.java | 6 | ||||
-rw-r--r-- | libjava/javax/rmi/CORBA/Stub.java | 10 | ||||
-rw-r--r-- | libjava/javax/rmi/CORBA/Util.java | 14 | ||||
-rw-r--r-- | libjava/javax/rmi/CORBA/UtilDelegate.java | 3 | ||||
-rw-r--r-- | libjava/javax/rmi/CORBA/ValueHandler.java | 6 | ||||
-rw-r--r-- | libjava/javax/rmi/PortableRemoteObject.java | 11 |
6 files changed, 26 insertions, 24 deletions
diff --git a/libjava/javax/rmi/CORBA/PortableRemoteObjectDelegate.java b/libjava/javax/rmi/CORBA/PortableRemoteObjectDelegate.java index a073cf4..7798a46 100644 --- a/libjava/javax/rmi/CORBA/PortableRemoteObjectDelegate.java +++ b/libjava/javax/rmi/CORBA/PortableRemoteObjectDelegate.java @@ -1,5 +1,5 @@ /* PortableRemoteObjectDelegate.java -- Interface supporting PortableRemoteObject - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -38,7 +38,9 @@ exception statement from your version. */ package javax.rmi.CORBA; -import java.rmi.*; +import java.rmi.NoSuchObjectException; +import java.rmi.Remote; +import java.rmi.RemoteException; /** * A delegate is a singleton class that support delegation for method diff --git a/libjava/javax/rmi/CORBA/Stub.java b/libjava/javax/rmi/CORBA/Stub.java index c79b85c..0ea10c9 100644 --- a/libjava/javax/rmi/CORBA/Stub.java +++ b/libjava/javax/rmi/CORBA/Stub.java @@ -1,5 +1,5 @@ /* Stub.java -- - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -38,16 +38,14 @@ exception statement from your version. */ package javax.rmi.CORBA; +import gnu.javax.rmi.CORBA.DelegateFactory; +import gnu.javax.rmi.CORBA.GetDelegateInstanceException; + import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; import java.rmi.RemoteException; -//import org.omg.CORBA.ORB; -//import org.omg.CORBA_2_3.portable.ObjectImpl; -//import org.omg.CORBA.portable.ObjectImpl; -import gnu.javax.rmi.CORBA.DelegateFactory; -import gnu.javax.rmi.CORBA.GetDelegateInstanceException; public abstract class Stub extends ObjectImpl implements Serializable diff --git a/libjava/javax/rmi/CORBA/Util.java b/libjava/javax/rmi/CORBA/Util.java index 45a189d..34e05da 100644 --- a/libjava/javax/rmi/CORBA/Util.java +++ b/libjava/javax/rmi/CORBA/Util.java @@ -1,5 +1,5 @@ /* Util.java -- - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -38,16 +38,14 @@ exception statement from your version. */ package javax.rmi.CORBA; -import java.rmi.Remote; -import java.rmi.RemoteException; -import java.lang.Object; -import java.io.*; -//import org.omg.CORBA.*; -//import org.omg.CORBA.portable.InputStream; -//import org.omg.CORBA.portable.OutputStream; import gnu.javax.rmi.CORBA.DelegateFactory; import gnu.javax.rmi.CORBA.GetDelegateInstanceException; +import java.io.InputStream; +import java.io.OutputStream; +import java.rmi.Remote; +import java.rmi.RemoteException; + public class Util { diff --git a/libjava/javax/rmi/CORBA/UtilDelegate.java b/libjava/javax/rmi/CORBA/UtilDelegate.java index 4d611bc..fac60d5 100644 --- a/libjava/javax/rmi/CORBA/UtilDelegate.java +++ b/libjava/javax/rmi/CORBA/UtilDelegate.java @@ -38,9 +38,10 @@ exception statement from your version. */ package javax.rmi.CORBA; +import java.io.InputStream; +import java.io.OutputStream; import java.rmi.Remote; import java.rmi.RemoteException; -import java.io.*; //import org.omg.CORBA.ORB; //import org.omg.CORBA.SystemException; //import org.omg.CORBA.portable.InputStream; diff --git a/libjava/javax/rmi/CORBA/ValueHandler.java b/libjava/javax/rmi/CORBA/ValueHandler.java index 3a008f1..fe98002 100644 --- a/libjava/javax/rmi/CORBA/ValueHandler.java +++ b/libjava/javax/rmi/CORBA/ValueHandler.java @@ -1,5 +1,5 @@ /* ValueHandler.java -- - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -38,7 +38,9 @@ exception statement from your version. */ package javax.rmi.CORBA; -import java.io.*; +import java.io.InputStream; +import java.io.OutputStream; +import java.io.Serializable; //import org.omg.CORBA.portable.InputStream; //import org.omg.CORBA.portable.OutputStream; //import org.omg.SendingContext.RunTime; diff --git a/libjava/javax/rmi/PortableRemoteObject.java b/libjava/javax/rmi/PortableRemoteObject.java index ee40d9c..f95dafd 100644 --- a/libjava/javax/rmi/PortableRemoteObject.java +++ b/libjava/javax/rmi/PortableRemoteObject.java @@ -1,5 +1,5 @@ /* PortableRemoteObject.java -- - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -38,13 +38,14 @@ exception statement from your version. */ package javax.rmi; -import java.rmi.Remote; -import java.rmi.RemoteException; -import java.rmi.NoSuchObjectException; import gnu.javax.rmi.CORBA.DelegateFactory; import gnu.javax.rmi.CORBA.GetDelegateInstanceException; + +import java.rmi.NoSuchObjectException; +import java.rmi.Remote; +import java.rmi.RemoteException; + import javax.rmi.CORBA.PortableRemoteObjectDelegate; -import javax.rmi.CORBA.Util; public class PortableRemoteObject implements Remote /* why doc doesn't say should implement Remote */ |