< prev index next >

src/java.corba/share/classes/com/sun/corba/se/impl/corba/AnyImpl.java

Print this page

        

*** 220,230 **** // basic accessors /** * returns the type of the element contained in the Any. * ! * @result the TypeCode for the element in the Any */ public TypeCode type() { return typeCode; } --- 220,230 ---- // basic accessors /** * returns the type of the element contained in the Any. * ! * @return the {@code TypeCode} for the element in the Any */ public TypeCode type() { return typeCode; }
*** 265,275 **** /** * checks for equality between Anys. * * @param otherAny the Any to be compared with. ! * @result true if the Anys are equal, false otherwise. */ public boolean equal(Any otherAny) { //debug.log ("equal"); --- 265,275 ---- /** * checks for equality between Anys. * * @param otherAny the Any to be compared with. ! * @return {@code true} if the Anys are equal, {@code false} otherwise. */ public boolean equal(Any otherAny) { //debug.log ("equal");
*** 506,516 **** // accessors for marshaling/unmarshaling /** * returns an output stream that an Any value can be marshaled into. * ! * @result the OutputStream to marshal value of Any into */ public org.omg.CORBA.portable.OutputStream create_output_stream() { //debug.log ("create_output_stream"); final ORB finalorb = this.orb; --- 506,516 ---- // accessors for marshaling/unmarshaling /** * returns an output stream that an Any value can be marshaled into. * ! * @return the {@code OutputStream} to marshal value of Any into */ public org.omg.CORBA.portable.OutputStream create_output_stream() { //debug.log ("create_output_stream"); final ORB finalorb = this.orb;
*** 523,533 **** } /** * returns an input stream that an Any value can be marshaled out of. * ! * @result the InputStream to marshal value of Any out of. */ public org.omg.CORBA.portable.InputStream create_input_stream() { // // We create a new InputStream so that multiple threads can call here --- 523,533 ---- } /** * returns an input stream that an Any value can be marshaled out of. * ! * @return the {@code InputStream} to marshal value of Any out of. */ public org.omg.CORBA.portable.InputStream create_input_stream() { // // We create a new InputStream so that multiple threads can call here
< prev index next >