Skip to content

Commit

Permalink
Updates the text from General to Overview in order to comply with the…
Browse files Browse the repository at this point in the history
… CCSDS Standard templates
  • Loading branch information
CesarCoelho committed Sep 24, 2024
1 parent e7d151b commit da8c645
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public void compile(String destFolderName, SpecificationType spec,
// create services
for (ServiceType service : area.getService()) {
docxServiceFile.addTitle(2, "Service: ", service.getName(), "SERVICE", true);
docxServiceFile.addTitle(3, "General");
docxServiceFile.addTitle(3, "Overview");
docxServiceFile.addComment(service.getComment());
drawServiceTable(docxServiceFile, area, service);

Expand Down Expand Up @@ -183,7 +183,7 @@ public void compile(String destFolderName, SpecificationType spec,
for (CapabilitySetType cSet : service.getCapabilitySet()) {
for (OperationType op : cSet.getSendIPOrSubmitIPOrRequestIP()) {
docxServiceFile.addTitle(3, "OPERATION: ", op.getName(), "OPERATION_" + service.getName(), true);
docxServiceFile.addTitle(4, "General");
docxServiceFile.addTitle(4, "Overview");
docxServiceFile.addComment(op.getComment());
drawOperationTable(docxServiceFile, area, service, op);
addOperationStructureDetails(docxServiceFile, op);
Expand Down

0 comments on commit da8c645

Please sign in to comment.