Repository: incubator-juneau Updated Branches: refs/heads/master fb2c1cf6b -> f96331c48
Fix hyperlinks in generated Javadocs. Project: http://git-wip-us.apache.org/repos/asf/incubator-juneau/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-juneau/commit/f96331c4 Tree: http://git-wip-us.apache.org/repos/asf/incubator-juneau/tree/f96331c4 Diff: http://git-wip-us.apache.org/repos/asf/incubator-juneau/diff/f96331c4 Branch: refs/heads/master Commit: f96331c48b407e03f61688aee3d0a6989e25136b Parents: fb2c1cf Author: JamesBognar <[email protected]> Authored: Tue Feb 7 16:12:03 2017 -0500 Committer: JamesBognar <[email protected]> Committed: Tue Feb 7 16:12:03 2017 -0500 ---------------------------------------------------------------------- .../src/main/java/org/apache/juneau/annotation/Consumes.java | 4 ++-- .../src/main/java/org/apache/juneau/annotation/Produces.java | 4 ++-- juneau-core/src/main/java/org/apache/juneau/dto/Link.java | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/f96331c4/juneau-core/src/main/java/org/apache/juneau/annotation/Consumes.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/annotation/Consumes.java b/juneau-core/src/main/java/org/apache/juneau/annotation/Consumes.java index f44a79e..30c588e 100644 --- a/juneau-core/src/main/java/org/apache/juneau/annotation/Consumes.java +++ b/juneau-core/src/main/java/org/apache/juneau/annotation/Consumes.java @@ -40,7 +40,7 @@ import org.apache.juneau.parser.*; * </p> * <p> * The media types can also be <code>media-range</code> values per - * <a href='http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1'>RFC2616/14.1</a>. + * <a class="doclink" href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">RFC2616/14.1</a>. * <p class='bcode'> * <jc>// Consumes any text</jc> * <ja>@Consumes</ja>(<js>"text\/*"</js>) @@ -61,7 +61,7 @@ public @interface Consumes { * A comma-delimited list of media types that the parser can handle. * <p> * Can contain meta-characters per the <code>media-type</code> specification of - * <a href='http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1'>RFC2616/14.1</a> + * <a class="doclink" href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">RFC2616/14.1</a> * @return The media types that the parser can handle. */ String value() default ""; http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/f96331c4/juneau-core/src/main/java/org/apache/juneau/annotation/Produces.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/annotation/Produces.java b/juneau-core/src/main/java/org/apache/juneau/annotation/Produces.java index 1032623..d4c77fb 100644 --- a/juneau-core/src/main/java/org/apache/juneau/annotation/Produces.java +++ b/juneau-core/src/main/java/org/apache/juneau/annotation/Produces.java @@ -40,7 +40,7 @@ import org.apache.juneau.serializer.*; * </p> * <p> * The media types can also be <code>media-range</code> values per - * <a href='http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1'>RFC2616/14.1</a>. + * <a class="doclink" href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">RFC2616/14.1</a>. * When meta-characters are used, you should specify the {@link #contentType()} value to * indicate the real media type value that can be set on the <code>Content-Type</code> response header. * @@ -64,7 +64,7 @@ public @interface Produces { * A comma-delimited list of the media types that the serializer can handle. * <p> * Can contain meta-characters per the <code>media-type</code> specification of - * <a href='http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1'>RFC2616/14.1</a> + * <a class="doclink" href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1">RFC2616/14.1</a> * @return The media types that the parser can handle. */ String value() default ""; http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/f96331c4/juneau-core/src/main/java/org/apache/juneau/dto/Link.java ---------------------------------------------------------------------- diff --git a/juneau-core/src/main/java/org/apache/juneau/dto/Link.java b/juneau-core/src/main/java/org/apache/juneau/dto/Link.java index 06c906b..064bedc 100644 --- a/juneau-core/src/main/java/org/apache/juneau/dto/Link.java +++ b/juneau-core/src/main/java/org/apache/juneau/dto/Link.java @@ -98,7 +98,7 @@ public class Link implements Comparable<Link> { * Same as {@link #setHref(String)} except allows for {@link MessageFormat} style arguments. * * @param href The new href. - * @param args Optional message format arguments. + * @param args Optional {@link MessageFormat}-style arguments. * @return This object (for method chaining). */ public Link setHref(String href, Object...args) {
