Skip to content

Commit

Permalink
Improves the generation of the docx files
Browse files Browse the repository at this point in the history
  • Loading branch information
CesarCoelho committed Dec 13, 2024
1 parent 51fb2b3 commit 4db8e31
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public void generate(String destFolderName, XmlSpecification xml,
for (CapabilitySetType cSet : service.getCapabilitySet()) {
for (OperationType op : cSet.getSendIPOrSubmitIPOrRequestIP()) {
docxServiceFile.addPageBreak();
docxServiceFile.addTitle(3, "OPERATION: ", op.getName(), "OPERATION_" + service.getName(), true);
docxServiceFile.addTitle(3, "Operation: ", op.getName(), "OPERATION_" + service.getName(), true);
docxServiceFile.addTitle(4, "Overview");
docxServiceFile.addComment(op.getComment());
drawOperationTable(docxServiceFile, area, service, op);
Expand Down Expand Up @@ -1022,7 +1022,7 @@ private void createEnumerationClass(DocxBaseWriter docxFile, EnumerationType enu

logger.info("Creating enumeration class " + enumName);

docxFile.addTitle(3, "ENUMERATION: ", enumName, "DATATYPE", true);
docxFile.addTitle(3, "Enumeration: ", enumName, "DATATYPE", true);

if ((null != enumeration.getComment()) && (0 < enumeration.getComment().length())) {
docxFile.addComment(enumeration.getComment());
Expand Down

0 comments on commit 4db8e31

Please sign in to comment.