use of org.mule.runtime.module.extension.internal.capability.xml.schema.model.Documentation in project mule by mulesoft.
the class SchemaBuilder method createDocAnnotation.
Annotation createDocAnnotation(String content) {
if (StringUtils.isBlank(content)) {
return null;
}
Annotation annotation = new Annotation();
Documentation doc = new Documentation();
doc.getContent().add(content);
annotation.getAppinfoOrDocumentation().add(doc);
return annotation;
}
Aggregations