com.alphasystem.docbook.builder.impl.block.OrderedListBuilder 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 org.docbook.model.OrderedList;
import java.util.ArrayList;
import java.util.List;
public class OrderedListBuilder extends ListBuilder {
public OrderedListBuilder(OrderedList source, Builder> parent) {
super(source, parent);
}
@Override
protected void setListStyleName() {
this.listStyleName = source.getNumeration().value();
}
@Override
protected List