File tree Expand file tree Collapse file tree
src/java/org/apache/commons/codec/net Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2626/**
2727 * <p>
2828 * The "B" encoding is identical to the Base64 encoding defined by <a href="http://www.ietf.org/rfc/rfc1521.txt">RFC
29- * 1521 </a> and allows a character set to be specified.
29+ * 1521</a> and allows a character set to be specified.
3030 * </p>
3131 *
3232 * <p>
33- * <a href="http://www.ietf.org/rfc/rfc1522.txt">RFC 1522 </a> describes techniques to allow the encoding of non-ASCII
33+ * <a href="http://www.ietf.org/rfc/rfc1522.txt">RFC 1522</a> describes techniques to allow the encoding of non-ASCII
3434 * text in various portions of a RFC 822 [2] message header, in a manner which is unlikely to confuse existing message
3535 * handling software.
3636 * </p>
3737 *
38- * @see <a href="http://www.ietf.org/rfc/rfc1522.txt"> MIME (Multipurpose Internet Mail Extensions) Part Two: Message
39- * Header Extensions for Non-ASCII Text </a>
38+ * @see <a href="http://www.ietf.org/rfc/rfc1522.txt">MIME (Multipurpose Internet Mail Extensions) Part Two: Message
39+ * Header Extensions for Non-ASCII Text</a>
4040 *
4141 * @author Apache Software Foundation
4242 * @since 1.3
43- * @version $Id: BCodec.java,v 1.3 2004/04/09 22:21:07 ggregory Exp $
43+ * @version $Id: BCodec.java,v 1.4 2004/04/13 22:02:37 ggregory Exp $
4444 */
4545public class BCodec extends RFC1522Codec implements StringEncoder , StringDecoder {
4646 /**
@@ -62,7 +62,7 @@ public BCodec() {
6262 * the default string charset to use.
6363 *
6464 * @see <a href="http://java.sun.com/j2se/1.3/docs/api/java/lang/package-summary.html#charenc">JRE character
65- * encoding names </a>
65+ * encoding names</a>
6666 */
6767 public BCodec (final String charset ) {
6868 super ();
Original file line number Diff line number Diff line change 2727/**
2828 * <p>
2929 * The "Q" encoding is similar to the Quoted-Printable content-transfer-encoding defined in <a
30- * href="http://www.ietf.org/rfc/rfc1521.txt">RFC 1521 </a>. It is designed to allow text containing mostly ASCII
30+ * href="http://www.ietf.org/rfc/rfc1521.txt">RFC 1521</a>. It is designed to allow text containing mostly ASCII
3131 * characters to be decipherable on an ASCII terminal without decoding.
3232 * </p>
3333 *
3434 * <p>
35- * <a href="http://www.ietf.org/rfc/rfc1522.txt">RFC 1522 </a> describes techniques to allow the encoding of non-ASCII
35+ * <a href="http://www.ietf.org/rfc/rfc1522.txt">RFC 1522</a> describes techniques to allow the encoding of non-ASCII
3636 * text in various portions of a RFC 822 [2] message header, in a manner which is unlikely to confuse existing message
3737 * handling software.
3838 * </p>
3939 *
40- * @see <a href="http://www.ietf.org/rfc/rfc1522.txt"> MIME (Multipurpose Internet Mail Extensions) Part Two: Message
41- * Header Extensions for Non-ASCII Text </a>
40+ * @see <a href="http://www.ietf.org/rfc/rfc1522.txt">MIME (Multipurpose Internet Mail Extensions) Part Two: Message
41+ * Header Extensions for Non-ASCII Text</a>
4242 *
4343 * @author Apache Software Foundation
4444 * @since 1.3
45- * @version $Id: QCodec.java,v 1.3 2004/04/09 22:21:07 ggregory Exp $
45+ * @version $Id: QCodec.java,v 1.4 2004/04/13 22:03:11 ggregory Exp $
4646 */
4747public class QCodec extends RFC1522Codec implements StringEncoder , StringDecoder {
4848 /**
@@ -118,7 +118,7 @@ public QCodec() {
118118 * the default string charset to use.
119119 *
120120 * @see <a href="http://java.sun.com/j2se/1.3/docs/api/java/lang/package-summary.html#charenc">JRE character
121- * encoding names </a>
121+ * encoding names</a>
122122 */
123123 public QCodec (final String charset ) {
124124 super ();
You can’t perform that action at this time.
0 commit comments