jdk/src/share/classes/java/nio/charset/Charset-X-Coder.java.template
changeset 18156 edb590d448c5
parent 17723 ae7be7852a99
child 18164 68f1bc4eadd4
equal deleted inserted replaced
18155:889970e5b728 18156:edb590d448c5
   258      *
   258      *
   259      * <p> This method invokes the {@link #implReplaceWith implReplaceWith}
   259      * <p> This method invokes the {@link #implReplaceWith implReplaceWith}
   260      * method, passing the new replacement, after checking that the new
   260      * method, passing the new replacement, after checking that the new
   261      * replacement is acceptable.  </p>
   261      * replacement is acceptable.  </p>
   262      *
   262      *
   263      * @param  newReplacement
   263      * @param  newReplacement  The replacement value
   264      *
   264      *
   265 #if[decoder]
   265 #if[decoder]
   266      *         The new replacement; must not be <tt>null</tt>
   266      *         The new replacement; must not be <tt>null</tt>
   267      *         and must have non-zero length
   267      *         and must have non-zero length
   268 #end[decoder]
   268 #end[decoder]
   303      *
   303      *
   304      * <p> The default implementation of this method does nothing.  This method
   304      * <p> The default implementation of this method does nothing.  This method
   305      * should be overridden by $coder$s that require notification of changes to
   305      * should be overridden by $coder$s that require notification of changes to
   306      * the replacement.  </p>
   306      * the replacement.  </p>
   307      *
   307      *
   308      * @param  newReplacement
   308      * @param  newReplacement    The replacement value
   309      */
   309      */
   310     protected void implReplaceWith($replType$ newReplacement) {
   310     protected void implReplaceWith($replType$ newReplacement) {
   311     }
   311     }
   312 
   312 
   313 #if[encoder]
   313 #if[encoder]