< prev index next >

src/java.naming/share/classes/com/sun/jndi/toolkit/ctx/Continuation.java

Print this page

        

*** 327,337 **** * with the resolved object so that the target context to be listed * would be called with the empty name (i.e. list the target context itself). *<p> * After this method is called, isContinuing() returns true. * ! * @param resObj The possibly null resolved object. * @param relResName The non-null resolved name relative to currCtx. * @param currCtx The non-null context from which relResName is to be resolved. */ public void setContinue(Object obj, Name relResName, Context currCtx) { setContinueAux(obj, relResName, currCtx, --- 327,337 ---- * with the resolved object so that the target context to be listed * would be called with the empty name (i.e. list the target context itself). *<p> * After this method is called, isContinuing() returns true. * ! * @param obj The possibly null resolved object. * @param relResName The non-null resolved name relative to currCtx. * @param currCtx The non-null context from which relResName is to be resolved. */ public void setContinue(Object obj, Name relResName, Context currCtx) { setContinueAux(obj, relResName, currCtx,
*** 347,357 **** * It calls setContinue() so that the operation can be continued * using this data. *<p> * After this method is called, isContinuing() returns true. * ! * @param resObj The possibly null resolved object. * @param relResName The non-null resolved name relative to currCtx. * @param currCtx The non-null context from which relResName is to be resolved. * @param remain The non-null remaining name. */ public void setContinue(Object obj, Name relResName, Context currCtx, Name remain) { --- 347,357 ---- * It calls setContinue() so that the operation can be continued * using this data. *<p> * After this method is called, isContinuing() returns true. * ! * @param obj The possibly null resolved object. * @param relResName The non-null resolved name relative to currCtx. * @param currCtx The non-null context from which relResName is to be resolved. * @param remain The non-null remaining name. */ public void setContinue(Object obj, Name relResName, Context currCtx, Name remain) {
*** 364,374 **** } /** * String overload. * ! * @param resObj The possibly null resolved object. * @param relResName The non-null resolved name relative to currCtx. * @param currCtx The non-null context from which relResName is to be resolved. * @param remain The non-null remaining name. * @see #setContinue(java.lang.Object, java.lang.String, javax.naming.Context, java.lang.String) */ --- 364,374 ---- } /** * String overload. * ! * @param obj The possibly null resolved object. * @param relResName The non-null resolved name relative to currCtx. * @param currCtx The non-null context from which relResName is to be resolved. * @param remain The non-null remaining name. * @see #setContinue(java.lang.Object, java.lang.String, javax.naming.Context, java.lang.String) */
< prev index next >