File tree Expand file tree Collapse file tree
src/java/org/apache/commons/codec Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3131 * @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
3232 * @author Apache Software Foundation
3333 * @since 1.0-dev
34- * @version $Id: Base64.java,v 1.20 2004/05/24 00:21:24 ggregory Exp $
34+ * @version $Id: Base64.java,v 1.21 2004/10/20 01:37:54 ggregory Exp $
3535 */
3636public class Base64 implements BinaryEncoder , BinaryDecoder {
3737
@@ -146,7 +146,7 @@ private static boolean isBase64(byte octect) {
146146 * only valid characters within the Base64 alphabet.
147147 *
148148 * @param arrayOctect byte array to test
149- * @return true if all bytes are valid characters in the Base64
149+ * @return <code> true</code> if all bytes are valid characters in the Base64
150150 * alphabet or if the byte array is empty; false, otherwise
151151 */
152152 public static boolean isArrayByteBase64 (byte [] arrayOctect ) {
@@ -225,7 +225,7 @@ public byte[] decode(byte[] pArray) {
225225 * chunking the output into 76 character blocks.
226226 *
227227 * @param binaryData Array containing binary data to encode.
228- * @param isChunked if isChunked is true this encoder will chunk
228+ * @param isChunked if <code> true</code> this encoder will chunk
229229 * the base64 output into 76 character blocks
230230 * @return Base64-encoded data.
231231 */
Original file line number Diff line number Diff line change 3131 * </p>
3232 *
3333 * @author Apache Software Foundation
34- * @version $Id: Metaphone.java,v 1.21 2004/10/08 22:56:22 ggregory Exp $
34+ * @version $Id: Metaphone.java,v 1.22 2004/10/20 01:37:54 ggregory Exp $
3535 */
3636public class Metaphone implements StringEncoder {
3737
@@ -377,8 +377,8 @@ public String encode(String pString) {
377377 *
378378 * @param str1 First of two strings to compare
379379 * @param str2 Second of two strings to compare
380- * @return true if the metaphones of these strings are identical,
381- * false otherwise.
380+ * @return <code> true</code> if the metaphones of these strings are identical,
381+ * <code> false</code> otherwise.
382382 */
383383 public boolean isMetaphoneEqual (String str1 , String str2 ) {
384384 return metaphone (str1 ).equals (metaphone (str2 ));
You can’t perform that action at this time.
0 commit comments