use of org.olat.course.config.ui.courselayout.attribs.AbstractLayoutAttribute in project openolat by klemens.
the class AbstractLayoutElement method prepareAttributePart.
protected void prepareAttributePart(int rel, StringBuffer sb) {
for (AbstractLayoutAttribute attrib : availableAttributes) {
if (StringHelper.containsNonWhitespace(attrib.getAttributeValue())) {
sb.append("\t");
sb.append(attrib.getRelativeCompiledAttribute(rel));
}
}
}
Aggregations