aboutsummaryrefslogtreecommitdiff
path: root/src/share/classes/java/security/Certificate.java
diff options
context:
space:
mode:
authorjuh <none@none>2013-06-28 10:48:02 -0700
committerjuh <none@none>2013-06-28 10:48:02 -0700
commit699337b87c072c8cb9b9e3fef396cdbf4ec657f2 (patch)
tree8a41c1f4f2b9e2cef344b747f9463222f18f47b8 /src/share/classes/java/security/Certificate.java
parent2847c2816238f145acb4c4a98df9c509c2e164f3 (diff)
downloadjdk8u_jdk-699337b87c072c8cb9b9e3fef396cdbf4ec657f2.tar.gz
8019360: Cleanup of the javadoc <code> tag in java.security.*
Summary: Convert to {@code ...} tags. convert package.html to package-info.java. Reviewed-by: darcy
Diffstat (limited to 'src/share/classes/java/security/Certificate.java')
-rw-r--r--src/share/classes/java/security/Certificate.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/share/classes/java/security/Certificate.java b/src/share/classes/java/security/Certificate.java
index 000a5e0bb5..489c6d620a 100644
--- a/src/share/classes/java/security/Certificate.java
+++ b/src/share/classes/java/security/Certificate.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2006, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -96,7 +96,7 @@ public interface Certificate {
/**
* Encodes the certificate to an output stream in a format that can
- * be decoded by the <code>decode</code> method.
+ * be decoded by the {@code decode} method.
*
* @param stream the output stream to which to encode the
* certificate.
@@ -115,8 +115,8 @@ public interface Certificate {
/**
* Decodes a certificate from an input stream. The format should be
- * that returned by <code>getFormat</code> and produced by
- * <code>encode</code>.
+ * that returned by {@code getFormat} and produced by
+ * {@code encode}.
*
* @param stream the input stream from which to fetch the data
* being decoded.
@@ -137,8 +137,8 @@ public interface Certificate {
/**
* Returns the name of the coding format. This is used as a hint to find
* an appropriate parser. It could be "X.509", "PGP", etc. This is
- * the format produced and understood by the <code>encode</code>
- * and <code>decode</code> methods.
+ * the format produced and understood by the {@code encode}
+ * and {@code decode} methods.
*
* @return the name of the coding format.
*/