processDataClass(doc, classElementIn, xmlRoot);
return;
}
// NO data class, so it is the api.
Path basePath = classElementIn.getAnnotation(Path.class);
if (basePath==null || basePath.value().isEmpty()) {
log.debug("No @Path found on " + classElementIn.getQualifiedName() + " - skipping");
return;
}
Element classElement = doc.createElement("class");
String className = classElementIn.toString();
classElement.setAttribute("name",className);
String value = basePath.value();
value = cleanOutPath(value);
classElement.setAttribute("path", value);
Api api = classElementIn.getAnnotation(Api.class);
if (api!=null) {
String shortDescription = api.value();