com.alphasystem.docbook.builder.impl.inline.LiteralBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docbook-2-docx Show documentation
Show all versions of docbook-2-docx Show documentation
Alpha system commons library
The newest version!
package com.alphasystem.docbook.builder.impl.inline;
import com.alphasystem.docbook.builder.Builder;
import com.alphasystem.docbook.builder.impl.InlineBuilder;
import org.docbook.model.Literal;
import static com.alphasystem.docbook.handler.InlineHandlerFactory.LITERAL;
public class LiteralBuilder extends InlineBuilder {
public LiteralBuilder(Literal source, Builder> parent) {
super(LITERAL, source, parent);
}
}