use of org.eclipse.sapphire.modeling.xml.annotations.XmlBinding in project liferay-ide by liferay.
the class CDataValueBindingImpl method init.
@Override
public void init(Property property) {
super.init(property);
PropertyDef propertyDef = property.definition();
XmlBinding bindingAnnotation = propertyDef.getAnnotation(XmlBinding.class);
_path = new XmlPath(bindingAnnotation.path(), resource().getXmlNamespaceResolver());
}
use of org.eclipse.sapphire.modeling.xml.annotations.XmlBinding in project liferay-ide by liferay.
the class CDATAValueBinding method init.
@Override
public void init(Property property) {
super.init(property);
final XmlBinding bindingAnnotation = property.definition().getAnnotation(XmlBinding.class);
this.path = new XmlPath(bindingAnnotation.path(), resource().getXmlNamespaceResolver());
}
Aggregations