fix javadoc

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1870567 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Axel Howind 2019-11-29 02:30:19 +00:00
parent 1562175343
commit 9a1b75aaac
2 changed files with 6 additions and 5 deletions

View File

@ -665,8 +665,8 @@ public final class PackagingURIHelper {
* *
* If part name is not a valid URI, it is resolved as follows: * If part name is not a valid URI, it is resolved as follows:
* <p> * <p>
* 1. Percent-encode each open bracket ([) and close bracket (]).</li> * 1. Percent-encode each open bracket ([) and close bracket (]).
* 2. Percent-encode each percent (%) character that is not followed by a hexadecimal notation of an octet value.</li> * 2. Percent-encode each percent (%) character that is not followed by a hexadecimal notation of an octet value.
* 3. Un-percent-encode each percent-encoded unreserved character. * 3. Un-percent-encode each percent-encoded unreserved character.
* 4. Un-percent-encode each forward slash (/) and back slash (\). * 4. Un-percent-encode each forward slash (/) and back slash (\).
* 5. Convert all back slashes to forward slashes. * 5. Convert all back slashes to forward slashes.
@ -728,9 +728,10 @@ public final class PackagingURIHelper {
* percent-encode white spaces and characters above 0x80. * percent-encode white spaces and characters above 0x80.
* <p> * <p>
* Examples: * Examples:
* <blockquote><pre>
* 'Apache POI' --> 'Apache%20POI' * 'Apache POI' --> 'Apache%20POI'
* 'Apache\u0410POI' --> 'Apache%04%10POI' * 'Apache\u0410POI' --> 'Apache%04%10POI'
* * </pre></blockquote>
* @param s the string to encode * @param s the string to encode
* @return the encoded string * @return the encoded string
*/ */

View File

@ -75,7 +75,7 @@ public class XSSFTableColumn {
* *
* It is up to the caller to enforce the uniqueness of the id. * It is up to the caller to enforce the uniqueness of the id.
* *
* @return the column id * @param columnId the column id
* @since 4.0.0 * @since 4.0.0
*/ */
public void setId(long columnId) { public void setId(long columnId) {
@ -95,7 +95,7 @@ public class XSSFTableColumn {
/** /**
* Get the name of the column, which is is unique per table. * Get the name of the column, which is is unique per table.
* *
* @return the column name * @param columnName the column name
* @since 4.0.0 * @since 4.0.0
*/ */
public void setName(String columnName) { public void setName(String columnName) {