jdk/src/share/classes/com/sun/jndi/toolkit/ctx/Continuation.java
changeset 25808 e113d0a0fde0
parent 17725 5d515b9ffbbe
equal deleted inserted replaced
25807:6c325960c9ee 25808:e113d0a0fde0
   170      * Sets this Continuation to indicated that an error has occurred,
   170      * Sets this Continuation to indicated that an error has occurred,
   171      * and that the remaining name is rename + "/".
   171      * and that the remaining name is rename + "/".
   172      *
   172      *
   173      * This method is typically called by _nns methods that have been
   173      * This method is typically called by _nns methods that have been
   174      * given a name to process. It might process part of that name but
   174      * given a name to process. It might process part of that name but
   175      * encountered some error. Consequenetly, it would call setErrorNNS()
   175      * encountered some error. Consequently, it would call setErrorNNS()
   176      * with the remaining name. Since the _nns method was expected to
   176      * with the remaining name. Since the _nns method was expected to
   177      * operate upon the "nns" of the original name, the remaining name
   177      * operate upon the "nns" of the original name, the remaining name
   178      * must include the "nns". That's why this method adds a trailing "/".
   178      * must include the "nns". That's why this method adds a trailing "/".
   179      *<p>
   179      *<p>
   180      * After this method is called, isContinuing() returns false.
   180      * After this method is called, isContinuing() returns false.
   217      * Sets this Continuation to indicated that an error has occurred
   217      * Sets this Continuation to indicated that an error has occurred
   218      * and supply resolved information.
   218      * and supply resolved information.
   219      *
   219      *
   220      * This method is typically called by methods that have been
   220      * This method is typically called by methods that have been
   221      * given a name to process. It might process part of that name but
   221      * given a name to process. It might process part of that name but
   222      * encountered some error. Consequenetly, it would call setError()
   222      * encountered some error. Consequently, it would call setError()
   223      * with the resolved object and the remaining name.
   223      * with the resolved object and the remaining name.
   224      *<p>
   224      *<p>
   225      * After this method is called, isContinuing() returns false.
   225      * After this method is called, isContinuing() returns false.
   226      *
   226      *
   227      * @param resObj The possibly null object that was resolved to.
   227      * @param resObj The possibly null object that was resolved to.