Yet more javadoc fixes

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@551914 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2007-06-29 15:01:01 +00:00
parent 63ca62be36
commit 313191f5aa
20 changed files with 22 additions and 63 deletions

View File

@ -28,10 +28,7 @@ public interface CustomField
/** /**
* Populates this fields data from the byte array passed in. * Populates this fields data from the byte array passed in.
* @param data raw data * @param in the RecordInputstream to read the record from
* @param size size of data
* @param offset of the record's data (provided a big array of the file)
* @return the number of bytes read.
*/ */
int fillField(RecordInputStream in); int fillField(RecordInputStream in);

View File

@ -65,9 +65,7 @@ public class ExternSheetRecord extends Record {
* called by the constructor, should set class level fields. Should throw * called by the constructor, should set class level fields. Should throw
* runtime exception for bad/icomplete data. * runtime exception for bad/icomplete data.
* *
* @param data raw data * @param in the RecordInputstream to read the record from
* @param size size of data
* @param offset of the record's data (provided a big array of the file)
*/ */
protected void fillFields(RecordInputStream in) { protected void fillFields(RecordInputStream in) {
field_2_REF_structures = new ArrayList(); field_2_REF_structures = new ArrayList();

View File

@ -118,9 +118,7 @@ public class MulBlankRecord
/** /**
* @param in the RecordInputstream to read the record from * @param in the RecordInputstream to read the record from
* @param size size of data
*/ */
protected void fillFields(RecordInputStream in) protected void fillFields(RecordInputStream in)
{ {
//field_1_row = LittleEndian.getShort(data, 0 + offset); //field_1_row = LittleEndian.getShort(data, 0 + offset);

View File

@ -121,9 +121,7 @@ public class MulRKRecord
/** /**
* @param in the RecordInputstream to read the record from * @param in the RecordInputstream to read the record from
* @param size size of data
*/ */
protected void fillFields(RecordInputStream in) protected void fillFields(RecordInputStream in)
{ {
//field_1_row = LittleEndian.getShort(data, 0 + offset); //field_1_row = LittleEndian.getShort(data, 0 + offset);

View File

@ -491,7 +491,8 @@ public class NameRecord extends Record {
/** /**
* called by the class that is responsible for writing this sucker. * called by the class that is responsible for writing this sucker.
* Subclasses should implement this so that their data is passed back in a * Subclasses should implement this so that their data is passed back in a
* @param in the RecordInputstream to read the record from * @param offset to begin writing at
* @param data byte array containing instance data
* @return number of bytes written * @return number of bytes written
*/ */
public int serialize( int offset, byte[] data ) public int serialize( int offset, byte[] data )

View File

@ -194,8 +194,8 @@ public class NoteRecord extends Record {
* Options flags. * Options flags.
* *
* @return the options flag * @return the options flag
* @see NoteRecord.NOTE_VISIBLE * @see #NOTE_VISIBLE
* @see NoteRecord.NOTE_HIDDEN * @see #NOTE_HIDDEN
*/ */
public short getFlags(){ public short getFlags(){
return field_3_flags; return field_3_flags;

View File

@ -35,14 +35,7 @@ import org.apache.poi.util.LittleEndian;
* <p>REFERENCE: Microsoft Excel SDK page 322 and 420</p> * <p>REFERENCE: Microsoft Excel SDK page 322 and 420</p>
* *
* @see HorizontalPageBreakRecord * @see HorizontalPageBreakRecord
<<<<<<< PageBreakRecord.java
* @see VerticalPageBreakREcord
*
* REFERENCE: Microsoft Excel SDK page 322 and 420
=======
* @see VerticalPageBreakRecord * @see VerticalPageBreakRecord
*
>>>>>>> 1.5
* @author Danny Mui (dmui at apache dot org) * @author Danny Mui (dmui at apache dot org)
*/ */
public class PageBreakRecord extends Record { public class PageBreakRecord extends Record {

View File

@ -66,9 +66,7 @@ public abstract class Record
* called by the constructor, should set class level fields. Should throw * called by the constructor, should set class level fields. Should throw
* runtime exception for bad/icomplete data. * runtime exception for bad/icomplete data.
* *
* @param data raw data * @param in the RecordInputstream to read the record from
* @param size size of data
* @param offset of the record's data (provided a big array of the file)
*/ */
protected abstract void fillFields(RecordInputStream in); protected abstract void fillFields(RecordInputStream in);

View File

@ -220,7 +220,7 @@ public class RecordInputStream extends InputStream
* *
* { 0x16, 0x00 } -0x16 * { 0x16, 0x00 } -0x16
* *
* @param len the length of the final string * @param length the length of the final string
* @return the converted string * @return the converted string
* @exception IllegalArgumentException if len is too large (i.e., * @exception IllegalArgumentException if len is too large (i.e.,
* there is not enough data in string to create a String of that * there is not enough data in string to create a String of that

View File

@ -93,10 +93,7 @@ public class SSTRecord
/** /**
* Constructs an SST record and sets its fields appropriately. * Constructs an SST record and sets its fields appropriately.
* *
* @param id must be 0xfc or an exception will be throw upon * @param in the RecordInputstream to read the record from
* validation
* @param size the size of the data area of the record
* @param data of the record (should not contain sid/len)
*/ */
public SSTRecord( RecordInputStream in ) public SSTRecord( RecordInputStream in )
@ -352,8 +349,7 @@ public class SSTRecord
* associated data. The UnicodeString class can handle the byte[] * associated data. The UnicodeString class can handle the byte[]
* vs short[] nature of the actual string data * vs short[] nature of the actual string data
* *
* @param data raw data * @param in the RecordInputstream to read the record from
* @param size size of the raw data
*/ */
protected void fillFields( RecordInputStream in ) protected void fillFields( RecordInputStream in )

View File

@ -67,8 +67,6 @@ public class StringRecord
/** /**
* @param in the RecordInputstream to read the record from * @param in the RecordInputstream to read the record from
* @param size size of data
* @param offset of the record's data (provided a big array of the file)
*/ */
protected void fillFields( RecordInputStream in) protected void fillFields( RecordInputStream in)
{ {

View File

@ -62,8 +62,6 @@ public class SupBookRecord extends Record
/** /**
* @param in the RecordInputstream to read the record from * @param in the RecordInputstream to read the record from
* @param size size of data
* @param offset of the record's data (provided a big array of the file)
*/ */
protected void fillFields(RecordInputStream in) protected void fillFields(RecordInputStream in)
{ {

View File

@ -35,10 +35,7 @@ public class TopMarginRecord extends Record implements Margin
/** /**
* Constructs a TopMargin record and sets its fields appropriately. * Constructs a TopMargin record and sets its fields appropriately.
* *
* @param id id must be 0x28 or an exception * @param in the RecordInputstream to read the record from
* will be throw upon validation
* @param size size the size of the data area of the record
* @param data data of the record (should not contain sid/len)
*/ */
public TopMarginRecord( RecordInputStream in ) public TopMarginRecord( RecordInputStream in )
{ super( in ); } { super( in ); }
@ -56,6 +53,9 @@ public class TopMarginRecord extends Record implements Margin
} }
} }
/**
* @param in the RecordInputstream to read the record from
*/
protected void fillFields( RecordInputStream in ) protected void fillFields( RecordInputStream in )
{ {
field_1_margin = in.readDouble(); field_1_margin = in.readDouble();

View File

@ -136,9 +136,7 @@ public class UnknownRecord
* called by the constructor, should set class level fields. Should throw * called by the constructor, should set class level fields. Should throw
* runtime exception for bad/icomplete data. * runtime exception for bad/icomplete data.
* *
* @param data raw data * @param in the RecordInputstream to read the record from
* @param size size of data
* @param offset of the records data (provided a big array of the file)
*/ */
protected void fillFields(RecordInputStream in) protected void fillFields(RecordInputStream in)

View File

@ -230,14 +230,8 @@ public class RowRecordsAggregate
} }
/** /**
* called by the constructor, should set class level fields. Should throw * You never fill an aggregate
* runtime exception for bad/incomplete data.
*
* @param data raw data
* @param size size of data
* @param offset of the record's data (provided a big array of the file)
*/ */
protected void fillFields(RecordInputStream in) protected void fillFields(RecordInputStream in)
{ {
} }

View File

@ -242,14 +242,8 @@ public class ValueRecordsAggregate
/** /**
* called by the constructor, should set class level fields. Should throw * You never fill an aggregate
* runtime exception for bad/icomplete data.
*
* @param data raw data
* @param size size of data
* @param offset of the record's data (provided a big array of the file)
*/ */
protected void fillFields(RecordInputStream in) protected void fillFields(RecordInputStream in)
{ {
} }

View File

@ -49,8 +49,7 @@ public class GreaterThanPtg
/** /**
* Constructor. Create a new GreaterThanPtg. * Constructor. Create a new GreaterThanPtg.
* @param data the byte array to have the PTG added to * @param in the RecordInputstream to read the record from
* @param offset the offset to the PTG to.
*/ */
public GreaterThanPtg(RecordInputStream in) public GreaterThanPtg(RecordInputStream in)
{ {

View File

@ -58,8 +58,7 @@ public class LessThanPtg
/** /**
* Constructor. Create a new LessThanPtg. * Constructor. Create a new LessThanPtg.
* @param data the byte array to have the PTG added to * @param in the RecordInputstream to read the record from
* @param offset the offset to the PTG to.
*/ */
public LessThanPtg(RecordInputStream in) public LessThanPtg(RecordInputStream in)
{ {

View File

@ -160,6 +160,7 @@ public class HSSFDateUtil
* *
* @param formatIndex The index of the format, eg from ExtendedFormatRecord.getFormatIndex * @param formatIndex The index of the format, eg from ExtendedFormatRecord.getFormatIndex
* @param formatString The format string * @param formatString The format string
* @see #isInternalDateFormat(int,String)
*/ */
public static boolean isADateFormat(int formatIndex, String formatString) { public static boolean isADateFormat(int formatIndex, String formatString) {
// First up, is this an internal date format? // First up, is this an internal date format?
@ -187,7 +188,7 @@ public class HSSFDateUtil
/** /**
* Given a format ID this will check whether the format represents * Given a format ID this will check whether the format represents
* an internal excel date format or not. * an internal excel date format or not.
* @see isDateFormat(int,String) * @see #isDateFormat(int,String)
*/ */
public static boolean isInternalDateFormat(int format) { public static boolean isInternalDateFormat(int format) {
boolean retval =false; boolean retval =false;

View File

@ -383,7 +383,6 @@ public class HSSFFont
/** /**
* set character-set to use. * set character-set to use.
* @return character-set
* @see #ANSI_CHARSET * @see #ANSI_CHARSET
* @see #DEFAULT_CHARSET * @see #DEFAULT_CHARSET
* @see #SYMBOL_CHARSET * @see #SYMBOL_CHARSET