/[classpath]/classpath/org/omg/CORBA/portable/ObjectImpl.java
ViewVC logotype

Diff of /classpath/org/omg/CORBA/portable/ObjectImpl.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by mark, Sat Jul 2 20:32:58 2005 UTC revision 1.4 by audriusa, Fri Jul 22 16:57:47 2005 UTC
# Line 185  public abstract class ObjectImpl Line 185  public abstract class ObjectImpl
185    /**    /**
186     * Invoke the operation.     * Invoke the operation.
187     *     *
    * @param target the invocation target.  
188     * @param output the stream, containing the written arguments.     * @param output the stream, containing the written arguments.
189     *     *
190     * @return the stream, from where the input parameters could be read.     * @return the stream, from where the input parameters could be read.
# Line 286  public abstract class ObjectImpl Line 285  public abstract class ObjectImpl
285     */     */
286    public void _releaseReply(InputStream stream)    public void _releaseReply(InputStream stream)
287    {    {
288      delegate.releaseReply(this, stream);      if (delegate != null)
289          delegate.releaseReply(this, stream);
290    }    }
291    
292    /**    /**
# Line 387  public abstract class ObjectImpl Line 387  public abstract class ObjectImpl
387     */     */
388    public boolean equals(java.lang.Object other)    public boolean equals(java.lang.Object other)
389    {    {
390      return delegate.equals(this, other);      if (delegate == null)
391          return this == other;
392        else
393          return delegate.equals(this, other);
394    }    }
395    
396    /**    /**
# Line 399  public abstract class ObjectImpl Line 402  public abstract class ObjectImpl
402    {    {
403      return delegate.toString(this);      return delegate.toString(this);
404    }    }
405  }  }

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26