corrected some javadoc

This commit is contained in:
jstaerk
2024-09-23 18:48:41 +02:00
parent fc4bfb4707
commit 67c433df42
4 changed files with 5 additions and 10 deletions

View File

@@ -54,8 +54,9 @@ public class ClassCode {
this(listID, code, null); this(listID, code, null);
} }
/** /***
* Set the version for the scheme returned by {@link #getListID()} * Set the version for the scheme returned by {@link #getListID()}
* @param listVersionID the scheme version
*/ */
public void setListVersionID(String listVersionID) { public void setListVersionID(String listVersionID) {
this.listVersionID = listVersionID; this.listVersionID = listVersionID;

View File

@@ -124,7 +124,7 @@ public class Product implements IZUGFeRDExportableProduct {
/*** /***
* *
* @param taxExemptionReasonText String e.g. Kleinunternehmer gemäß §19 UStG https://github.com/ZUGFeRD/mustangproject/issues/463 * @param taxExemptionReasonText String e.g. Kleinunternehmer gemäß §19 UStG https://github.com/ZUGFeRD/mustangproject/issues/463
* @return * @return fluent setter
*/ */
public Product setTaxExemptionReason(String taxExemptionReasonText) { public Product setTaxExemptionReason(String taxExemptionReasonText) {
taxExemptionReason = taxExemptionReasonText; taxExemptionReason = taxExemptionReasonText;
@@ -146,7 +146,7 @@ public class Product implements IZUGFeRDExportableProduct {
/*** /***
* *
* @param code e.g. S (normal tax), Z=zero rated, E (e.g. small business) or K (intrra community supply) see also https://github.com/ZUGFeRD/mustangproject/issues/463 * @param code e.g. S (normal tax), Z=zero rated, E (e.g. small business) or K (intrra community supply) see also https://github.com/ZUGFeRD/mustangproject/issues/463
* @return * @return fluent setter
*/ */
public Product setTaxCategoryCode(String code) { public Product setTaxCategoryCode(String code) {
taxCategoryCode = code; taxCategoryCode = code;

View File

@@ -108,6 +108,7 @@ public class VATAmount {
/** /**
* @param documentCode as String * @param documentCode as String
* @deprecated Use {@link #setCategoryCode(String)} instead * @deprecated Use {@link #setCategoryCode(String)} instead
* @return fluent setter
*/ */
@Deprecated @Deprecated
public VATAmount setDocumentCode(String documentCode) { public VATAmount setDocumentCode(String documentCode) {

View File

@@ -36,7 +36,6 @@ import java.util.stream.Stream;
/** /**
* The {@link NodeMap} contains a {@link Map} representation of DOM object * The {@link NodeMap} contains a {@link Map} representation of DOM object
* <p />
* It can be constructed either from the children of a single {@link Node} or a {@link NodeList}. * It can be constructed either from the children of a single {@link Node} or a {@link NodeList}.
*/ */
public class NodeMap { public class NodeMap {
@@ -44,7 +43,6 @@ public class NodeMap {
/** /**
* Create a new {@link NodeMap} * Create a new {@link NodeMap}
* <p />
* The {@link Node} that is passed to the constructor must not be null. * The {@link Node} that is passed to the constructor must not be null.
* The {@link NodeMap} will be empty when no child nodes are present. * The {@link NodeMap} will be empty when no child nodes are present.
* *
@@ -69,7 +67,6 @@ public class NodeMap {
/** /**
* Get matching node by {@code LocalName} * Get matching node by {@code LocalName}
* <p />
* In case more than one node matches, it is not guaranteed that the first match is selected * In case more than one node matches, it is not guaranteed that the first match is selected
* *
* @param localNames one or more {@code LocalName}s * @param localNames one or more {@code LocalName}s
@@ -81,7 +78,6 @@ public class NodeMap {
/** /**
* Get a {@link NodeMap} of the child of a matching node by {@code LocalName} * Get a {@link NodeMap} of the child of a matching node by {@code LocalName}
* <p />
* In case more than one node matches, it is not guaranteed that the first match is selected * In case more than one node matches, it is not guaranteed that the first match is selected
* *
* @param localNames one or more {@code LocalName}s * @param localNames one or more {@code LocalName}s
@@ -93,7 +89,6 @@ public class NodeMap {
/** /**
* Get the text content of a matching node * Get the text content of a matching node
* <p>
* In case more than one node matches, it is not guaranteed that the first match is selected * In case more than one node matches, it is not guaranteed that the first match is selected
* *
* @param localNames one or more {@code LocalName}s * @param localNames one or more {@code LocalName}s
@@ -105,7 +100,6 @@ public class NodeMap {
/** /**
* Get the text content of a matching node * Get the text content of a matching node
* <p>
* In case more than one node matches, it is not guaranteed that the first match is selected * In case more than one node matches, it is not guaranteed that the first match is selected
* *
* @param localNames one or more {@code LocalName}s * @param localNames one or more {@code LocalName}s
@@ -117,7 +111,6 @@ public class NodeMap {
/** /**
* Get the text content of a matching node * Get the text content of a matching node
* <p>
* In case more than one node matches, it is not guaranteed that the first match is selected * In case more than one node matches, it is not guaranteed that the first match is selected
* *
* @param localNames one or more {@code LocalName}s * @param localNames one or more {@code LocalName}s