*
* @param formatIndex The index of the format, eg from ExtendedFormatRecord.getFormatIndex
* @param formatString The format string
- * @see #isInternalDateFormat(int,String)
+ * @see #isInternalDateFormat(int)
*/
public static boolean isADateFormat(int formatIndex, String formatString) {
// First up, is this an internal date format?
/**
* Given a format ID this will check whether the format represents
* an internal excel date format or not.
- * @see #isDateFormat(int,String)
+ * @see #isADateFormat(int, java.lang.String)
*/
public static boolean isInternalDateFormat(int format) {
boolean retval =false;
* @param anchor the client anchor describes how this group is attached
* to the sheet.
* @return the newly created shape.
- * @author zunker
*/
public HSSFPicture createPicture(HSSFChildAnchor anchor, int pictureIndex)
{
/**
* Get the visibility state for a given column.
* @param column - the column to get (0-based)
- * @param width - the visiblity state of the column
+ * @param hidden - the visiblity state of the column
*/
public void setColumnHidden(short column, boolean hidden)
/**
* Sets the default column style for a given column. POI will only apply this style to new cells added to the sheet.
*
- * @param fromCol the starting column index
* @param column the column index
+ * @param style the style to set
*/
public void setDefaultColumnStyle(short column, HSSFCellStyle style) {
sheet.setColumn(column, new Short(style.getIndex()), null, null, null, null);
/**
* Returns the active pane
- * @see PANE_LOWER_RIGHT
- * @see PANE_UPPER_RIGHT
- * @see PANE_LOWER_LEFT
- * @see PANE_UPPER_LEFT
+ * @see #PANE_LOWER_RIGHT
+ * @see #PANE_UPPER_RIGHT
+ * @see #PANE_LOWER_LEFT
+ * @see #PANE_UPPER_LEFT
* @return the active pane.
*/
public byte getActivePane() {
/**
* Adds the given Child Record before the supplied record
* @param newChild
- * @param after
+ * @param before
*/
public void addChildBefore(Record newChild, Record before) {
synchronized(changingChildRecordsLock) {
* We are of type 4003
*
* @return type of this record
- * @see RecordTypes.TxMasterStyleAtom
+ * @see RecordTypes#TxMasterStyleAtom
*/
public long getRecordType() {
return _type;
* @param r rate
* @param n num of periods
* @param y pmt per period
- * @param f future value
+ * @param p future value
* @param t type (true=pmt at end of period, false=pmt at begining of period)
*/
public static double fv(double r, double n, double y, double p, boolean t) {
/**
*
* @param r
- * @param n
+ * @param y
* @param p
* @param f
* @param t
* to ensure that the two subarrays are of equal length. If the
* subarrays are not of equal length, the return value can be
* unpredictable.
- * @param arrays
+ * @param xarr
+ * @param yarr
*/
public static double sumx2my2(double[] xarr, double[] yarr) {
double d = 0;
* to ensure that the two subarrays are of equal length. If the
* subarrays are not of equal length, the return value can be
* unpredictable.
- * @param arrays
+ * @param xarr
+ * @param yarr
*/
public static double sumx2py2(double[] xarr, double[] yarr) {
double d = 0;
* to ensure that the two subarrays are of equal length. If the
* subarrays are not of equal length, the return value can be
* unpredictable.
- * @param arrays
+ * @param xarr
+ * @param yarr
*/
public static double sumxmy2(double[] xarr, double[] yarr) {
double d = 0;
* that are considered invalid and would result in #VALUE! error in
* excel cause this function to return null.
*
- * @param operands
+ * @param xops
+ * @param yops
* @param srcRow
* @param srcCol
*/
* else a runtime exception will be thrown somewhere inside the method.
* (Hence this is a private method.)
*
- * @param formula
+ * @param srcCell
+ * @param srcRow
* @param sheet
* @param workbook
*/
/**
* tests that the create record function returns a properly
* constructed record in the case of a continued record.
- * @todo - need a real world example to put in a unit test
+ * TODO - need a real world example to put in a unit test
*/
public void testCreateContinuedRecord()
{
* Class TestHSSFDateUtil
*
*
- * @author
* @author Dan Sherman (dsherman at isisph.com)
* @author Hack Kampbjorn (hak at 2mba.dk)
* @version %I%, %G%