use of com.runwaysdk.dataaccess.attributes.entity.AttributeLocal in project geoprism-registry by terraframe.
the class LocalizedValueConverter method populate.
public static void populate(MetadataDAO mdClass, String attributeName, LocalizedValue label) {
AttributeLocal attributeLocal = (AttributeLocal) mdClass.getAttribute(attributeName);
LocalStruct struct = (LocalStruct) BusinessFacade.get(attributeLocal.getStructDAO());
populate(struct, label);
}
Aggregations