deprecate XWPFTable#addNewRowBetween(int,int), which has not been implemented since 2008 when this class was first authored. (Unrelated: This closes #82 on github).

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1814997 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2017-11-12 01:30:42 +00:00
parent 70fdcdf848
commit c1e6c2eef7

View File

@ -24,6 +24,8 @@ import java.util.List;
import org.apache.poi.POIXMLDocumentPart; import org.apache.poi.POIXMLDocumentPart;
import org.apache.poi.util.Internal; import org.apache.poi.util.Internal;
import org.apache.poi.util.NotImplemented;
import org.apache.poi.util.Removal;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTBorder; import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTBorder;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTDecimalNumber; import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTDecimalNumber;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTP; import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTP;
@ -171,8 +173,17 @@ public class XWPFTable implements IBodyElement, ISDTContents {
return text.toString(); return text.toString();
} }
/**
* This method has existed since 2008 without an implementation.
* It will be removed unless an implementation is provided.
* @deprecated 4.0.0 due to lack of implementation.
*/
@Deprecated
@Removal
@NotImplemented
public void addNewRowBetween(int start, int end) { public void addNewRowBetween(int start, int end) {
// TODO throw new UnsupportedOperationException("XWPFTable#addNewRowBetween(int, int) not implemented");
} }
/** /**