blob: 572e08a5230b040b95efef3d557391133c7545e1 [file] [log] [blame]
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance *
// * with the License. You may obtain a copy of the License at *
// * *
// * http://www.apache.org/licenses/LICENSE-2.0 *
// * *
// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an *
// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the *
// * specific language governing permissions and limitations under the License. *
// ***************************************************************************************************************************
package org.apache.juneau.dto.atom;
import static org.apache.juneau.xml.annotation.XmlFormat.*;
import org.apache.juneau.annotation.*;
import org.apache.juneau.xml.annotation.*;
/**
* Represents an <code>atomTextConstruct</code> construct in the RFC4287 specification.
*
* <h6 class='figure'>Schema</h6>
* <p class='bcode'>
* atomTextConstruct = atomPlainTextConstruct | atomXHTMLTextConstruct
*
* atomPlainTextConstruct =
* atomCommonAttributes,
* attribute type { "text" | "html" }?,
* text
*
* atomXHTMLTextConstruct =
* atomCommonAttributes,
* attribute type { "xhtml" },
* xhtmlDiv
*
* xhtmlDiv = element xhtml:div {
* (attribute * { text }
* | text
* | anyXHTML)*
* }
* </p>
*
* <h6 class='topic'>Additional Information</h6>
* <ul class='doctree'>
* <li class='link'>
* <a class='doclink' href='../../../../../overview-summary.html#DTOs'>Juneau Data Transfer Objects
* (org.apache.juneau.dto)</a>
* <ul>
* <li class='sublink'>
* <a class='doclink' href='../../../../../overview-summary.html#DTOs.Atom'>Atom</a>
* </ul>
* </li>
* <li class='jp'>
* <a class='doclink' href='package-summary.html#TOC'>org.apache.juneau.dto.atom</a>
* </li>
* </ul>
*/
@SuppressWarnings("hiding")
public class Text extends Common {
private String type;
private String text;
/**
* Normal content.
*
* @param type The content type of this content.
*/
public Text(String type) {
type(type);
}
/** Bean constructor. */
public Text() {}
//--------------------------------------------------------------------------------
// Bean properties
//--------------------------------------------------------------------------------
/**
* Returns the content type of this content.
*
* @return The content type of this content.
*/
@Xml(format=ATTR)
public String getType() {
return type;
}
/**
* Sets the content type of this content.
*
* <p>
* Must be one of the following:
* <ul>
* <li><js>"text"</js>
* <li><js>"html"</js>
* <li><js>"xhtml"</js>
* <li><jk>null</jk> (defaults to <js>"text"</js>)
* </ul>
*
* @param type The content type of this content.
* @return This object (for method chaining).
*/
@BeanProperty("type")
public Text type(String type) {
this.type = type;
return this;
}
/**
* Returns the content of this content.
*
* @return The content of this content.
*/
@Xml(format=XMLTEXT)
public String getText() {
return text;
}
/**
* Sets the content of this content.
*
* @param text The content of this content.
* @return This object (for method chaining).
*/
@BeanProperty("text")
public Text text(String text) {
this.text = text;
return this;
}
//--------------------------------------------------------------------------------
// Overridden setters (to simplify method chaining)
//--------------------------------------------------------------------------------
@Override /* Common */
public Text base(Object base) {
super.base(base);
return this;
}
@Override /* Common */
public Text lang(String lang) {
super.lang(lang);
return this;
}
}