mirror of https://github.com/apache/poi.git
fix javadoc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1870567 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1562175343
commit
9a1b75aaac
|
@ -665,8 +665,8 @@ public final class PackagingURIHelper {
|
|||
*
|
||||
* If part name is not a valid URI, it is resolved as follows:
|
||||
* <p>
|
||||
* 1. Percent-encode each open bracket ([) and close bracket (]).</li>
|
||||
* 2. Percent-encode each percent (%) character that is not followed by a hexadecimal notation of an octet value.</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.
|
||||
* 3. Un-percent-encode each percent-encoded unreserved character.
|
||||
* 4. Un-percent-encode each forward slash (/) and back slash (\).
|
||||
* 5. Convert all back slashes to forward slashes.
|
||||
|
@ -728,9 +728,10 @@ public final class PackagingURIHelper {
|
|||
* percent-encode white spaces and characters above 0x80.
|
||||
* <p>
|
||||
* Examples:
|
||||
* <blockquote><pre>
|
||||
* 'Apache POI' --> 'Apache%20POI'
|
||||
* 'Apache\u0410POI' --> 'Apache%04%10POI'
|
||||
*
|
||||
* </pre></blockquote>
|
||||
* @param s the string to encode
|
||||
* @return the encoded string
|
||||
*/
|
||||
|
|
|
@ -75,7 +75,7 @@ public class XSSFTableColumn {
|
|||
*
|
||||
* 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
|
||||
*/
|
||||
public void setId(long columnId) {
|
||||
|
@ -95,7 +95,7 @@ public class XSSFTableColumn {
|
|||
/**
|
||||
* 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
|
||||
*/
|
||||
public void setName(String columnName) {
|
||||
|
|
Loading…
Reference in New Issue