View | Details | Raw Unified | Return to bug 54731
Collapse All | Expand All

(-)a/src/java/org/apache/poi/hssf/record/aggregates/ColumnInfoRecordsAggregate.java (-1 / +1 lines)
Lines 171-177 public final class ColumnInfoRecordsAggregate extends RecordAggregate { Link Here
171
	/**
171
	/**
172
	 * 'Collapsed' state is stored in a single column col info record immediately after the outline group
172
	 * 'Collapsed' state is stored in a single column col info record immediately after the outline group
173
	 * @param idx
173
	 * @param idx
174
	 * @return
174
	 * @return true, if the column is collapsed, false otherwise.
175
	 */
175
	 */
176
	private boolean isColumnGroupCollapsed(int idx) {
176
	private boolean isColumnGroupCollapsed(int idx) {
177
		int endOfOutlineGroupIdx = findEndOfColumnOutlineGroup(idx);
177
		int endOfOutlineGroupIdx = findEndOfColumnOutlineGroup(idx);
(-)a/src/java/org/apache/poi/ss/formula/functions/Finance.java (-1 / +1 lines)
Lines 107-113 public class Finance { Link Here
107
     * @return <code>double</code> representing principal portion of payment.
107
     * @return <code>double</code> representing principal portion of payment.
108
     * 
108
     * 
109
     * @see #pmt(double, int, double, double, int)
109
     * @see #pmt(double, int, double, double, int)
110
     * @see #ipmt(double, int, int, double, double, boolean)
110
     * @see #ipmt(double, int, int, double, double, int)
111
     */
111
     */
112
	static public double ppmt(double r, int per, int nper, double pv, double fv, int type) {
112
	static public double ppmt(double r, int per, int nper, double pv, double fv, int type) {
113
	    return pmt(r, nper, pv, fv, type) - ipmt(r, per, nper, pv, fv, type);
113
	    return pmt(r, nper, pv, fv, type) - ipmt(r, per, nper, pv, fv, type);
(-)a/src/java/org/apache/poi/ss/util/AreaReference.java (+2 lines)
Lines 261-266 public class AreaReference { Link Here
261
    }
261
    }
262
262
263
    /**
263
    /**
264
	 * Returns a text representation of this area reference.
265
	 * <p/>
264
     *  Example return values:
266
     *  Example return values:
265
     *    <table border="0" cellpadding="1" cellspacing="0" summary="Example return values">
267
     *    <table border="0" cellpadding="1" cellspacing="0" summary="Example return values">
266
     *      <tr><th align='left'>Result</th><th align='left'>Comment</th></tr>
268
     *      <tr><th align='left'>Result</th><th align='left'>Comment</th></tr>
(-)a/src/java/org/apache/poi/ss/util/CellReference.java (+2 lines)
Lines 437-442 public class CellReference { Link Here
437
	}
437
	}
438
438
439
	/**
439
	/**
440
	 * Returns a text representation of this cell reference.
441
	 * <p/>
440
	 *  Example return values:
442
	 *  Example return values:
441
	 *	<table border="0" cellpadding="1" cellspacing="0" summary="Example return values">
443
	 *	<table border="0" cellpadding="1" cellspacing="0" summary="Example return values">
442
	 *	  <tr><th align='left'>Result</th><th align='left'>Comment</th></tr>
444
	 *	  <tr><th align='left'>Result</th><th align='left'>Comment</th></tr>
(-)a/src/ooxml/java/org/apache/poi/openxml4j/opc/OPCPackage.java (-1 / +1 lines)
Lines 755-761 public abstract class OPCPackage implements RelationshipSource, Closeable { Link Here
755
	 *             If rule M1.12 is not verified : Packages shall not contain
755
	 *             If rule M1.12 is not verified : Packages shall not contain
756
	 *             equivalent part names and package implementers shall neither
756
	 *             equivalent part names and package implementers shall neither
757
	 *             create nor recognize packages with equivalent part names.
757
	 *             create nor recognize packages with equivalent part names.
758
	 * @see {@link#createPartImpl(URI, String)}
758
	 * @see #createPartImpl(PackagePartName, String, boolean)
759
	 */
759
	 */
760
	PackagePart createPart(PackagePartName partName, String contentType,
760
	PackagePart createPart(PackagePartName partName, String contentType,
761
			boolean loadRelationships) {
761
			boolean loadRelationships) {

Return to bug 54731