|
Generated by JDiff |
||||||||
| PREV PACKAGE NEXT PACKAGE FRAMES NO FRAMES | |||||||||
This file contains all the changes in documentation in the packageorg.omg.CORBA.portableas colored differences. Deletions are shownlike this, and additions are shown like this.
If no deletions or additions are shown in an entry, the HTML tags will be what has changed. The new HTML tags are shown in the differences. If no documentation existed, and then some was added in a later version, this change is noted in the appropriate class pages of differences, but the change is not shown on this page. Only changes in existing text are shown here. Similarly, documentation which was inherited from another class or interface is not shown here.
Note that an HTML error in the new documentation may cause the display of other documentation changes to be presented incorrectly. For instance, failure to close a <code> tag will cause all subsequent paragraphs to be displayed differently.
Specifies a portable API for ORB-vendor-specific implementation of the org.omg.CORBA.Object methods. Each stub (proxy) contains a delegate object to which all org.omg.CORBA.Object methods are forwarded. This allows a stub generated by one vendor's ORB to work with the delegate from another vendor's ORB. @see org.omg.CORBA.Object @author OMG @version 1.Class Delegate, boolean equals(Object, Object)30 0234 12/0203/0001
Class Delegate, int hashCode(Object)ProvideProvides the implementation to override the equals(java.lang.Object obj) method of the delegating CORBA object. @param selfThethe object referencewhichthat delegated to this delegate.@param obj theObjectwith which to compare @returntrueifobjequalsself;falseotherwise
Class Delegate, String toString(Object)ProvideProvides the implementation to override the hashCode() method of the delegating CORBA object. @param selfThethe object referencewhichthat delegated to this delegate.@return anintthat represents the hashcode for the object reference that delegated to thisDelegateobject
ProvideProvides the implementation to override the toString() method of the delegating CORBA object. @param selfThethe object referencewhichthat delegated to this delegate.@return aStringobject that represents the object reference that delegated to thisDelegateobject
Returns the ORB that created this InputStream. @returnClass InputStream, Context read_Context()antheORBobject.that created this stream @seeportablepackage comments for unimplemented features
Reads a CORBA context from the stream. @return a CORBA contextClass InputStream, Object read_Object().@seeportablepackage comments for unimplemented features
Reads a CORBA object from this input stream. @return the Object instance read from this input stream
Class InputStream, Object read_Object(Class)Class InputStream, Principal read_Principal()read_Object unmarshalsUnmarshals an object and returns a CORBA Object which is an instance of the class passed as its argument. This class is the stub class of the expected type. @param clzaThe Class objectoneforof whose instances this method will read and returnthe stub class which corresponds to the type thatfromis statistically expected or thestreamClass object for the RMI/IDL interface type that is statistically expected. @return an Object instance of clz read from this stream.@seeportablepackage comments for unimplemented features
Returns principle for invocation. @return Principle for invocationClass InputStream, TypeCode read_TypeCode().@deprecated Deprecated by CORBA 2.2.
Reads a TypeCode from this input stream. @return the TypeCode instance read from this input stream
Class InputStream, Any read_any()Reads an Any from this input stream. @return the Any instance read from this input stream
Class InputStream, boolean read_boolean()Reads a boolean value from this input stream. @return the boolean value read from this input stream
Class InputStream, char read_char()Reads a char value from this input stream. @return the char value read from this input stream
Class InputStream, double read_double()Reads a double value from this input stream. @return the double value read from this input stream
Class InputStream, BigDecimal read_fixed()Reads a BigDecimal number. @return a java.math.BigDecimal numberClass InputStream, float read_float(). @see portable package comments for unimplemented features
Reads a float value from this input stream. @return the float value read from this input stream
Class InputStream, int read_long()Reads a CORBA long (Class InputStream, void read_long_array(int[], int, int)i.e.that is Java int) value from this input stream. @return theintvalue read from this input stream
Reads an array of CORBA longs (Class InputStream, long read_longlong()i.e.that is Java ints) from this input stream. @param value returned array of CORBA longs (i.e.that is Java ints). @param offset offset on the stream. @param length length of buffer to read
Reads a CORBA longlong (Class InputStream, void read_longlong_array(long[], int, int)i.e.that is Java long) value from this input stream. @return thelongvalue read from this input stream
Reads an array of CORBA longlongs (Class InputStream, byte read_octet()i.e.that is Java longs) from this input stream. @param value returned array of CORBA longs (i.e.that is Java longs). @param offset offset on the stream. @param length length of buffer to read
Reads an octet (Class InputStream, void read_octet_array(byte[], int, int)i.e.that is a byte) value from this input stream. @return thebytevalue read from this input stream
Reads an array of octets (Class InputStream, short read_short()i.e.that is bytes) from this input stream. @param value returned array of octets (i.e.that is bytes). @param offset offset on the stream. @param length length of buffer to read
Reads a short value from this input stream. @return the short value read from this input stream
Class InputStream, String read_string()Reads a string value from this input stream. @return the String value read from this input stream
Class InputStream, int read_ulong()Reads an unsigned CORBA long (Class InputStream, void read_ulong_array(int[], int, int)i.e.that is Java int) value from this input stream. @return theintvalue read from this input stream
Reads an array of unsigned CORBA longs (Class InputStream, long read_ulonglong()i.e.that is Java ints) from this input stream. @param value returned array of CORBA longs (i.e.that is Java ints). @param offset offset on the stream. @param length length of buffer to read
Reads a CORBA unsigned longlong (Class InputStream, void read_ulonglong_array(long[], int, int)i.e.that is Java long) value from this input stream. @return thelongvalue read from this input stream
Reads an array of unsigned CORBA longlongs (Class InputStream, short read_ushort()i.e.that is Java longs) from this input stream. @param value returned array of CORBA longs (i.e.that is Java longs). @param offset offset on the stream. @param length length of buffer to read
Reads a unsigned short value from this input stream. @return the short value read from this input stream
Class InputStream, char read_wchar()Reads a wide char value from this input stream. @return the char value read from this input stream
Class InputStream, String read_wstring()Reads a wide string value from this input stream. @return the String value read from this input stream
Returns anOutputStreamobject to use for marshalling the arguments of the given method. This method is called by a stub which must indicate if a response is expected that is whether or not the call is oneway. @param operation a String giving the name of the method. @param responseExpected a boolean --trueif the request is not one way that is a response is expected @return anOutputStreamobject for dispatching the request
Returns the ORB that created this OutputStream. @return the ORB that created this OutputStreamClass OutputStream, void write(int).@seeportablepackage comments for unimplemented features
Writes an integer (length of arrays) onto this stream. @param b the value to be written. @throws java.io.IOException if there is an input/output error @see portable package comments for unimplemented features
Class OutputStream, void write_Context(Context, ContextList)Writes a CORBA context on this stream. The Context is marshaled as a sequence of strings. Only those Context values specified in the contexts parameter are actually written. @param ctx a CORBA contextClass OutputStream, void write_fixed(BigDecimal).@param contexts aContextListobject containing the list of contexts to be written @seeportablepackage comments for unimplemented features
Writes a BigDecimal number. @param value a BidDecimal--value to be written.@see portable package comments for unimplemented features
Defines the base type for all non-boxed IDL valuetypes that are not custom marshaled. All value types implement ValueBase either directly or indirectly by implementing either the StreamableValue or CustomValue interface. @author OMG @version 1.8 0210 12/0203/0001