mirror of https://github.com/apache/poi.git
JavaDoc fixes from #54731 from Dominik Stadler
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1492267 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6e7b5eec64
commit
38691d40ab
|
@ -171,7 +171,7 @@ public final class ColumnInfoRecordsAggregate extends RecordAggregate {
|
||||||
/**
|
/**
|
||||||
* 'Collapsed' state is stored in a single column col info record immediately after the outline group
|
* 'Collapsed' state is stored in a single column col info record immediately after the outline group
|
||||||
* @param idx
|
* @param idx
|
||||||
* @return
|
* @return true, if the column is collapsed, false otherwise.
|
||||||
*/
|
*/
|
||||||
private boolean isColumnGroupCollapsed(int idx) {
|
private boolean isColumnGroupCollapsed(int idx) {
|
||||||
int endOfOutlineGroupIdx = findEndOfColumnOutlineGroup(idx);
|
int endOfOutlineGroupIdx = findEndOfColumnOutlineGroup(idx);
|
||||||
|
|
|
@ -107,7 +107,7 @@ public class Finance {
|
||||||
* @return <code>double</code> representing principal portion of payment.
|
* @return <code>double</code> representing principal portion of payment.
|
||||||
*
|
*
|
||||||
* @see #pmt(double, int, double, double, int)
|
* @see #pmt(double, int, double, double, int)
|
||||||
* @see #ipmt(double, int, int, double, double, boolean)
|
* @see #ipmt(double, int, int, double, double, int)
|
||||||
*/
|
*/
|
||||||
static public double ppmt(double r, int per, int nper, double pv, double fv, int type) {
|
static public double ppmt(double r, int per, int nper, double pv, double fv, int type) {
|
||||||
return pmt(r, nper, pv, fv, type) - ipmt(r, per, nper, pv, fv, type);
|
return pmt(r, nper, pv, fv, type) - ipmt(r, per, nper, pv, fv, type);
|
||||||
|
|
|
@ -261,6 +261,8 @@ public class AreaReference {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Returns a text representation of this area reference.
|
||||||
|
* <p/>
|
||||||
* Example return values:
|
* Example return values:
|
||||||
* <table border="0" cellpadding="1" cellspacing="0" summary="Example return values">
|
* <table border="0" cellpadding="1" cellspacing="0" summary="Example return values">
|
||||||
* <tr><th align='left'>Result</th><th align='left'>Comment</th></tr>
|
* <tr><th align='left'>Result</th><th align='left'>Comment</th></tr>
|
||||||
|
|
|
@ -437,6 +437,8 @@ public class CellReference {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Returns a text representation of this cell reference.
|
||||||
|
* <p/>
|
||||||
* Example return values:
|
* Example return values:
|
||||||
* <table border="0" cellpadding="1" cellspacing="0" summary="Example return values">
|
* <table border="0" cellpadding="1" cellspacing="0" summary="Example return values">
|
||||||
* <tr><th align='left'>Result</th><th align='left'>Comment</th></tr>
|
* <tr><th align='left'>Result</th><th align='left'>Comment</th></tr>
|
||||||
|
|
|
@ -755,7 +755,7 @@ public abstract class OPCPackage implements RelationshipSource, Closeable {
|
||||||
* If rule M1.12 is not verified : Packages shall not contain
|
* If rule M1.12 is not verified : Packages shall not contain
|
||||||
* equivalent part names and package implementers shall neither
|
* equivalent part names and package implementers shall neither
|
||||||
* create nor recognize packages with equivalent part names.
|
* create nor recognize packages with equivalent part names.
|
||||||
* @see {@link#createPartImpl(URI, String)}
|
* @see #createPartImpl(PackagePartName, String, boolean)
|
||||||
*/
|
*/
|
||||||
PackagePart createPart(PackagePartName partName, String contentType,
|
PackagePart createPart(PackagePartName partName, String contentType,
|
||||||
boolean loadRelationships) {
|
boolean loadRelationships) {
|
||||||
|
|
Loading…
Reference in New Issue