* excel but then again it is a lossy formating mode anyway
*
* @author Jason Height
- * @created 15 July 2002
+ * @since 15 July 2002
*/
public class SVFractionalFormat extends Format {
private short ONE_DIGIT = 1;
* nearly completely consists of overridden methods.
*
* @author Jason Height
- * @created 16 July 2002
+ * @since 16 July 2002
*/
public class SVTableCellEditor extends AbstractCellEditor implements TableCellEditor, ActionListener {
private static final Color black = getAWTColor(new HSSFColor.BLACK());
* SVTableCell Editor and Renderer helper functions.
*
* @author Jason Height
- * @created 16 July 2002
+ * @since 16 July 2002
*/
public class SVTableUtils {
private final static Hashtable colors = HSSFColor.getIndexHash();
* Various utility functions that make working with a region of cells easier.
*
*@author Eric Pugh epugh@upstate.com
- *@created July 29, 2002
+ *@since July 29, 2002
*/
public class HSSFRegionUtil {
* Description of the Class
*
*@author andy
- *@created May 10, 2002
+ *@since May 10, 2002
*/
public class RecordGenerator {
/**
* a listener supporting this interface and register it with the HSSFRequest (associating
* it with Record SID's).
*
- * @see org.apache.poi.hssf.eventmodel.HSSFEventFactory
- * @see org.apache.poi.hssf.eventmodel.HSSFRequest
+ * @see org.apache.poi.hssf.eventusermodel.HSSFEventFactory
+ * @see org.apache.poi.hssf.eventusermodel.HSSFRequest
* @see org.apache.poi.hssf.HSSFUserException
*
* @author Carey Sublette (careysub@earthling.net)
* @see org.apache.poi.poifs.filesystem.POIFSFileSystem#createDocumentInputStream(String)
* @param req an Instance of HSSFRequest which has your registered listeners
* @param in a DocumentInputStream obtained from POIFS's POIFSFileSystem object
- * @param in a DocumentInputStream obtained from POIFS's POIFSFileSystem object
* @return numeric user-specified result code.
*/
* a listener supporting this interface and register it with the HSSFRequest (associating
* it with Record SID's).
*
- * @see org.apache.poi.hssf.eventmodel.HSSFEventFactory
- * @see org.apache.poi.hssf.eventmodel.HSSFRequest
+ * @see org.apache.poi.hssf.eventusermodel.HSSFEventFactory
+ * @see org.apache.poi.hssf.eventusermodel.HSSFRequest
* @author acoliver@apache.org
*/
/**
* Set the sheetname for this sheet. (this appears in the tabs at the bottom)
* @param sheetname the name of the sheet
- * @thows IllegalArgumentException if sheet name will cause excel to crash.
+ * @throws IllegalArgumentException if sheet name will cause excel to crash.
*/
public void setSheetname( String sheetname )
/**
* Sets the left string.
- * @newLeft The string to set as the left side.
+ * @param newLeft The string to set as the left side.
*/
public void setLeft(String newLeft) {
left = newLeft;
/**
* Sets the center string.
- * @newLeft The string to set as the center.
+ * @param newCenter The string to set as the center.
*/
public void setCenter(String newCenter) {
center = newCenter;
/**
* Sets the right string.
- * @newLeft The string to set as the right side.
+ * @param newRight The string to set as the right side.
*/
public void setRight(String newRight) {
right = newRight;
/**
* Sets the left string.
- * @newLeft The string to set as the left side.
+ * @param newLeft The string to set as the left side.
*/
public void setLeft(String newLeft) {
left = newLeft;
/**
* Sets the center string.
- * @newLeft The string to set as the center.
+ * @param newCenter The string to set as the center.
*/
public void setCenter(String newCenter) {
center = newCenter;
/**
* Sets the right string.
- * @newLeft The string to set as the right side.
+ * @param newRight The string to set as the right side.
*/
public void setRight(String newRight) {
right = newRight;
/**
* For the Convenience of Java Programmers maintaining pointers.
- * @see setPrintArea(int, String)
+ * @see #setPrintArea(int, String)
* @param sheetIndex Zero-based sheet index (0 = First Sheet)
* @param startColumn Column to begin printarea
* @param endColumn Column to end the printarea
/**
* Answers: "is the row/column inside this range?"
*
- * @returns boolean - true if the cell is in the range and false if it is not
+ * @return true if the cell is in the range and false if it is not
*/
public boolean contains(int row, short col)
}
/**
- * @returns the area contained by this region (number of cells)
+ * @return the area contained by this region (number of cells)
*/
public int getArea()
</ul>
<!-- Put @see and @since tags down here. -->
-@see org.apache.poi.usermodel
+@see org.apache.poi.hssf.usermodel
</body>
</html>
*@author Andrew C. Oliver
*@author Sergei Kozello (sergeikozello at mail.ru)
*@author Toshiaki Kamoshida (kamoshida.toshiaki at future dot co dot jp)
- *@created May 10, 2002
+ *@since May 10, 2002
*@version 1.0
*/
public class StringUtil {
*@exception IllegalArgumentException if len is too large (i.e.,
* there is not enough data in string to create a String of that
* length)
- *@len the length of the final string
+ *@param len the length of the final string
*/
public static String getFromUnicodeLE(
final byte[] string,
*@exception IllegalArgumentException if len is too large (i.e.,
* there is not enough data in string to create a String of that
* length)
- *@len the length of the final string
+ *@param len the length of the final string
*/
public static String getFromUnicodeBE(
final byte[] string,
return _fcStart;
}
/**
- * @retrun The offset of the end of this property's text.
+ * @return The offset of the end of this property's text.
*/
public int getEnd()
{