Support sectionLabelIncludesComponentLabel in autopdf.

This commit is contained in:
dcramer
2013-01-02 16:56:24 -06:00
parent 0e1044158d
commit 9792dcc831
4 changed files with 20 additions and 2 deletions

View File

@@ -112,6 +112,7 @@ public class PDFBuilder {
private String chapterAutolabel;
private String appendixAutolabel;
private String sectionAutolabel;
private String sectionLabelIncludesComponentLabel;
private String formalProcedures;
private String generateToc;
private String tocMaxDepth;
@@ -349,6 +350,9 @@ public class PDFBuilder {
if(null != sectionAutolabel){
transformer.setParameter("section.autolabel", sectionAutolabel);
}
if(null != sectionLabelIncludesComponentLabel){
transformer.setParameter("section.label.includes.component.label", sectionLabelIncludesComponentLabel);
}
if(null != chapterAutolabel){
transformer.setParameter("chapter.autolabel", chapterAutolabel);
}
@@ -631,6 +635,14 @@ public class PDFBuilder {
public void setSectionAutolabel(String sectionAutolabel) {
this.sectionAutolabel = sectionAutolabel;
}
public String getSectionLabelIncludesComponentLabel() {
return sectionLabelIncludesComponentLabel;
}
public void setSectionLabelIncludesComponentLabel(String sectionLabelIncludesComponentLabel) {
this.sectionLabelIncludesComponentLabel = sectionLabelIncludesComponentLabel;
}
public String getFormalProcedures() {
return formalProcedures;
}