JAXB Mapping

Freak2k

Erfahrenes Mitglied
Hallo,

folgendes Szenario:

Code:
...
<topic title="myTopic">
    Hier kommt ne ganze Menge Text zom Thema (kann auch HTML enthalten)
</topic>
...

Wie wird der Text gemappt?
Worauf ist zu achten, wenn der Text HTML ist?

Code:
@XmlRootElement(name = HelpTopic.TAG)
public class HelpTopic {

	@XmlTransient
	public static final String TAG = "topic";

	private String title;	
	private String text;

	/**
	 * Creates a new HelpTopic
	 */
	public HelpTopic() {

	}

	/**
	 * Gets the title of the topic
	 * 
	 * @return The title
	 */
	@XmlAttribute(name = "title")
	public String getTitle() {
		return title;
	}

	/**
	 * Sets the title of the topic
	 * 
	 * @param title
	 *            The title
	 */
	public void setTitle(String title) {
		this.title = title;
	}

	/**
	 * Gets the text of the topic
	 * 
	 * @return The text
	 */
	public String getText() {  // <--- Was kommt hier hin
		return text;
	}

	/**
	 * Sets the text of the topic
	 * 
	 * @param text
	 *            The topic
	 */
	public void setText(String text) {
		this.text = text;
	}
}

Danke :)
 
Zuletzt bearbeitet:
Zurück