http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/b3409c1c/content/site/apidocs/org/apache/juneau/dto/atom/AtomBuilder.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/AtomBuilder.html b/content/site/apidocs/org/apache/juneau/dto/atom/AtomBuilder.html new file mode 100644 index 0000000..f2da71b --- /dev/null +++ b/content/site/apidocs/org/apache/juneau/dto/atom/AtomBuilder.html @@ -0,0 +1,695 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!-- NewPage --> +<html lang="en"> +<head> +<!-- Generated by javadoc --> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> +<title>AtomBuilder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title> +<link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style"> +<script type="text/javascript" src="../../../../../script.js"></script> +</head> +<body> +<script type="text/javascript"><!-- + try { + if (location.href.indexOf('is-external=true') == -1) { + parent.document.title="AtomBuilder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)"; + } + } + catch(err) { + } +//--> +var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"i12":9,"i13":9,"i14":9,"i15":9,"i16":9,"i17":9}; +var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; +var altColor = "altColor"; +var rowColor = "rowColor"; +var tableTab = "tableTab"; +var activeTableTab = "activeTableTab"; +</script> +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<!-- ========= START OF TOP NAVBAR ======= --> +<div class="topNav"><a name="navbar.top"> +<!-- --> +</a> +<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> +<a name="navbar.top.firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/AtomBuilder.html">Use</a></li> +<li><a href="package-tree.html">Tree</a></li> +<li><a href="../../../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../../../index-all.html">Index</a></li> +<li><a href="../../../../../help-doc.html">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li>Prev Class</li> +<li><a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom"><span class="typeNameLink">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../../../index.html?org/apache/juneau/dto/atom/AtomBuilder.html" target="_top">Frames</a></li> +<li><a href="AtomBuilder.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_top"> +<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_top"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<div> +<ul class="subNavList"> +<li>Summary: </li> +<li>Nested | </li> +<li>Field | </li> +<li><a href="#constructor.summary">Constr</a> | </li> +<li><a href="#method.summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li>Field | </li> +<li><a href="#constructor.detail">Constr</a> | </li> +<li><a href="#method.detail">Method</a></li> +</ul> +</div> +<a name="skip.navbar.top"> +<!-- --> +</a></div> +<!-- ========= END OF TOP NAVBAR ========= --> +<!-- ======== START OF CLASS DATA ======== --> +<div class="header"> +<div class="subTitle">org.apache.juneau.dto.atom</div> +<h2 title="Class AtomBuilder" class="title">Class AtomBuilder</h2> +</div> +<div class="contentContainer"> +<ul class="inheritance"> +<li><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li> +<li> +<ul class="inheritance"> +<li>org.apache.juneau.dto.atom.AtomBuilder</li> +</ul> +</li> +</ul> +<div class="description"> +<ul class="blockList"> +<li class="blockList"> +<hr> +<br> +<pre>public class <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.36">AtomBuilder</a> +extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre> +<div class="block">Various useful static methods for creating ATOM elements. + <p> + Typically, you'll want to do a static import on this class and then call the methods like so... + <p class='bcode'> + <jk>import static</jk> org.apache.juneau.dto.atom.AtomBuilder.*; + + Feed feed = + <jsm>feed</jsm>(<js>"tag:juneau.sample.com,2013:1"</js>, <js>"Juneau ATOM specification"</js>, <js>"2013-05-08T12:29:29Z"</js>) + .subtitle(<jsm>text</jsm>(<js>"html"</js>).children(<js>"A <em>lot</em> of effort went into making this effortless"</js>)) + .links( + <jsm>link</jsm>(<js>"alternate"</js>, <js>"text/html"</js>, <js>"http://www.sample.com/"</js>).hreflang(<js>"en"</js>), + <jsm>link</jsm>(<js>"self"</js>, <js>"application/atom+xml"</js>, <js>"http://www.sample.com/feed.atom"</js>) + ); + </p> + <p> + Refer to <a href="../../../../../org/apache/juneau/dto/atom/package-summary.html"><code>org.apache.juneau.dto.atom</code></a> for further information about ATOM support.</div> +</li> +</ul> +</div> +<div class="summary"> +<ul class="blockList"> +<li class="blockList"> +<!-- ======== CONSTRUCTOR SUMMARY ======== --> +<ul class="blockList"> +<li class="blockList"><a name="constructor.summary"> +<!-- --> +</a> +<h3>Constructor Summary</h3> +<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> +<caption><span>Constructors</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colOne" scope="col">Constructor and Description</th> +</tr> +<tr class="altColor"> +<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#AtomBuilder--">AtomBuilder</a></span>()</code> </td> +</tr> +</table> +</li> +</ul> +<!-- ========== METHOD SUMMARY =========== --> +<ul class="blockList"> +<li class="blockList"><a name="method.summary"> +<!-- --> +</a> +<h3>Method Summary</h3> +<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> +<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Method and Description</th> +</tr> +<tr id="i0" class="altColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#category-java.lang.String-">category</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> term)</code> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom"><code>Category</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Category.html#term-java.lang.String-"><code>Category.term(String)</code></a> attribute.</div> +</td> +</tr> +<tr id="i1" class="rowColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Content.html" title="class in org.apache.juneau.dto.atom">Content</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#content--">content</a></span>()</code> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Content.html" title="class in org.apache.juneau.dto.atom"><code>Content</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Content.html#type-java.lang.String-"><code>Content.type(String)</code></a> attribute.</div> +</td> +</tr> +<tr id="i2" class="altColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Content.html" title="class in org.apache.juneau.dto.atom">Content</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#content-java.lang.String-">content</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> type)</code> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Content.html" title="class in org.apache.juneau.dto.atom"><code>Content</code></a> element.</div> +</td> +</tr> +<tr id="i3" class="rowColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Entry.html" title="class in org.apache.juneau.dto.atom">Entry</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#entry-org.apache.juneau.dto.atom.Id-org.apache.juneau.dto.atom.Text-java.util.Calendar-">entry</a></span>(<a href="../../../../../org/apache/juneau/dto/atom/Id.html" title="class in org.apache.juneau.dto.atom">Id</a> id, + <a href="../../../../../org/apache/juneau/dto/atom/Text.html" title="class in org.apache.juneau.dto.atom">Text</a> title, + <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Calendar.html?is-external=true" title="class or interface in java.util">Calendar</a> updated)</code> +<div class="block">Creates an <a href="../../../../../org/apache/juneau/dto/atom/Entry.html" title="class in org.apache.juneau.dto.atom"><code>Entry</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#id-org.apache.juneau.dto.atom.Id-"><code>Entry.id(Id)</code></a>, <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#title-org.apache.juneau.dto.atom.Text-"><code>Entry.title(Text)</code></a>, and <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#updated-java.util.Calendar-"><code>Entry.updated(Calendar)</code></a> attributes.</div> +</td> +</tr> +<tr id="i4" class="altColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Entry.html" title="class in org.apache.juneau.dto.atom">Entry</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#entry-java.lang.String-java.lang.String-java.lang.String-">entry</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> id, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> title, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> updated)</code> +<div class="block">Creates an <a href="../../../../../org/apache/juneau/dto/atom/Entry.html" title="class in org.apache.juneau.dto.atom"><code>Entry</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#id-org.apache.juneau.dto.atom.Id-"><code>Entry.id(Id)</code></a>, <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#title-org.apache.juneau.dto.atom.Text-"><code>Entry.title(Text)</code></a>, and <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#updated-java.util.Calendar-"><code>Entry.updated(Calendar)</code></a> attributes.</div> +</td> +</tr> +<tr id="i5" class="rowColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Feed.html" title="class in org.apache.juneau.dto.atom">Feed</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#feed-org.apache.juneau.dto.atom.Id-org.apache.juneau.dto.atom.Text-java.util.Calendar-">feed</a></span>(<a href="../../../../../org/apache/juneau/dto/atom/Id.html" title="class in org.apache.juneau.dto.atom">Id</a> id, + <a href="../../../../../org/apache/juneau/dto/atom/Text.html" title="class in org.apache.juneau.dto.atom">Text</a> title, + <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Calendar.html?is-external=true" title="class or interface in java.util">Calendar</a> updated)</code> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Feed.html" title="class in org.apache.juneau.dto.atom"><code>Feed</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Feed.html#id-org.apache.juneau.dto.atom.Id-"><code>Feed.id(Id)</code></a>, <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#title-org.apache.juneau.dto.atom.Text-"><code>Entry.title(Text)</code></a>, and <a href="../../../../../org/apache/juneau/dto/atom/Feed.html#updated-java.util.Calendar-"><code>Feed.updated(Calendar)</code></a> attributes.</div> +</td> +</tr> +<tr id="i6" class="altColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Feed.html" title="class in org.apache.juneau.dto.atom">Feed</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#feed-java.lang.String-java.lang.String-java.lang.String-">feed</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> id, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> title, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> updated)</code> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Feed.html" title="class in org.apache.juneau.dto.atom"><code>Feed</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Feed.html#id-org.apache.juneau.dto.atom.Id-"><code>Feed.id(Id)</code></a>, <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#title-org.apache.juneau.dto.atom.Text-"><code>Entry.title(Text)</code></a>, and <a href="../../../../../org/apache/juneau/dto/atom/Feed.html#updated-java.util.Calendar-"><code>Feed.updated(Calendar)</code></a> attributes.</div> +</td> +</tr> +<tr id="i7" class="rowColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Generator.html" title="class in org.apache.juneau.dto.atom">Generator</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#generator-java.lang.String-">generator</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> text)</code> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Generator.html" title="class in org.apache.juneau.dto.atom"><code>Generator</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Generator.html#text-java.lang.String-"><code>Generator.text(String)</code></a> child node.</div> +</td> +</tr> +<tr id="i8" class="altColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Icon.html" title="class in org.apache.juneau.dto.atom">Icon</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#icon-java.lang.String-">icon</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> uri)</code> +<div class="block">Creates an <a href="../../../../../org/apache/juneau/dto/atom/Icon.html" title="class in org.apache.juneau.dto.atom"><code>Icon</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Icon.html#uri-java.net.URI-"><code>Icon.uri(URI)</code></a> attribute.</div> +</td> +</tr> +<tr id="i9" class="rowColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Icon.html" title="class in org.apache.juneau.dto.atom">Icon</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#icon-java.net.URI-">icon</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> uri)</code> +<div class="block">Creates an <a href="../../../../../org/apache/juneau/dto/atom/Icon.html" title="class in org.apache.juneau.dto.atom"><code>Icon</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Icon.html#uri-java.net.URI-"><code>Icon.uri(URI)</code></a> attribute.</div> +</td> +</tr> +<tr id="i10" class="altColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Id.html" title="class in org.apache.juneau.dto.atom">Id</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#id-java.lang.String-">id</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> text)</code> +<div class="block">Creates an <a href="../../../../../org/apache/juneau/dto/atom/Id.html" title="class in org.apache.juneau.dto.atom"><code>Id</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Id.html#text-java.lang.String-"><code>Id.text(String)</code></a> child node.</div> +</td> +</tr> +<tr id="i11" class="rowColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Link.html" title="class in org.apache.juneau.dto.atom">Link</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#link-java.lang.String-java.lang.String-java.lang.String-">link</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> rel, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> type, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> href)</code> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Link.html" title="class in org.apache.juneau.dto.atom"><code>Link</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Link.html#rel-java.lang.String-"><code>Link.rel(String)</code></a>, <a href="../../../../../org/apache/juneau/dto/atom/Link.html#type-java.lang.String-"><code>Link.type(String)</code></a>, and <a href="../../../../../org/apache/juneau/dto/atom/Link.html#href-java.lang.String-"><code>Link.href(String)</code></a> attributes.</div> +</td> +</tr> +<tr id="i12" class="altColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Logo.html" title="class in org.apache.juneau.dto.atom">Logo</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#logo-java.lang.String-">logo</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> uri)</code> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Logo.html" title="class in org.apache.juneau.dto.atom"><code>Logo</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Logo.html#uri-java.net.URI-"><code>Logo.uri(URI)</code></a> attribute.</div> +</td> +</tr> +<tr id="i13" class="rowColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Logo.html" title="class in org.apache.juneau.dto.atom">Logo</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#logo-java.net.URI-">logo</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> uri)</code> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Logo.html" title="class in org.apache.juneau.dto.atom"><code>Logo</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Logo.html#uri-java.net.URI-"><code>Logo.uri(URI)</code></a> attribute.</div> +</td> +</tr> +<tr id="i14" class="altColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Person.html" title="class in org.apache.juneau.dto.atom">Person</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#person-java.lang.String-">person</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</code> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Person.html" title="class in org.apache.juneau.dto.atom"><code>Person</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Person.html#name-java.lang.String-"><code>Person.name(String)</code></a> attribute.</div> +</td> +</tr> +<tr id="i15" class="rowColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Source.html" title="class in org.apache.juneau.dto.atom">Source</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#source--">source</a></span>()</code> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Source.html" title="class in org.apache.juneau.dto.atom"><code>Source</code></a> element.</div> +</td> +</tr> +<tr id="i16" class="altColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Text.html" title="class in org.apache.juneau.dto.atom">Text</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#text--">text</a></span>()</code> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Text.html" title="class in org.apache.juneau.dto.atom"><code>Text</code></a> element.</div> +</td> +</tr> +<tr id="i17" class="rowColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/juneau/dto/atom/Text.html" title="class in org.apache.juneau.dto.atom">Text</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html#text-java.lang.String-">text</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> type)</code> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Text.html" title="class in org.apache.juneau.dto.atom"><code>Text</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Text.html#type-java.lang.String-"><code>Text.type(String)</code></a> attribute.</div> +</td> +</tr> +</table> +<ul class="blockList"> +<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> +<!-- --> +</a> +<h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3> +<code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang /Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +<div class="details"> +<ul class="blockList"> +<li class="blockList"> +<!-- ========= CONSTRUCTOR DETAIL ======== --> +<ul class="blockList"> +<li class="blockList"><a name="constructor.detail"> +<!-- --> +</a> +<h3>Constructor Detail</h3> +<a name="AtomBuilder--"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>AtomBuilder</h4> +<pre>public <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.36">AtomBuilder</a>()</pre> +</li> +</ul> +</li> +</ul> +<!-- ============ METHOD DETAIL ========== --> +<ul class="blockList"> +<li class="blockList"><a name="method.detail"> +<!-- --> +</a> +<h3>Method Detail</h3> +<a name="category-java.lang.String-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>category</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.44">category</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> term)</pre> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom"><code>Category</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Category.html#term-java.lang.String-"><code>Category.term(String)</code></a> attribute.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>term</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Category.html#term-java.lang.String-"><code>Category.term(String)</code></a> attribute.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="content--"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>content</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Content.html" title="class in org.apache.juneau.dto.atom">Content</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.53">content</a>()</pre> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Content.html" title="class in org.apache.juneau.dto.atom"><code>Content</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Content.html#type-java.lang.String-"><code>Content.type(String)</code></a> attribute.</div> +<dl> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="content-java.lang.String-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>content</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Content.html" title="class in org.apache.juneau.dto.atom">Content</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.63">content</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> type)</pre> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Content.html" title="class in org.apache.juneau.dto.atom"><code>Content</code></a> element.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>type</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Content.html#type-java.lang.String-"><code>Content.type(String)</code></a> attribute.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="entry-org.apache.juneau.dto.atom.Id-org.apache.juneau.dto.atom.Text-java.util.Calendar-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>entry</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Entry.html" title="class in org.apache.juneau.dto.atom">Entry</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.75">entry</a>(<a href="../../../../../org/apache/juneau/dto/atom/Id.html" title="class in org.apache.juneau.dto.atom">Id</a> id, + <a href="../../../../../org/apache/juneau/dto/atom/Text.html" title="class in org.apache.juneau.dto.atom">Text</a> title, + <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Calendar.html?is-external=true" title="class or interface in java.util">Calendar</a> updated)</pre> +<div class="block">Creates an <a href="../../../../../org/apache/juneau/dto/atom/Entry.html" title="class in org.apache.juneau.dto.atom"><code>Entry</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#id-org.apache.juneau.dto.atom.Id-"><code>Entry.id(Id)</code></a>, <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#title-org.apache.juneau.dto.atom.Text-"><code>Entry.title(Text)</code></a>, and <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#updated-java.util.Calendar-"><code>Entry.updated(Calendar)</code></a> attributes.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>id</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#id-org.apache.juneau.dto.atom.Id-"><code>Entry.id(Id)</code></a> attribute.</dd> +<dd><code>title</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#title-org.apache.juneau.dto.atom.Text-"><code>Entry.title(Text)</code></a> attribute.</dd> +<dd><code>updated</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#updated-java.util.Calendar-"><code>Entry.updated(Calendar)</code></a> attribute.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="entry-java.lang.String-java.lang.String-java.lang.String-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>entry</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Entry.html" title="class in org.apache.juneau.dto.atom">Entry</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.87">entry</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> id, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> title, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> updated)</pre> +<div class="block">Creates an <a href="../../../../../org/apache/juneau/dto/atom/Entry.html" title="class in org.apache.juneau.dto.atom"><code>Entry</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#id-org.apache.juneau.dto.atom.Id-"><code>Entry.id(Id)</code></a>, <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#title-org.apache.juneau.dto.atom.Text-"><code>Entry.title(Text)</code></a>, and <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#updated-java.util.Calendar-"><code>Entry.updated(Calendar)</code></a> attributes.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>id</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#id-org.apache.juneau.dto.atom.Id-"><code>Entry.id(Id)</code></a> attribute.</dd> +<dd><code>title</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#title-org.apache.juneau.dto.atom.Text-"><code>Entry.title(Text)</code></a> attribute.</dd> +<dd><code>updated</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#updated-java.util.Calendar-"><code>Entry.updated(Calendar)</code></a> attribute.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="feed-org.apache.juneau.dto.atom.Id-org.apache.juneau.dto.atom.Text-java.util.Calendar-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>feed</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Feed.html" title="class in org.apache.juneau.dto.atom">Feed</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.99">feed</a>(<a href="../../../../../org/apache/juneau/dto/atom/Id.html" title="class in org.apache.juneau.dto.atom">Id</a> id, + <a href="../../../../../org/apache/juneau/dto/atom/Text.html" title="class in org.apache.juneau.dto.atom">Text</a> title, + <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Calendar.html?is-external=true" title="class or interface in java.util">Calendar</a> updated)</pre> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Feed.html" title="class in org.apache.juneau.dto.atom"><code>Feed</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Feed.html#id-org.apache.juneau.dto.atom.Id-"><code>Feed.id(Id)</code></a>, <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#title-org.apache.juneau.dto.atom.Text-"><code>Entry.title(Text)</code></a>, and <a href="../../../../../org/apache/juneau/dto/atom/Feed.html#updated-java.util.Calendar-"><code>Feed.updated(Calendar)</code></a> attributes.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>id</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Feed.html#id-org.apache.juneau.dto.atom.Id-"><code>Feed.id(Id)</code></a> attribute.</dd> +<dd><code>title</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Feed.html#title-org.apache.juneau.dto.atom.Text-"><code>Feed.title(Text)</code></a> attribute.</dd> +<dd><code>updated</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Feed.html#updated-java.util.Calendar-"><code>Feed.updated(Calendar)</code></a> attribute.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="feed-java.lang.String-java.lang.String-java.lang.String-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>feed</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Feed.html" title="class in org.apache.juneau.dto.atom">Feed</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.111">feed</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> id, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> title, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> updated)</pre> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Feed.html" title="class in org.apache.juneau.dto.atom"><code>Feed</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Feed.html#id-org.apache.juneau.dto.atom.Id-"><code>Feed.id(Id)</code></a>, <a href="../../../../../org/apache/juneau/dto/atom/Entry.html#title-org.apache.juneau.dto.atom.Text-"><code>Entry.title(Text)</code></a>, and <a href="../../../../../org/apache/juneau/dto/atom/Feed.html#updated-java.util.Calendar-"><code>Feed.updated(Calendar)</code></a> attributes.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>id</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Feed.html#id-org.apache.juneau.dto.atom.Id-"><code>Feed.id(Id)</code></a> attribute.</dd> +<dd><code>title</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Feed.html#title-org.apache.juneau.dto.atom.Text-"><code>Feed.title(Text)</code></a> attribute.</dd> +<dd><code>updated</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Feed.html#updated-java.util.Calendar-"><code>Feed.updated(Calendar)</code></a> attribute.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="generator-java.lang.String-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>generator</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Generator.html" title="class in org.apache.juneau.dto.atom">Generator</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.121">generator</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> text)</pre> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Generator.html" title="class in org.apache.juneau.dto.atom"><code>Generator</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Generator.html#text-java.lang.String-"><code>Generator.text(String)</code></a> child node.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>text</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Generator.html#text-java.lang.String-"><code>Generator.text(String)</code></a> child node.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="icon-java.lang.String-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>icon</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Icon.html" title="class in org.apache.juneau.dto.atom">Icon</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.131">icon</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> uri)</pre> +<div class="block">Creates an <a href="../../../../../org/apache/juneau/dto/atom/Icon.html" title="class in org.apache.juneau.dto.atom"><code>Icon</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Icon.html#uri-java.net.URI-"><code>Icon.uri(URI)</code></a> attribute.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>uri</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Icon.html#uri-java.net.URI-"><code>Icon.uri(URI)</code></a> attribute.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="icon-java.net.URI-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>icon</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Icon.html" title="class in org.apache.juneau.dto.atom">Icon</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.141">icon</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> uri)</pre> +<div class="block">Creates an <a href="../../../../../org/apache/juneau/dto/atom/Icon.html" title="class in org.apache.juneau.dto.atom"><code>Icon</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Icon.html#uri-java.net.URI-"><code>Icon.uri(URI)</code></a> attribute.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>uri</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Icon.html#uri-java.net.URI-"><code>Icon.uri(URI)</code></a> attribute.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="id-java.lang.String-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>id</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Id.html" title="class in org.apache.juneau.dto.atom">Id</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.151">id</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> text)</pre> +<div class="block">Creates an <a href="../../../../../org/apache/juneau/dto/atom/Id.html" title="class in org.apache.juneau.dto.atom"><code>Id</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Id.html#text-java.lang.String-"><code>Id.text(String)</code></a> child node.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>text</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Id.html#text-java.lang.String-"><code>Id.text(String)</code></a> child node.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="link-java.lang.String-java.lang.String-java.lang.String-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>link</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Link.html" title="class in org.apache.juneau.dto.atom">Link</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.163">link</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> rel, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> type, + <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> href)</pre> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Link.html" title="class in org.apache.juneau.dto.atom"><code>Link</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Link.html#rel-java.lang.String-"><code>Link.rel(String)</code></a>, <a href="../../../../../org/apache/juneau/dto/atom/Link.html#type-java.lang.String-"><code>Link.type(String)</code></a>, and <a href="../../../../../org/apache/juneau/dto/atom/Link.html#href-java.lang.String-"><code>Link.href(String)</code></a> attributes.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>rel</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Link.html#rel-java.lang.String-"><code>Link.rel(String)</code></a> attribute.</dd> +<dd><code>type</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Link.html#type-java.lang.String-"><code>Link.type(String)</code></a> attribute.</dd> +<dd><code>href</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Link.html#href-java.lang.String-"><code>Link.href(String)</code></a> attribute.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="logo-java.lang.String-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>logo</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Logo.html" title="class in org.apache.juneau.dto.atom">Logo</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.173">logo</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> uri)</pre> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Logo.html" title="class in org.apache.juneau.dto.atom"><code>Logo</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Logo.html#uri-java.net.URI-"><code>Logo.uri(URI)</code></a> attribute.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>uri</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Logo.html#uri-java.net.URI-"><code>Logo.uri(URI)</code></a> attribute.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="logo-java.net.URI-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>logo</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Logo.html" title="class in org.apache.juneau.dto.atom">Logo</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.183">logo</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> uri)</pre> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Logo.html" title="class in org.apache.juneau.dto.atom"><code>Logo</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Logo.html#uri-java.net.URI-"><code>Logo.uri(URI)</code></a> attribute.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>uri</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Logo.html#uri-java.net.URI-"><code>Logo.uri(URI)</code></a> attribute.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="person-java.lang.String-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>person</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Person.html" title="class in org.apache.juneau.dto.atom">Person</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.193">person</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</pre> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Person.html" title="class in org.apache.juneau.dto.atom"><code>Person</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Person.html#name-java.lang.String-"><code>Person.name(String)</code></a> attribute.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>name</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Person.html#name-java.lang.String-"><code>Person.name(String)</code></a> attribute.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="source--"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>source</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Source.html" title="class in org.apache.juneau.dto.atom">Source</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.202">source</a>()</pre> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Source.html" title="class in org.apache.juneau.dto.atom"><code>Source</code></a> element.</div> +<dl> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="text--"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>text</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Text.html" title="class in org.apache.juneau.dto.atom">Text</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.211">text</a>()</pre> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Text.html" title="class in org.apache.juneau.dto.atom"><code>Text</code></a> element.</div> +<dl> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +<a name="text-java.lang.String-"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>text</h4> +<pre>public static final <a href="../../../../../org/apache/juneau/dto/atom/Text.html" title="class in org.apache.juneau.dto.atom">Text</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/AtomBuilder.html#line.221">text</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> type)</pre> +<div class="block">Creates a <a href="../../../../../org/apache/juneau/dto/atom/Text.html" title="class in org.apache.juneau.dto.atom"><code>Text</code></a> element with the specified <a href="../../../../../org/apache/juneau/dto/atom/Text.html#type-java.lang.String-"><code>Text.type(String)</code></a> attribute.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>type</code> - The <a href="../../../../../org/apache/juneau/dto/atom/Text.html#type-java.lang.String-"><code>Text.type(String)</code></a> attribute.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>The new element.</dd> +</dl> +</li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +</div> +<!-- ========= END OF CLASS DATA ========= --> +<!-- ======= START OF BOTTOM NAVBAR ====== --> +<div class="bottomNav"><a name="navbar.bottom"> +<!-- --> +</a> +<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> +<a name="navbar.bottom.firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/AtomBuilder.html">Use</a></li> +<li><a href="package-tree.html">Tree</a></li> +<li><a href="../../../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../../../index-all.html">Index</a></li> +<li><a href="../../../../../help-doc.html">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li>Prev Class</li> +<li><a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom"><span class="typeNameLink">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../../../index.html?org/apache/juneau/dto/atom/AtomBuilder.html" target="_top">Frames</a></li> +<li><a href="AtomBuilder.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_bottom"> +<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_bottom"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<div> +<ul class="subNavList"> +<li>Summary: </li> +<li>Nested | </li> +<li>Field | </li> +<li><a href="#constructor.summary">Constr</a> | </li> +<li><a href="#method.summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li>Field | </li> +<li><a href="#constructor.detail">Constr</a> | </li> +<li><a href="#method.detail">Method</a></li> +</ul> +</div> +<a name="skip.navbar.bottom"> +<!-- --> +</a></div> +<!-- ======== END OF BOTTOM NAVBAR ======= --> +<p class="legalCopy"><small>Copyright © 2017 <a href="http://www.apache.org/">Apache</a>. All rights reserved.</small></p> +</body> +</html>
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/b3409c1c/content/site/apidocs/org/apache/juneau/dto/atom/Category.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/Category.html b/content/site/apidocs/org/apache/juneau/dto/atom/Category.html index a401925..e4ccca6 100644 --- a/content/site/apidocs/org/apache/juneau/dto/atom/Category.html +++ b/content/site/apidocs/org/apache/juneau/dto/atom/Category.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Category (Apache Juneau (incubating) 6.0.1-incubating-SNAPSHOT)</title> +<title>Category (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title> <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,7 +12,7 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Category (Apache Juneau (incubating) 6.0.1-incubating-SNAPSHOT)"; + parent.document.title="Category (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)"; } } catch(err) { @@ -49,7 +49,7 @@ var activeTableTab = "activeTableTab"; </div> <div class="subNav"> <ul class="navList"> -<li>Prev Class</li> +<li><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html" title="class in org.apache.juneau.dto.atom"><span class="typeNameLink">Prev Class</span></a></li> <li><a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom"><span class="typeNameLink">Next Class</span></a></li> </ul> <ul class="navList"> @@ -115,7 +115,7 @@ var activeTableTab = "activeTableTab"; <hr> <br> <pre><a href="../../../../../org/apache/juneau/annotation/Bean.html" title="annotation in org.apache.juneau.annotation">@Bean</a>(<a href="../../../../../org/apache/juneau/annotation/Bean.html#typeName--">typeName</a>="category") -public class <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.43">Category</a> +public class <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.41">Category</a> extends <a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom">Common</a></pre> <div class="block">Represents an <code>atomCategory</code> construct in the RFC4287 specification. <p> @@ -131,12 +131,7 @@ extends <a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="c } </p> <p> - Refer to <a href="../../../../../org/apache/juneau/dto/atom/package-summary.html"><code>org.apache.juneau.dto.atom</code></a> for further information about ATOM support. - </p></div> -<dl> -<dt><span class="simpleTagLabel">Author:</span></dt> -<dd>James Bognar ([email protected])</dd> -</dl> + Refer to <a href="../../../../../org/apache/juneau/dto/atom/package-summary.html"><code>org.apache.juneau.dto.atom</code></a> for further information about ATOM support.</div> </li> </ul> </div> @@ -180,48 +175,48 @@ extends <a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="c <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> +<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Category.html#base-java.net.URI-">base</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> base)</code> +<div class="block">Sets the URI base of this object.</div> +</td> +</tr> +<tr id="i1" class="rowColor"> <td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Category.html#getLabel--">getLabel</a></span>()</code> <div class="block">Returns the category label.</div> </td> </tr> -<tr id="i1" class="rowColor"> +<tr id="i2" class="altColor"> <td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Category.html#getScheme--">getScheme</a></span>()</code> <div class="block">Returns the category scheme.</div> </td> </tr> -<tr id="i2" class="altColor"> +<tr id="i3" class="rowColor"> <td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Category.html#getTerm--">getTerm</a></span>()</code> </td> </tr> -<tr id="i3" class="rowColor"> -<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a></code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Category.html#setBase-java.net.URI-">setBase</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> base)</code> -<div class="block">Sets the URI base of this object.</div> -</td> -</tr> <tr id="i4" class="altColor"> <td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a></code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Category.html#setLabel-java.lang.String-">setLabel</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> label)</code> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Category.html#label-java.lang.String-">label</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> label)</code> <div class="block">Sets the category label.</div> </td> </tr> <tr id="i5" class="rowColor"> <td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a></code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Category.html#setLang-java.lang.String-">setLang</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> lang)</code> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Category.html#lang-java.lang.String-">lang</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> lang)</code> <div class="block">Sets the language of this object.</div> </td> </tr> <tr id="i6" class="altColor"> <td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a></code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Category.html#setScheme-java.net.URI-">setScheme</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> scheme)</code> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Category.html#scheme-java.net.URI-">scheme</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> scheme)</code> <div class="block">Sets the category scheme.</div> </td> </tr> <tr id="i7" class="rowColor"> <td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a></code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Category.html#setTerm-java.lang.String-">setTerm</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> term)</code> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Category.html#term-java.lang.String-">term</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> term)</code> <div class="block">Sets the category term.</div> </td> </tr> @@ -231,7 +226,7 @@ extends <a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="c <!-- --> </a> <h3>Methods inherited from class org.apache.juneau.dto.atom.<a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom">Common</a></h3> -<code><a href="../../../../../org/apache/juneau/dto/atom/Common.html#getBase--">getBase</a>, <a href="../../../../../org/apache/juneau/dto/atom/Common.html#getLang--">getLang</a></code></li> +<code><a href="../../../../../org/apache/juneau/dto/atom/Common.html#base-java.lang.String-">base</a>, <a href="../../../../../org/apache/juneau/dto/atom/Common.html#getBase--">getBase</a>, <a href="../../../../../org/apache/juneau/dto/atom/Common.html#getLang--">getLang</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> @@ -260,7 +255,7 @@ extends <a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="c <ul class="blockList"> <li class="blockList"> <h4>Category</h4> -<pre>public <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.53">Category</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> term)</pre> +<pre>public <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.51">Category</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> term)</pre> <div class="block">Normal constructor.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> @@ -274,7 +269,7 @@ extends <a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="c <ul class="blockListLast"> <li class="blockList"> <h4>Category</h4> -<pre>public <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.58">Category</a>()</pre> +<pre>public <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.56">Category</a>()</pre> <div class="block">Bean constructor.</div> </li> </ul> @@ -293,20 +288,21 @@ extends <a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="c <li class="blockList"> <h4>getTerm</h4> <pre><a href="../../../../../org/apache/juneau/xml/annotation/Xml.html" title="annotation in org.apache.juneau.xml.annotation">@Xml</a>(<a href="../../../../../org/apache/juneau/xml/annotation/Xml.html#format--">format</a>=<a href="../../../../../org/apache/juneau/xml/annotation/XmlFormat.html#ATTR">ATTR</a>) -public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.69">getTerm</a>()</pre> +public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.67">getTerm</a>()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>The category term.</dd> </dl> </li> </ul> -<a name="setTerm-java.lang.String-"> +<a name="term-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> -<h4>setTerm</h4> -<pre>public <a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.79">setTerm</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> term)</pre> +<h4>term</h4> +<pre><a href="../../../../../org/apache/juneau/annotation/BeanProperty.html" title="annotation in org.apache.juneau.annotation">@BeanProperty</a>(<a href="../../../../../org/apache/juneau/annotation/BeanProperty.html#name--">name</a>="term") +public <a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.78">term</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> term)</pre> <div class="block">Sets the category term.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> @@ -323,7 +319,7 @@ public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.h <li class="blockList"> <h4>getScheme</h4> <pre><a href="../../../../../org/apache/juneau/xml/annotation/Xml.html" title="annotation in org.apache.juneau.xml.annotation">@Xml</a>(<a href="../../../../../org/apache/juneau/xml/annotation/Xml.html#format--">format</a>=<a href="../../../../../org/apache/juneau/xml/annotation/XmlFormat.html#ATTR">ATTR</a>) -public <a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.90">getScheme</a>()</pre> +public <a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.89">getScheme</a>()</pre> <div class="block">Returns the category scheme.</div> <dl> <dt><span class="returnLabel">Returns:</span></dt> @@ -331,13 +327,14 @@ public <a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html? </dl> </li> </ul> -<a name="setScheme-java.net.URI-"> +<a name="scheme-java.net.URI-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> -<h4>setScheme</h4> -<pre>public <a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.100">setScheme</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> scheme)</pre> +<h4>scheme</h4> +<pre><a href="../../../../../org/apache/juneau/annotation/BeanProperty.html" title="annotation in org.apache.juneau.annotation">@BeanProperty</a>(<a href="../../../../../org/apache/juneau/annotation/BeanProperty.html#name--">name</a>="scheme") +public <a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.100">scheme</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> scheme)</pre> <div class="block">Sets the category scheme.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> @@ -362,13 +359,14 @@ public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.h </dl> </li> </ul> -<a name="setLabel-java.lang.String-"> +<a name="label-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> -<h4>setLabel</h4> -<pre>public <a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.121">setLabel</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> label)</pre> +<h4>label</h4> +<pre><a href="../../../../../org/apache/juneau/annotation/BeanProperty.html" title="annotation in org.apache.juneau.annotation">@BeanProperty</a>(<a href="../../../../../org/apache/juneau/annotation/BeanProperty.html#name--">name</a>="label") +public <a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.122">label</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> label)</pre> <div class="block">Sets the category label.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> @@ -378,18 +376,18 @@ public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.h </dl> </li> </ul> -<a name="setBase-java.net.URI-"> +<a name="base-java.net.URI-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> -<h4>setBase</h4> -<pre>public <a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.132">setBase</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> base)</pre> -<div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../../../../org/apache/juneau/dto/atom/Common.html#setBase-java.net.URI-">Common</a></code></span></div> +<h4>base</h4> +<pre>public <a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.133">base</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> base)</pre> +<div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../../../../org/apache/juneau/dto/atom/Common.html#base-java.net.URI-">Common</a></code></span></div> <div class="block">Sets the URI base of this object.</div> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> -<dd><code><a href="../../../../../org/apache/juneau/dto/atom/Common.html#setBase-java.net.URI-">setBase</a></code> in class <code><a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom">Common</a></code></dd> +<dd><code><a href="../../../../../org/apache/juneau/dto/atom/Common.html#base-java.net.URI-">base</a></code> in class <code><a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom">Common</a></code></dd> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>base</code> - The URI base of this object.</dd> <dt><span class="returnLabel">Returns:</span></dt> @@ -397,18 +395,18 @@ public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.h </dl> </li> </ul> -<a name="setLang-java.lang.String-"> +<a name="lang-java.lang.String-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> -<h4>setLang</h4> -<pre>public <a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.138">setLang</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> lang)</pre> -<div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../../../../org/apache/juneau/dto/atom/Common.html#setLang-java.lang.String-">Common</a></code></span></div> +<h4>lang</h4> +<pre>public <a href="../../../../../org/apache/juneau/dto/atom/Category.html" title="class in org.apache.juneau.dto.atom">Category</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Category.html#line.139">lang</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> lang)</pre> +<div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../../../../org/apache/juneau/dto/atom/Common.html#lang-java.lang.String-">Common</a></code></span></div> <div class="block">Sets the language of this object.</div> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> -<dd><code><a href="../../../../../org/apache/juneau/dto/atom/Common.html#setLang-java.lang.String-">setLang</a></code> in class <code><a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom">Common</a></code></dd> +<dd><code><a href="../../../../../org/apache/juneau/dto/atom/Common.html#lang-java.lang.String-">lang</a></code> in class <code><a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom">Common</a></code></dd> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>lang</code> - The language of this object.</dd> <dt><span class="returnLabel">Returns:</span></dt> @@ -444,7 +442,7 @@ public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.h </div> <div class="subNav"> <ul class="navList"> -<li>Prev Class</li> +<li><a href="../../../../../org/apache/juneau/dto/atom/AtomBuilder.html" title="class in org.apache.juneau.dto.atom"><span class="typeNameLink">Prev Class</span></a></li> <li><a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom"><span class="typeNameLink">Next Class</span></a></li> </ul> <ul class="navList"> @@ -485,6 +483,6 @@ public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.h <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> -<p class="legalCopy"><small>Copyright © 2016 <a href="http://www.apache.org/">Apache</a>. All rights reserved.</small></p> +<p class="legalCopy"><small>Copyright © 2017 <a href="http://www.apache.org/">Apache</a>. All rights reserved.</small></p> </body> </html> http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/b3409c1c/content/site/apidocs/org/apache/juneau/dto/atom/Common.html ---------------------------------------------------------------------- diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/Common.html b/content/site/apidocs/org/apache/juneau/dto/atom/Common.html index 04815b4..b52a62d 100644 --- a/content/site/apidocs/org/apache/juneau/dto/atom/Common.html +++ b/content/site/apidocs/org/apache/juneau/dto/atom/Common.html @@ -4,7 +4,7 @@ <head> <!-- Generated by javadoc --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> -<title>Common (Apache Juneau (incubating) 6.0.1-incubating-SNAPSHOT)</title> +<title>Common (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title> <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> @@ -12,13 +12,13 @@ <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { - parent.document.title="Common (Apache Juneau (incubating) 6.0.1-incubating-SNAPSHOT)"; + parent.document.title="Common (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)"; } } catch(err) { } //--> -var methods = {"i0":10,"i1":10,"i2":10,"i3":10}; +var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; @@ -125,12 +125,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html? undefinedAttribute* </p> <p> - Refer to <a href="../../../../../org/apache/juneau/dto/atom/package-summary.html"><code>org.apache.juneau.dto.atom</code></a> for further information about ATOM support. - </p></div> -<dl> -<dt><span class="simpleTagLabel">Author:</span></dt> -<dd>James Bognar ([email protected])</dd> -</dl> + Refer to <a href="../../../../../org/apache/juneau/dto/atom/package-summary.html"><code>org.apache.juneau.dto.atom</code></a> for further information about ATOM support.</div> </li> </ul> </div> @@ -167,26 +162,32 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html? <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> +<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom">Common</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Common.html#base-java.lang.String-">base</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> base)</code> +<div class="block">Sets the URI base of this object.</div> +</td> +</tr> +<tr id="i1" class="rowColor"> +<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom">Common</a></code></td> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Common.html#base-java.net.URI-">base</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> base)</code> +<div class="block">Sets the URI base of this object.</div> +</td> +</tr> +<tr id="i2" class="altColor"> <td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Common.html#getBase--">getBase</a></span>()</code> <div class="block">Returns the uri base of this object.</div> </td> </tr> -<tr id="i1" class="rowColor"> +<tr id="i3" class="rowColor"> <td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Common.html#getLang--">getLang</a></span>()</code> <div class="block">Returns the language of this object.</div> </td> </tr> -<tr id="i2" class="altColor"> +<tr id="i4" class="altColor"> <td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom">Common</a></code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Common.html#setBase-java.net.URI-">setBase</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> base)</code> -<div class="block">Sets the URI base of this object.</div> -</td> -</tr> -<tr id="i3" class="rowColor"> -<td class="colFirst"><code><a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom">Common</a></code></td> -<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Common.html#setLang-java.lang.String-">setLang</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> lang)</code> +<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/juneau/dto/atom/Common.html#lang-java.lang.String-">lang</a></span>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> lang)</code> <div class="block">Sets the language of this object.</div> </td> </tr> @@ -245,13 +246,30 @@ public <a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html? </dl> </li> </ul> -<a name="setBase-java.net.URI-"> +<a name="base-java.net.URI-"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>base</h4> +<pre><a href="../../../../../org/apache/juneau/annotation/BeanProperty.html" title="annotation in org.apache.juneau.annotation">@BeanProperty</a>(<a href="../../../../../org/apache/juneau/annotation/BeanProperty.html#name--">name</a>="base") +public <a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom">Common</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Common.html#line.64">base</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> base)</pre> +<div class="block">Sets the URI base of this object.</div> +<dl> +<dt><span class="paramLabel">Parameters:</span></dt> +<dd><code>base</code> - The URI base of this object.</dd> +<dt><span class="returnLabel">Returns:</span></dt> +<dd>This object (for method chaining).</dd> +</dl> +</li> +</ul> +<a name="base-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> -<h4>setBase</h4> -<pre>public <a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom">Common</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Common.html#line.63">setBase</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html?is-external=true" title="class or interface in java.net">URI</a> base)</pre> +<h4>base</h4> +<pre>public <a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom">Common</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Common.html#line.75">base</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> base)</pre> <div class="block">Sets the URI base of this object.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> @@ -269,7 +287,7 @@ public <a href="http://docs.oracle.com/javase/7/docs/api/java/net/URI.html? <h4>getLang</h4> <pre><a href="../../../../../org/apache/juneau/xml/annotation/Xml.html" title="annotation in org.apache.juneau.xml.annotation">@Xml</a>(<a href="../../../../../org/apache/juneau/xml/annotation/Xml.html#prefix--">prefix</a>="xml", <a href="../../../../../org/apache/juneau/xml/annotation/Xml.html#format--">format</a>=<a href="../../../../../org/apache/juneau/xml/annotation/XmlFormat.html#ATTR">ATTR</a>) -public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Common.html#line.74">getLang</a>()</pre> +public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Common.html#line.86">getLang</a>()</pre> <div class="block">Returns the language of this object.</div> <dl> <dt><span class="returnLabel">Returns:</span></dt> @@ -277,13 +295,14 @@ public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.h </dl> </li> </ul> -<a name="setLang-java.lang.String-"> +<a name="lang-java.lang.String-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> -<h4>setLang</h4> -<pre>public <a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom">Common</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Common.html#line.84">setLang</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> lang)</pre> +<h4>lang</h4> +<pre><a href="../../../../../org/apache/juneau/annotation/BeanProperty.html" title="annotation in org.apache.juneau.annotation">@BeanProperty</a>(<a href="../../../../../org/apache/juneau/annotation/BeanProperty.html#name--">name</a>="lang") +public <a href="../../../../../org/apache/juneau/dto/atom/Common.html" title="class in org.apache.juneau.dto.atom">Common</a> <a href="../../../../../src-html/org/apache/juneau/dto/atom/Common.html#line.97">lang</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> lang)</pre> <div class="block">Sets the language of this object.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> @@ -362,6 +381,6 @@ public <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.h <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> -<p class="legalCopy"><small>Copyright © 2016 <a href="http://www.apache.org/">Apache</a>. All rights reserved.</small></p> +<p class="legalCopy"><small>Copyright © 2017 <a href="http://www.apache.org/">Apache</a>. All rights reserved.</small></p> </body> </html>
