use of org.w3.x1999.xlink.HrefAttribute in project arctic-sea by 52North.
the class XlinkEncoderv1999 method encodeHrefAttribute.
private XmlObject encodeHrefAttribute(W3CHrefAttribute hrefAttribute) {
HrefAttribute xmlHrefAttribute = HrefAttribute.Factory.newInstance(getXmlOptions());
xmlHrefAttribute.setHref(hrefAttribute.getHref());
return xmlHrefAttribute;
}
Aggregations