package org.simantics.scl.compiler.internal.parsing.documentation; public class Paragraph extends DocumentationElement { String text; public Paragraph(String text) { this.text = text; } @Override public void toHtml(HtmlUnparsingContext context) { context.appendParagraph(text); } }