Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C58B5200D26 for ; Fri, 20 Oct 2017 19:35:33 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C2B54160BF0; Fri, 20 Oct 2017 17:35:33 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 433591609ED for ; Fri, 20 Oct 2017 19:35:31 +0200 (CEST) Received: (qmail 6680 invoked by uid 500); 20 Oct 2017 17:35:30 -0000 Mailing-List: contact commits-help@juneau.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@juneau.apache.org Delivered-To: mailing list commits@juneau.apache.org Received: (qmail 6671 invoked by uid 99); 20 Oct 2017 17:35:30 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Oct 2017 17:35:30 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 6C9DF1A04A9 for ; Fri, 20 Oct 2017 17:35:29 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.221 X-Spam-Level: X-Spam-Status: No, score=-4.221 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_SHORT=0.001, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id ywG4Sxlx01wG for ; Fri, 20 Oct 2017 17:35:05 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 9AB2E60F48 for ; Fri, 20 Oct 2017 17:34:41 +0000 (UTC) Received: (qmail 2473 invoked by uid 99); 20 Oct 2017 17:34:38 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Oct 2017 17:34:38 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2C9CAE02F3; Fri, 20 Oct 2017 17:34:37 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jamesbognar@apache.org To: commits@juneau.incubator.apache.org Date: Fri, 20 Oct 2017 17:35:16 -0000 Message-Id: <1f83c1e93b954e95aadbdbd61be07718@git.apache.org> In-Reply-To: <5fb82b3db6fa4b08817d465b572ee488@git.apache.org> References: <5fb82b3db6fa4b08817d465b572ee488@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [41/51] [partial] incubator-juneau-website git commit: Update javadocs. archived-at: Fri, 20 Oct 2017 17:35:34 -0000 http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/db550d07/content/site/apidocs/org/apache/juneau/dto/LinkString.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/dto/LinkString.html b/content/site/apidocs/org/apache/juneau/dto/LinkString.html new file mode 100644 index 0000000..aef84cc --- /dev/null +++ b/content/site/apidocs/org/apache/juneau/dto/LinkString.html @@ -0,0 +1,492 @@ + + + + + + +LinkString (Apache Juneau 7.0.0-SNAPSHOT) + + + + + + + + + + + +
+
org.apache.juneau.dto
+

Class LinkString

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Comparable<LinkString>
    +
    +
    +
    +
    @HtmlLink(nameProperty="name",
    +          hrefProperty="href")
    +public class LinkString
    +extends Object
    +implements Comparable<LinkString>
    +
    Simple bean that implements a hyperlink for the HTML serializer. + +

    + The name and url properties correspond to the following parts of a hyperlink in an HTML document... +

    + <a href='href'>name</a> +

    + +

    + When encountered by the HtmlSerializer class, this object gets converted to a hyperlink. + All other serializers simply convert it to a simple bean.

    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LinkString

        +
        public LinkString()
        +
        No-arg constructor.
        +
      • +
      + + + +
        +
      • +

        LinkString

        +
        public LinkString(String name,
        +                  String href,
        +                  Object... hrefArgs)
        +
        Constructor.
        +
        +
        Parameters:
        +
        name - Corresponds to the text inside of the <A> element.
        +
        href - Corresponds to the value of the href attribute of the <A> element.
        +
        hrefArgs - Optional arguments for MessageFormat style arguments in the href.
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getName

        +
        public String getName()
        +
        Bean property getter: name. + +

        + Corresponds to the text inside of the <A> element.

        +
        +
        Returns:
        +
        The value of the name property on this bean, or null if it is not set.
        +
        +
      • +
      + + + +
        +
      • +

        setName

        +
        public LinkString setName(String name)
        +
        Bean property setter: name.
        +
        +
        Parameters:
        +
        name - The new value for the name property on this bean.
        +
        Returns:
        +
        This object (for method chaining).
        +
        +
      • +
      + + + +
        +
      • +

        getHref

        +
        public String getHref()
        +
        Bean property getter: href. + +

        + Corresponds to the value of the href attribute of the <A> element.

        +
        +
        Returns:
        +
        The value of the href property on this bean, or null if it is not set.
        +
        +
      • +
      + + + +
        +
      • +

        setHref

        +
        public LinkString setHref(String href)
        +
        Bean property setter: href.
        +
        +
        Parameters:
        +
        href - The new value for the href property on this bean.
        +
        Returns:
        +
        This object (for method chaining).
        +
        +
      • +
      + + + + + + + + + + + + + + + + + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2017 Apache. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/db550d07/content/site/apidocs/org/apache/juneau/dto/ResultSetList.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/dto/ResultSetList.html b/content/site/apidocs/org/apache/juneau/dto/ResultSetList.html index 3f843dd..72f79a9 100644 --- a/content/site/apidocs/org/apache/juneau/dto/ResultSetList.html +++ b/content/site/apidocs/org/apache/juneau/dto/ResultSetList.html @@ -4,7 +4,7 @@ -ResultSetList (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT) +ResultSetList (Apache Juneau 7.0.0-SNAPSHOT) @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/db550d07/content/site/apidocs/org/apache/juneau/dto/atom/package-summary.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/package-summary.html b/content/site/apidocs/org/apache/juneau/dto/atom/package-summary.html index db78f12..18e495d 100644 --- a/content/site/apidocs/org/apache/juneau/dto/atom/package-summary.html +++ b/content/site/apidocs/org/apache/juneau/dto/atom/package-summary.html @@ -4,7 +4,7 @@ -org.apache.juneau.dto.atom (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT) +org.apache.juneau.dto.atom (Apache Juneau 7.0.0-SNAPSHOT) @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/db550d07/content/site/apidocs/org/apache/juneau/dto/cognos/package-summary.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/dto/cognos/package-summary.html b/content/site/apidocs/org/apache/juneau/dto/cognos/package-summary.html index 5d940a1..f757c14 100644 --- a/content/site/apidocs/org/apache/juneau/dto/cognos/package-summary.html +++ b/content/site/apidocs/org/apache/juneau/dto/cognos/package-summary.html @@ -4,7 +4,7 @@ -org.apache.juneau.dto.cognos (Apache Juneau (incubating) 6.4.1-incubating-SNAPSHOT) +org.apache.juneau.dto.cognos (Apache Juneau 7.0.0-SNAPSHOT) @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@