diff --git a/java/core/src/main/java/org/brapi/schematools/core/utils/BrAPITClassCacheUtil.java b/java/core/src/main/java/org/brapi/schematools/core/utils/BrAPITClassCacheUtil.java index b006b4f..8811ea0 100644 --- a/java/core/src/main/java/org/brapi/schematools/core/utils/BrAPITClassCacheUtil.java +++ b/java/core/src/main/java/org/brapi/schematools/core/utils/BrAPITClassCacheUtil.java @@ -14,9 +14,9 @@ * Additional classes are added to the cached depending on the subclass of {@link BrAPIClass} * For {@link BrAPIObjectType} utility checks the properties and * tries to cache any that are the return type of these properties {@link BrAPIClass}es. - * If an {@link BrAPIArrayType} is encountered then the {@link BrAPIArrayType#getItems()} is + * If an {@link BrAPIArrayType} is encountered then the {@see BrAPIArrayType#getItems()} is * checked recursively to be included in the cache. - * For {@link BrAPIOneOfType} it is added to the cache and any of {@link BrAPIOneOfType#getPossibleTypes()} + * For {@link BrAPIOneOfType} it is added to the cache and any of {@see BrAPIOneOfType#getPossibleTypes()} * are checked recursively to be included in the cache. * {@link BrAPIAllOfType} are ignored. */ diff --git a/java/core/src/main/java/org/brapi/schematools/core/xlsx/XSSFWorkbookGenerator.java b/java/core/src/main/java/org/brapi/schematools/core/xlsx/XSSFWorkbookGenerator.java index 07cbac1..783faf9 100644 --- a/java/core/src/main/java/org/brapi/schematools/core/xlsx/XSSFWorkbookGenerator.java +++ b/java/core/src/main/java/org/brapi/schematools/core/xlsx/XSSFWorkbookGenerator.java @@ -56,6 +56,7 @@ public XSSFWorkbookGenerator(Path outputPath) { * Creates a XSSFWorkbookGenerator using a default {@link BrAPISchemaReader} and * the provided {@link XSSFWorkbookGenerator}. * @param options The options to be used in the generation. + * @param outputPath the path of the output file or directory */ public XSSFWorkbookGenerator(XSSFWorkbookGeneratorOptions options, Path outputPath) { this(new BrAPISchemaReader(), options, outputPath) ;