summaryrefslogtreecommitdiffstats
path: root/src/examples
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2017-07-17 08:24:24 +0000
committerPJ Fanning <fanningpj@apache.org>2017-07-17 08:24:24 +0000
commit52d3ea57f47b580b215c879840f634f2a31aaa43 (patch)
tree7e5b69294f3b6862b8224096e3dec8eb6f77745f /src/examples
parent69cc48aa85cb379f9d42331c82d4741eaacc7b0e (diff)
downloadpoi-52d3ea57f47b580b215c879840f634f2a31aaa43.tar.gz
poi-52d3ea57f47b580b215c879840f634f2a31aaa43.zip
javadoc: replace invalid self enclosing elements
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1802110 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/examples')
-rw-r--r--src/examples/src/org/apache/poi/hssf/usermodel/examples/HSSFReadWrite.java6
-rw-r--r--src/examples/src/org/apache/poi/hssf/view/SVSheetTable.java4
-rw-r--r--src/examples/src/org/apache/poi/hssf/view/brush/PendingPaintings.java4
-rw-r--r--src/examples/src/org/apache/poi/xssf/eventusermodel/XLSX2CSV.java4
-rw-r--r--src/examples/src/org/apache/poi/xwpf/usermodel/examples/UpdateEmbeddedDoc.java6
5 files changed, 12 insertions, 12 deletions
diff --git a/src/examples/src/org/apache/poi/hssf/usermodel/examples/HSSFReadWrite.java b/src/examples/src/org/apache/poi/hssf/usermodel/examples/HSSFReadWrite.java
index 1f56f7ec5e..2393b18122 100644
--- a/src/examples/src/org/apache/poi/hssf/usermodel/examples/HSSFReadWrite.java
+++ b/src/examples/src/org/apache/poi/hssf/usermodel/examples/HSSFReadWrite.java
@@ -140,15 +140,15 @@ public final class HSSFReadWrite {
* Method main
*
* Given 1 argument takes that as the filename, inputs it and dumps the
- * cell values/types out to sys.out.<br/>
+ * cell values/types out to sys.out.<br>
*
* given 2 arguments where the second argument is the word "write" and the
* first is the filename - writes out a sample (test) spreadsheet
- * see {@link HSSFReadWrite#testCreateSampleSheet(String)}.<br/>
+ * see {@link HSSFReadWrite#testCreateSampleSheet(String)}.<br>
*
* given 2 arguments where the first is an input filename and the second
* an output filename (not write), attempts to fully read in the
- * spreadsheet and fully write it out.<br/>
+ * spreadsheet and fully write it out.<br>
*
* given 3 arguments where the first is an input filename and the second an
* output filename (not write) and the third is "modify1", attempts to read in the
diff --git a/src/examples/src/org/apache/poi/hssf/view/SVSheetTable.java b/src/examples/src/org/apache/poi/hssf/view/SVSheetTable.java
index c9e2090877..30ce49f8e5 100644
--- a/src/examples/src/org/apache/poi/hssf/view/SVSheetTable.java
+++ b/src/examples/src/org/apache/poi/hssf/view/SVSheetTable.java
@@ -64,11 +64,11 @@ public class SVSheetTable extends JTable {
/**
* This field is the magic number to convert from a Character width to a java
* pixel width.
- * <p/>
+ * <p>
* When the "normal" font size in a workbook changes, this effects all of the
* heights and widths. Unfortunately there is no way to retrieve this
* information, hence the MAGIC number.
- * <p/>
+ * <p>
* This number may only work for the normal style font size of Arial size 10.
*/
private static final int magicCharFactor = 7;
diff --git a/src/examples/src/org/apache/poi/hssf/view/brush/PendingPaintings.java b/src/examples/src/org/apache/poi/hssf/view/brush/PendingPaintings.java
index 3b95c05ac1..a8b3849dc5 100644
--- a/src/examples/src/org/apache/poi/hssf/view/brush/PendingPaintings.java
+++ b/src/examples/src/org/apache/poi/hssf/view/brush/PendingPaintings.java
@@ -29,7 +29,7 @@ import java.util.List;
* initial paint of the component, and then executed at the appropriate time,
* such as at the end of the containing object's {@link
* JComponent#paintChildren(Graphics)} method.
- * <p/>
+ * <p>
* It is up to the parent component to invoke the {@link #paint(Graphics2D)}
* method of this objet at that appropriate time.
*
@@ -153,7 +153,7 @@ public class PendingPaintings {
* is retrieved from the first object found that has a {@link
* #PENDING_PAINTINGS} client property, starting with this component and
* looking up its ancestors (parent, parent's parent, etc.)
- * <p/>
+ * <p>
* This allows any descendant of a component that has a {@link
* PendingPaintings} property to add its own pending paintings.
*
diff --git a/src/examples/src/org/apache/poi/xssf/eventusermodel/XLSX2CSV.java b/src/examples/src/org/apache/poi/xssf/eventusermodel/XLSX2CSV.java
index bd537c1d15..09ac0ed2c8 100644
--- a/src/examples/src/org/apache/poi/xssf/eventusermodel/XLSX2CSV.java
+++ b/src/examples/src/org/apache/poi/xssf/eventusermodel/XLSX2CSV.java
@@ -46,7 +46,7 @@ import org.xml.sax.XMLReader;
* org.apache.poi.hssf.eventusermodel.examples.
* As with the HSSF version, this tries to spot missing
* rows and cells, and output empty entries for them.
- * <p/>
+ * <p>
* Data sheets are read using a SAX parser to keep the
* memory footprint relatively small, so this should be
* able to read enormous workbooks. The styles table and
@@ -55,7 +55,7 @@ import org.xml.sax.XMLReader;
* (read-only) class is used for the shared string table
* because the standard POI SharedStringsTable grows very
* quickly with the number of unique strings.
- * <p/>
+ * <p>
* For a more advanced implementation of SAX event parsing
* of XLSX files, see {@link XSSFEventBasedExcelExtractor}
* and {@link XSSFSheetXMLHandler}. Note that for many cases,
diff --git a/src/examples/src/org/apache/poi/xwpf/usermodel/examples/UpdateEmbeddedDoc.java b/src/examples/src/org/apache/poi/xwpf/usermodel/examples/UpdateEmbeddedDoc.java
index 77e04a7ef8..4b1641b97f 100644
--- a/src/examples/src/org/apache/poi/xwpf/usermodel/examples/UpdateEmbeddedDoc.java
+++ b/src/examples/src/org/apache/poi/xwpf/usermodel/examples/UpdateEmbeddedDoc.java
@@ -144,14 +144,14 @@ public class UpdateEmbeddedDoc {
* Called to test whether or not the embedded workbook was correctly
* updated. This method simply recovers the first cell from the first row
* of the first workbook and tests the value it contains.
- * <p/>
+ * <p>
* Note that execution will not continue up to the assertion as the
* embedded workbook is now corrupted and causes an IllegalArgumentException
* with the following message
- * <p/>
+ * <p>
* <em>java.lang.IllegalArgumentException: Your InputStream was neither an
* OLE2 stream, nor an OOXML stream</em>
- * <p/>
+ * <p>
* to be thrown when the WorkbookFactory.createWorkbook(InputStream) method
* is executed.
*