Commit 5d837a58 by Dalibor Topic Committed by Michael Koch

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
parent ace7ed7c
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.
2004-04-23 Dalibor Topic <robilad@kaffe.org> 2004-04-23 Dalibor Topic <robilad@kaffe.org>
* java/util/jar/JarFile.java, * java/util/jar/JarFile.java,
......
/* PortableRemoteObjectDelegate.java -- Interface supporting PortableRemoteObject /* 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. This file is part of GNU Classpath.
...@@ -38,7 +38,9 @@ exception statement from your version. */ ...@@ -38,7 +38,9 @@ exception statement from your version. */
package javax.rmi.CORBA; 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 * A delegate is a singleton class that support delegation for method
......
/* Stub.java -- /* Stub.java --
Copyright (C) 2002 Free Software Foundation, Inc. Copyright (C) 2002, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -38,16 +38,14 @@ exception statement from your version. */ ...@@ -38,16 +38,14 @@ exception statement from your version. */
package javax.rmi.CORBA; package javax.rmi.CORBA;
import gnu.javax.rmi.CORBA.DelegateFactory;
import gnu.javax.rmi.CORBA.GetDelegateInstanceException;
import java.io.IOException; import java.io.IOException;
import java.io.ObjectInputStream; import java.io.ObjectInputStream;
import java.io.ObjectOutputStream; import java.io.ObjectOutputStream;
import java.io.Serializable; import java.io.Serializable;
import java.rmi.RemoteException; 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 public abstract class Stub extends ObjectImpl
implements Serializable implements Serializable
......
/* Util.java -- /* Util.java --
Copyright (C) 2002 Free Software Foundation, Inc. Copyright (C) 2002, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -38,16 +38,14 @@ exception statement from your version. */ ...@@ -38,16 +38,14 @@ exception statement from your version. */
package javax.rmi.CORBA; 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.DelegateFactory;
import gnu.javax.rmi.CORBA.GetDelegateInstanceException; 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 public class Util
{ {
......
...@@ -38,9 +38,10 @@ exception statement from your version. */ ...@@ -38,9 +38,10 @@ exception statement from your version. */
package javax.rmi.CORBA; package javax.rmi.CORBA;
import java.io.InputStream;
import java.io.OutputStream;
import java.rmi.Remote; import java.rmi.Remote;
import java.rmi.RemoteException; import java.rmi.RemoteException;
import java.io.*;
//import org.omg.CORBA.ORB; //import org.omg.CORBA.ORB;
//import org.omg.CORBA.SystemException; //import org.omg.CORBA.SystemException;
//import org.omg.CORBA.portable.InputStream; //import org.omg.CORBA.portable.InputStream;
......
/* ValueHandler.java -- /* ValueHandler.java --
Copyright (C) 2002 Free Software Foundation, Inc. Copyright (C) 2002, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -38,7 +38,9 @@ exception statement from your version. */ ...@@ -38,7 +38,9 @@ exception statement from your version. */
package javax.rmi.CORBA; 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.InputStream;
//import org.omg.CORBA.portable.OutputStream; //import org.omg.CORBA.portable.OutputStream;
//import org.omg.SendingContext.RunTime; //import org.omg.SendingContext.RunTime;
......
/* PortableRemoteObject.java -- /* PortableRemoteObject.java --
Copyright (C) 2002 Free Software Foundation, Inc. Copyright (C) 2002, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
...@@ -38,13 +38,14 @@ exception statement from your version. */ ...@@ -38,13 +38,14 @@ exception statement from your version. */
package javax.rmi; 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.DelegateFactory;
import gnu.javax.rmi.CORBA.GetDelegateInstanceException; 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.PortableRemoteObjectDelegate;
import javax.rmi.CORBA.Util;
public class PortableRemoteObject public class PortableRemoteObject
implements Remote /* why doc doesn't say should implement Remote */ implements Remote /* why doc doesn't say should implement Remote */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment