bug 52903/58557: add @Override decorators to XSSFHyperlink and HSSFHyperlink

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1717026 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2015-11-29 02:43:17 +00:00
parent 659662b5f8
commit 9d014aa00b
2 changed files with 37 additions and 7 deletions

View File

@ -25,24 +25,28 @@ import org.apache.poi.ss.usermodel.Hyperlink;
public class HSSFHyperlink implements Hyperlink { public class HSSFHyperlink implements Hyperlink {
/** /**
* Link to an existing file or web page * Link to an existing file or web page
* May be deprecated in the future. Consider using {@link Hyperlink#LINK_URL} instead.
*/ */
public static final int LINK_URL = 1; public static final int LINK_URL = Hyperlink.LINK_URL;
/** /**
* Link to a place in this document * Link to a place in this document
* May be deprecated in the future. Consider using {@link Hyperlink#LINK_DOCUMENT} instead.
*/ */
public static final int LINK_DOCUMENT = 2; public static final int LINK_DOCUMENT = Hyperlink.LINK_DOCUMENT;
/** /**
* Link to an E-mail address * Link to an E-mail address
* May be deprecated in the future. Consider using {@link Hyperlink#LINK_EMAIL} instead.
*/ */
public static final int LINK_EMAIL = 3; public static final int LINK_EMAIL = Hyperlink.LINK_EMAIL;
/** /**
* Link to a file * Link to a file
* May be deprecated in the future. Consider using {@link Hyperlink#LINK_FILE} instead.
*/ */
public static final int LINK_FILE = 4; public static final int LINK_FILE = Hyperlink.LINK_FILE;
/** /**
* Low-level record object that stores the actual hyperlink data * Low-level record object that stores the actual hyperlink data
@ -127,6 +131,7 @@ public class HSSFHyperlink implements Hyperlink {
* *
* @return the 0-based row of the cell that contains the hyperlink * @return the 0-based row of the cell that contains the hyperlink
*/ */
@Override
public int getFirstRow(){ public int getFirstRow(){
return record.getFirstRow(); return record.getFirstRow();
} }
@ -136,6 +141,7 @@ public class HSSFHyperlink implements Hyperlink {
* *
* @param row the 0-based row of the first cell that contains the hyperlink * @param row the 0-based row of the first cell that contains the hyperlink
*/ */
@Override
public void setFirstRow(int row){ public void setFirstRow(int row){
record.setFirstRow(row); record.setFirstRow(row);
} }
@ -145,6 +151,7 @@ public class HSSFHyperlink implements Hyperlink {
* *
* @return the 0-based row of the last cell that contains the hyperlink * @return the 0-based row of the last cell that contains the hyperlink
*/ */
@Override
public int getLastRow(){ public int getLastRow(){
return record.getLastRow(); return record.getLastRow();
} }
@ -154,6 +161,7 @@ public class HSSFHyperlink implements Hyperlink {
* *
* @param row the 0-based row of the last cell that contains the hyperlink * @param row the 0-based row of the last cell that contains the hyperlink
*/ */
@Override
public void setLastRow(int row){ public void setLastRow(int row){
record.setLastRow(row); record.setLastRow(row);
} }
@ -163,6 +171,7 @@ public class HSSFHyperlink implements Hyperlink {
* *
* @return the 0-based column of the first cell that contains the hyperlink * @return the 0-based column of the first cell that contains the hyperlink
*/ */
@Override
public int getFirstColumn(){ public int getFirstColumn(){
return record.getFirstColumn(); return record.getFirstColumn();
} }
@ -172,6 +181,7 @@ public class HSSFHyperlink implements Hyperlink {
* *
* @param col the 0-based column of the first cell that contains the hyperlink * @param col the 0-based column of the first cell that contains the hyperlink
*/ */
@Override
public void setFirstColumn(int col){ public void setFirstColumn(int col){
record.setFirstColumn((short)col); record.setFirstColumn((short)col);
} }
@ -181,6 +191,7 @@ public class HSSFHyperlink implements Hyperlink {
* *
* @return the 0-based column of the last cell that contains the hyperlink * @return the 0-based column of the last cell that contains the hyperlink
*/ */
@Override
public int getLastColumn(){ public int getLastColumn(){
return record.getLastColumn(); return record.getLastColumn();
} }
@ -190,6 +201,7 @@ public class HSSFHyperlink implements Hyperlink {
* *
* @param col the 0-based column of the last cell that contains the hyperlink * @param col the 0-based column of the last cell that contains the hyperlink
*/ */
@Override
public void setLastColumn(int col){ public void setLastColumn(int col){
record.setLastColumn((short)col); record.setLastColumn((short)col);
} }
@ -198,7 +210,8 @@ public class HSSFHyperlink implements Hyperlink {
* Hyperlink address. Depending on the hyperlink type it can be URL, e-mail, path to a file, etc. * Hyperlink address. Depending on the hyperlink type it can be URL, e-mail, path to a file, etc.
* *
* @return the address of this hyperlink * @return the address of this hyperlink
*/ */
@Override
public String getAddress(){ public String getAddress(){
return record.getAddress(); return record.getAddress();
} }
@ -230,7 +243,8 @@ public class HSSFHyperlink implements Hyperlink {
* Hyperlink address. Depending on the hyperlink type it can be URL, e-mail, path to a file, etc. * Hyperlink address. Depending on the hyperlink type it can be URL, e-mail, path to a file, etc.
* *
* @param address the address of this hyperlink * @param address the address of this hyperlink
*/ */
@Override
public void setAddress(String address){ public void setAddress(String address){
record.setAddress(address); record.setAddress(address);
} }
@ -240,6 +254,7 @@ public class HSSFHyperlink implements Hyperlink {
* *
* @return text to display * @return text to display
*/ */
@Override
public String getLabel(){ public String getLabel(){
return record.getLabel(); return record.getLabel();
} }
@ -249,6 +264,7 @@ public class HSSFHyperlink implements Hyperlink {
* *
* @param label text label for this hyperlink * @param label text label for this hyperlink
*/ */
@Override
public void setLabel(String label){ public void setLabel(String label){
record.setLabel(label); record.setLabel(label);
} }
@ -258,6 +274,7 @@ public class HSSFHyperlink implements Hyperlink {
* *
* @return the type of this hyperlink * @return the type of this hyperlink
*/ */
@Override
public int getType(){ public int getType(){
return link_type; return link_type;
} }

View File

@ -151,6 +151,7 @@ public class XSSFHyperlink implements Hyperlink {
* *
* @return the type of this hyperlink * @return the type of this hyperlink
*/ */
@Override
public int getType() { public int getType() {
return _type; return _type;
} }
@ -168,6 +169,7 @@ public class XSSFHyperlink implements Hyperlink {
* *
* @return the address of this hyperlink * @return the address of this hyperlink
*/ */
@Override
public String getAddress() { public String getAddress() {
return _location; return _location;
} }
@ -177,6 +179,7 @@ public class XSSFHyperlink implements Hyperlink {
* *
* @return text to display * @return text to display
*/ */
@Override
public String getLabel() { public String getLabel() {
return _ctHyperlink.getDisplay(); return _ctHyperlink.getDisplay();
} }
@ -196,6 +199,7 @@ public class XSSFHyperlink implements Hyperlink {
* *
* @param label text label for this hyperlink * @param label text label for this hyperlink
*/ */
@Override
public void setLabel(String label) { public void setLabel(String label) {
_ctHyperlink.setDisplay(label); _ctHyperlink.setDisplay(label);
} }
@ -215,6 +219,7 @@ public class XSSFHyperlink implements Hyperlink {
* *
* @param address - the address of this hyperlink * @param address - the address of this hyperlink
*/ */
@Override
public void setAddress(String address) { public void setAddress(String address) {
validate(address); validate(address);
@ -267,6 +272,7 @@ public class XSSFHyperlink implements Hyperlink {
* *
* @return the 0-based column of the first cell that contains the hyperlink * @return the 0-based column of the first cell that contains the hyperlink
*/ */
@Override
public int getFirstColumn() { public int getFirstColumn() {
return buildCellReference().getCol(); return buildCellReference().getCol();
} }
@ -277,6 +283,7 @@ public class XSSFHyperlink implements Hyperlink {
* *
* @return the 0-based column of the last cell that contains the hyperlink * @return the 0-based column of the last cell that contains the hyperlink
*/ */
@Override
public int getLastColumn() { public int getLastColumn() {
return buildCellReference().getCol(); return buildCellReference().getCol();
} }
@ -286,6 +293,7 @@ public class XSSFHyperlink implements Hyperlink {
* *
* @return the 0-based row of the cell that contains the hyperlink * @return the 0-based row of the cell that contains the hyperlink
*/ */
@Override
public int getFirstRow() { public int getFirstRow() {
return buildCellReference().getRow(); return buildCellReference().getRow();
} }
@ -296,6 +304,7 @@ public class XSSFHyperlink implements Hyperlink {
* *
* @return the 0-based row of the last cell that contains the hyperlink * @return the 0-based row of the last cell that contains the hyperlink
*/ */
@Override
public int getLastRow() { public int getLastRow() {
return buildCellReference().getRow(); return buildCellReference().getRow();
} }
@ -305,6 +314,7 @@ public class XSSFHyperlink implements Hyperlink {
* *
* @param col the 0-based column of the first cell that contains the hyperlink * @param col the 0-based column of the first cell that contains the hyperlink
*/ */
@Override
public void setFirstColumn(int col) { public void setFirstColumn(int col) {
setCellReference(new CellReference( getFirstRow(), col )); setCellReference(new CellReference( getFirstRow(), col ));
} }
@ -315,6 +325,7 @@ public class XSSFHyperlink implements Hyperlink {
* *
* @param col the 0-based column of the last cell that contains the hyperlink * @param col the 0-based column of the last cell that contains the hyperlink
*/ */
@Override
public void setLastColumn(int col) { public void setLastColumn(int col) {
setFirstColumn(col); setFirstColumn(col);
} }
@ -324,6 +335,7 @@ public class XSSFHyperlink implements Hyperlink {
* *
* @param row the 0-based row of the first cell that contains the hyperlink * @param row the 0-based row of the first cell that contains the hyperlink
*/ */
@Override
public void setFirstRow(int row) { public void setFirstRow(int row) {
setCellReference(new CellReference( row, getFirstColumn() )); setCellReference(new CellReference( row, getFirstColumn() ));
} }
@ -334,6 +346,7 @@ public class XSSFHyperlink implements Hyperlink {
* *
* @param row the 0-based row of the last cell that contains the hyperlink * @param row the 0-based row of the last cell that contains the hyperlink
*/ */
@Override
public void setLastRow(int row) { public void setLastRow(int row) {
setFirstRow(row); setFirstRow(row);
} }