bug 59170: remove deprecated o.a.p.xwpf.model.XWPFHyperlinkDecorator class
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748780 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d7fc37b2db
commit
c3833b5ce7
@ -1226,8 +1226,8 @@ public class XSSFWorkbook extends POIXMLDocument implements Workbook {
|
||||
* sh.createRow(0);
|
||||
* </code></pre>
|
||||
*
|
||||
* New projects should use the preferred options. Note: XSSFWorkbook.xssfSheetIterator
|
||||
* is deprecated and will be removed in a future version.
|
||||
* @deprecated 3.13. New projects should use the preferred options. Note: XSSFWorkbook.xssfSheetIterator
|
||||
* is deprecated and will be removed in 3.15.
|
||||
*
|
||||
* @return an iterator of the sheets.
|
||||
*/
|
||||
|
@ -1,71 +0,0 @@
|
||||
/* ====================================================================
|
||||
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
contributor license agreements. See the NOTICE file distributed with
|
||||
this work for additional information regarding copyright ownership.
|
||||
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
(the "License"); you may not use this file except in compliance with
|
||||
the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
==================================================================== */
|
||||
package org.apache.poi.xwpf.model;
|
||||
|
||||
import org.apache.poi.xwpf.usermodel.XWPFHyperlinkRun;
|
||||
import org.apache.poi.xwpf.usermodel.XWPFParagraph;
|
||||
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTHyperlink;
|
||||
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTR;
|
||||
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTText;
|
||||
|
||||
/**
|
||||
* Decorator class for XWPFParagraph allowing to add hyperlinks
|
||||
* found in paragraph to its text.
|
||||
* <p/>
|
||||
* Note - adds the hyperlink at the end, not in the right place...
|
||||
*
|
||||
* @deprecated Use {@link XWPFHyperlinkRun} instead
|
||||
*/
|
||||
@Deprecated
|
||||
public class XWPFHyperlinkDecorator extends XWPFParagraphDecorator {
|
||||
private StringBuffer hyperlinkText;
|
||||
|
||||
/**
|
||||
* @param nextDecorator The next decorator to use
|
||||
* @param outputHyperlinkUrls Should we output the links too, or just the link text?
|
||||
*/
|
||||
public XWPFHyperlinkDecorator(XWPFParagraphDecorator nextDecorator, boolean outputHyperlinkUrls) {
|
||||
this(nextDecorator.paragraph, nextDecorator, outputHyperlinkUrls);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param prgrph The paragraph of text to work on
|
||||
* @param outputHyperlinkUrls Should we output the links too, or just the link text?
|
||||
*/
|
||||
public XWPFHyperlinkDecorator(XWPFParagraph prgrph, XWPFParagraphDecorator nextDecorator, boolean outputHyperlinkUrls) {
|
||||
super(prgrph, nextDecorator);
|
||||
|
||||
hyperlinkText = new StringBuffer();
|
||||
|
||||
// loop over hyperlink anchors
|
||||
for (CTHyperlink link : paragraph.getCTP().getHyperlinkArray()) {
|
||||
for (CTR r : link.getRArray()) {
|
||||
// Loop over text runs
|
||||
for (CTText text : r.getTArray()) {
|
||||
hyperlinkText.append(text.getStringValue());
|
||||
}
|
||||
}
|
||||
if (outputHyperlinkUrls && paragraph.getDocument().getHyperlinkByID(link.getId()) != null) {
|
||||
hyperlinkText.append(" <" + paragraph.getDocument().getHyperlinkByID(link.getId()).getURL() + ">");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public String getText() {
|
||||
return super.getText() + hyperlinkText;
|
||||
}
|
||||
}
|
@ -39,7 +39,6 @@ public class TestXWPFDecorators extends TestCase {
|
||||
comments = XWPFTestDataSamples.openSampleDocument("WordWithAttachments.docx");
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
public void testHyperlink() {
|
||||
XWPFParagraph ps;
|
||||
XWPFParagraph ph;
|
||||
@ -64,27 +63,6 @@ public class TestXWPFDecorators extends TestCase {
|
||||
|
||||
XWPFHyperlinkRun link = (XWPFHyperlinkRun) ph.getRuns().get(1);
|
||||
assertEquals("http://poi.apache.org/", link.getHyperlink(hyperlink).getURL());
|
||||
|
||||
|
||||
// Test the old style decorator
|
||||
// You probably don't want to still be using it...
|
||||
assertEquals(
|
||||
"I am a test document",
|
||||
(new XWPFHyperlinkDecorator(ps, null, false)).getText()
|
||||
);
|
||||
assertEquals(
|
||||
"I am a test document",
|
||||
(new XWPFHyperlinkDecorator(ps, null, true)).getText()
|
||||
);
|
||||
|
||||
assertEquals(
|
||||
"We have a hyperlink here, and another.hyperlink",
|
||||
(new XWPFHyperlinkDecorator(ph, null, false)).getText()
|
||||
);
|
||||
assertEquals(
|
||||
"We have a hyperlink here, and another.hyperlink <http://poi.apache.org/>",
|
||||
(new XWPFHyperlinkDecorator(ph, null, true)).getText()
|
||||
);
|
||||
}
|
||||
|
||||
public void testComments() {
|
||||
|
Loading…
Reference in New Issue
Block a user