com.alphasystem.docbook.builder.impl.block.NoteBuilder 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.block;
import com.alphasystem.docbook.builder.Builder;
import com.alphasystem.docbook.model.Admonition;
import org.docbook.model.Note;
public class NoteBuilder extends AdmonitionBuilder {
public NoteBuilder(Note source, Builder> parent) {
super(Admonition.NOTE, source, parent);
}
}