added some javadoc

This commit is contained in:
Jochen Stärk
2019-11-05 11:51:23 +01:00
parent 83c9ba2260
commit 17a5bf9df1
2 changed files with 4 additions and 2 deletions

View File

@@ -34,6 +34,8 @@ public class XMPSchemaZugferd extends XMPSchema {
/*** /***
* This is what needs to be added to the RDF metadata - basically the name of the embedded Zugferd file * This is what needs to be added to the RDF metadata - basically the name of the embedded Zugferd file
* @param metadata the xmp to be added to * @param metadata the xmp to be added to
* @param zfVersion which ZF version to use (2 for FX)
* @param isFacturX whether to export as Factur-X
* @param conformanceLevel e.g. conformanceLevel.EN16931 * @param conformanceLevel e.g. conformanceLevel.EN16931
* @param URN the xml URI for the XMP * @param URN the xml URI for the XMP
* @param prefix the xml namespace prefix for the XMP, zf for ZUGFeRD, fx for Factur-X * @param prefix the xml namespace prefix for the XMP, zf for ZUGFeRD, fx for Factur-X

View File

@@ -132,8 +132,8 @@ public class ZUGFeRDExporter implements Closeable {
/** /**
* Adds additional file attachments into the ZF * Adds additional file attachments into the ZF
* @param filename * @param filename the name of the attachment
* @param filecontent * @param filecontent the bytearray with the file contents
*/ */
public void addAdditionalFile(String filename, byte[] filecontent) { public void addAdditionalFile(String filename, byte[] filecontent) {
additionalFiles.put(filename, filecontent); additionalFiles.put(filename, filecontent);