mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-25 22:02:05 +01:00
Some clarifications in javadoc
This commit is contained in:
parent
367a07411d
commit
fc33e56ad8
2 changed files with 7 additions and 1 deletions
|
@ -109,10 +109,13 @@ public final class ProducerOptions {
|
|||
}
|
||||
|
||||
/**
|
||||
* set the comment for header in ascii armored output.
|
||||
* Set the comment header in ASCII armored output.
|
||||
* The default value is null, which means no comment header is added.
|
||||
* Multiline comments are possible using '\\n'.
|
||||
*
|
||||
* Note: If a default header comment is set using {@link org.pgpainless.util.ArmoredOutputStreamFactory#setComment(String)},
|
||||
* then both comments will be written to the produced ASCII armor.
|
||||
*
|
||||
* @param comment comment header text
|
||||
* @return builder
|
||||
*/
|
||||
|
|
|
@ -61,6 +61,9 @@ public final class ArmoredOutputStreamFactory {
|
|||
* Set a comment header value in the ASCII armor header.
|
||||
* If the comment contains newlines, it will be split into multiple header entries.
|
||||
*
|
||||
* @see org.pgpainless.encryption_signing.ProducerOptions#setComment(String) for how to set comments for
|
||||
* individual messages.
|
||||
*
|
||||
* @param commentString comment
|
||||
*/
|
||||
public static void setComment(String commentString) {
|
||||
|
|
Loading…
Reference in a new issue