package org.activityinfo.io.xform.form; import org.activityinfo.io.xform.Namespaces; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; @XmlType(propOrder = { "title", "model"}) public class Head { private String title; private Model model = new Model(); @XmlElement(namespace = Namespaces.XHTML) public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } @XmlElement public Model getModel() { return model; } public void setModel(Model model) { this.model = model; } }