This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.rmi.CORBA
interface StubDelegate


public interface StubDelegate

Supports delegation for method implementations in {@link Stub}. A delegate is an instance of a class that implements this interface and provides a replacement implementation for all the methods of javax.rmi.CORBA.Stub. If delegation is enabled, each stub has an associated delegate. Delegates are enabled by providing the delegate's class name as the value of the javax.rmi.CORBA.StubClass system property.


Method Summary
 void
connect(Stub self, ORB orb)

          Delegation call for javax.rmi.CORBA.Stub.connect.
 boolean
equals(Stub self, Object obj)

          Delegation call for javax.rmi.CORBA.Stub.equals.
 int
hashCode(Stub self)

          Delegation call for javax.rmi.CORBA.Stub.hashCode.
 void

          Delegation call for Stub.readObject(java.io.ObjectInputStream).
 String
toString(Stub self)

          Delegation call for javax.rmi.CORBA.Stub.toString.
 void

          Delegation call for Stub.writeObject(java.io.ObjectOutputStream).
 

Method Detail

connect

public void connect(Stub self,
                    ORB orb)
             throws RemoteException
Delegation call for {@link Stub#connect}.

Parameters:
self
orb
Throws:
RemoteException

equals

public boolean equals(Stub self,
                      Object obj)
Delegation call for {@link Stub#equals}.

Parameters:
self
obj

hashCode

public int hashCode(Stub self)
Delegation call for {@link Stub#hashCode}.

Parameters:
self

readObject

public void readObject(Stub self,
                       ObjectInputStream s)
                throws IOException,
                       ClassNotFoundException
Delegation call for Stub.readObject(java.io.ObjectInputStream).

Parameters:
self
s
Throws:
IOException
ClassNotFoundException

toString

public String toString(Stub self)
Delegation call for {@link Stub#toString}.

Parameters:
self

writeObject

public void writeObject(Stub self,
                        ObjectOutputStream s)
                 throws IOException
Delegation call for Stub.writeObject(java.io.ObjectOutputStream).

Parameters:
self
s
Throws:
IOException


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.