use of org.structr.api.util.html.attr.Css in project structr by structr.
the class StructrJsonHtmlWriter method beginArray.
@Override
public RestWriter beginArray() throws IOException {
// print [
currentElement.inline("span").text("[");
currentElement = currentElement.block(UL).attr(new AtDepth(CLOSE_LEVEL, new Css("collapsibleList")));
hasName = false;
return this;
}
Aggregations