// TODO: implement and remove call to super
return super.parse(instance, node, value);
}
public Object getProperty(Object object, QName name) throws Exception {
Association association = (Association) object;
if (association.getValue() == null) {
// non resolveed, return the xlink:href
if (XLINK.HREF.equals(name)) {
String id = (String) association.getUserData().get("gml:id");
return "#" + id;
}
}