XJC generates `getvalue` instead of `getValue` for `PCData`-Elements. DTD: ```dtd <!ELEMENT AnElement (#PCDATA)> ``` Generated Code: ```java /** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) @XmlRootElement(name = "AnElement") public class AnElement { @XmlValue protected String value; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getvalue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setvalue(String value) { this.value = value; } } ```