Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/IRunElement.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/IRunElement.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/IRunElement.java (original) +++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/IRunElement.java Mon Jul 17 08:24:24 2017 @@ -23,7 +23,7 @@ import org.apache.poi.wp.usermodel.Chara * where a run (text with common stylings) can, * eg {@link XWPFRun} or {@link XWPFSDT}. * TODO More methods to follow shortly! - * <p/> + * <p> * TODO Make this based on {@link CharacterRun} */ public interface IRunElement {} \ No newline at end of file
Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/ISDTContent.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/ISDTContent.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/ISDTContent.java (original) +++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/ISDTContent.java Mon Jul 17 08:24:24 2017 @@ -20,9 +20,9 @@ package org.apache.poi.xwpf.usermodel; /** * Experimental interface to offer rudimentary read-only processing of * of the contentblock of an SDT/ContentControl. - * <p/> - * <p/> - * <p/> + * <p> + * <p> + * <p> * WARNING - APIs expected to change rapidly */ public interface ISDTContent { Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java (original) +++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFDocument.java Mon Jul 17 08:24:24 2017 @@ -67,7 +67,7 @@ import org.openxmlformats.schemas.wordpr /** * <p>High(ish) level class for working with .docx files.</p> - * <p/> + * <p> * <p>This class tries to hide some of the complexity * of the underlying file format, but as it's not a * mature and stable API yet, certain parts of the @@ -969,9 +969,9 @@ public class XWPFDocument extends POIXML } /** - * Verifies that the documentProtection tag in settings.xml file <br/> - * specifies that the protection is enforced (w:enforcement="1") <br/> - * <br/> + * Verifies that the documentProtection tag in settings.xml file <br> + * specifies that the protection is enforced (w:enforcement="1") <br> + * <br> * sample snippet from settings.xml * <pre> * <w:settings ... > @@ -985,10 +985,10 @@ public class XWPFDocument extends POIXML } /** - * Verifies that the documentProtection tag in settings.xml file <br/> - * specifies that the protection is enforced (w:enforcement="1") <br/> - * and that the kind of protection is readOnly (w:edit="readOnly")<br/> - * <br/> + * Verifies that the documentProtection tag in settings.xml file <br> + * specifies that the protection is enforced (w:enforcement="1") <br> + * and that the kind of protection is readOnly (w:edit="readOnly")<br> + * <br> * sample snippet from settings.xml * <pre> * <w:settings ... > @@ -1002,10 +1002,10 @@ public class XWPFDocument extends POIXML } /** - * Verifies that the documentProtection tag in settings.xml file <br/> - * specifies that the protection is enforced (w:enforcement="1") <br/> - * and that the kind of protection is forms (w:edit="forms")<br/> - * <br/> + * Verifies that the documentProtection tag in settings.xml file <br> + * specifies that the protection is enforced (w:enforcement="1") <br> + * and that the kind of protection is forms (w:edit="forms")<br> + * <br> * sample snippet from settings.xml * <pre> * <w:settings ... > @@ -1019,10 +1019,10 @@ public class XWPFDocument extends POIXML } /** - * Verifies that the documentProtection tag in settings.xml file <br/> - * specifies that the protection is enforced (w:enforcement="1") <br/> - * and that the kind of protection is comments (w:edit="comments")<br/> - * <br/> + * Verifies that the documentProtection tag in settings.xml file <br> + * specifies that the protection is enforced (w:enforcement="1") <br> + * and that the kind of protection is comments (w:edit="comments")<br> + * <br> * sample snippet from settings.xml * <pre> * <w:settings ... > @@ -1036,10 +1036,10 @@ public class XWPFDocument extends POIXML } /** - * Verifies that the documentProtection tag in settings.xml file <br/> - * specifies that the protection is enforced (w:enforcement="1") <br/> - * and that the kind of protection is trackedChanges (w:edit="trackedChanges")<br/> - * <br/> + * Verifies that the documentProtection tag in settings.xml file <br> + * specifies that the protection is enforced (w:enforcement="1") <br> + * and that the kind of protection is trackedChanges (w:edit="trackedChanges")<br> + * <br> * sample snippet from settings.xml * <pre> * <w:settings ... > @@ -1057,11 +1057,11 @@ public class XWPFDocument extends POIXML } /** - * Enforces the readOnly protection.<br/> - * In the documentProtection tag inside settings.xml file, <br/> - * it sets the value of enforcement to "1" (w:enforcement="1") <br/> - * and the value of edit to readOnly (w:edit="readOnly")<br/> - * <br/> + * Enforces the readOnly protection.<br> + * In the documentProtection tag inside settings.xml file, <br> + * it sets the value of enforcement to "1" (w:enforcement="1") <br> + * and the value of edit to readOnly (w:edit="readOnly")<br> + * <br> * sample snippet from settings.xml * <pre> * <w:settings ... > @@ -1073,8 +1073,8 @@ public class XWPFDocument extends POIXML } /** - * Enforces the readOnly protection with a password.<br/> - * <br/> + * Enforces the readOnly protection with a password.<br> + * <br> * sample snippet from settings.xml * <pre> * <w:documentProtection w:edit="readOnly" w:enforcement="1" @@ -1093,11 +1093,11 @@ public class XWPFDocument extends POIXML } /** - * Enforce the Filling Forms protection.<br/> - * In the documentProtection tag inside settings.xml file, <br/> - * it sets the value of enforcement to "1" (w:enforcement="1") <br/> - * and the value of edit to forms (w:edit="forms")<br/> - * <br/> + * Enforce the Filling Forms protection.<br> + * In the documentProtection tag inside settings.xml file, <br> + * it sets the value of enforcement to "1" (w:enforcement="1") <br> + * and the value of edit to forms (w:edit="forms")<br> + * <br> * sample snippet from settings.xml * <pre> * <w:settings ... > @@ -1109,8 +1109,8 @@ public class XWPFDocument extends POIXML } /** - * Enforce the Filling Forms protection.<br/> - * <br/> + * Enforce the Filling Forms protection.<br> + * <br> * sample snippet from settings.xml * <pre> * <w:documentProtection w:edit="forms" w:enforcement="1" @@ -1129,11 +1129,11 @@ public class XWPFDocument extends POIXML } /** - * Enforce the Comments protection.<br/> - * In the documentProtection tag inside settings.xml file,<br/> - * it sets the value of enforcement to "1" (w:enforcement="1") <br/> - * and the value of edit to comments (w:edit="comments")<br/> - * <br/> + * Enforce the Comments protection.<br> + * In the documentProtection tag inside settings.xml file,<br> + * it sets the value of enforcement to "1" (w:enforcement="1") <br> + * and the value of edit to comments (w:edit="comments")<br> + * <br> * sample snippet from settings.xml * <pre> * <w:settings ... > @@ -1145,8 +1145,8 @@ public class XWPFDocument extends POIXML } /** - * Enforce the Comments protection.<br/> - * <br/> + * Enforce the Comments protection.<br> + * <br> * sample snippet from settings.xml * <pre> * <w:documentProtection w:edit="comments" w:enforcement="1" @@ -1165,11 +1165,11 @@ public class XWPFDocument extends POIXML } /** - * Enforce the Tracked Changes protection.<br/> - * In the documentProtection tag inside settings.xml file, <br/> - * it sets the value of enforcement to "1" (w:enforcement="1") <br/> - * and the value of edit to trackedChanges (w:edit="trackedChanges")<br/> - * <br/> + * Enforce the Tracked Changes protection.<br> + * In the documentProtection tag inside settings.xml file, <br> + * it sets the value of enforcement to "1" (w:enforcement="1") <br> + * and the value of edit to trackedChanges (w:edit="trackedChanges")<br> + * <br> * sample snippet from settings.xml * <pre> * <w:settings ... > @@ -1181,8 +1181,8 @@ public class XWPFDocument extends POIXML } /** - * Enforce the Tracked Changes protection.<br/> - * <br/> + * Enforce the Tracked Changes protection.<br> + * <br> * sample snippet from settings.xml * <pre> * <w:documentProtection w:edit="trackedChanges" w:enforcement="1" @@ -1211,9 +1211,9 @@ public class XWPFDocument extends POIXML } /** - * Remove protection enforcement.<br/> - * In the documentProtection tag inside settings.xml file <br/> - * it sets the value of enforcement to "0" (w:enforcement="0") <br/> + * Remove protection enforcement.<br> + * In the documentProtection tag inside settings.xml file <br> + * it sets the value of enforcement to "0" (w:enforcement="0") <br> */ public void removeProtectionEnforcement() { settings.removeEnforcement(); @@ -1221,9 +1221,9 @@ public class XWPFDocument extends POIXML /** * Enforces fields update on document open (in Word). - * In the settings.xml file <br/> + * In the settings.xml file <br> * sets the updateSettings value to true (w:updateSettings w:val="true") - * <p/> + * <p> * NOTICES: * <ul> * <li>Causing Word to ask on open: "This document contains fields that may refer to other files. Do you want to update the fields in this document?" Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFParagraph.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFParagraph.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFParagraph.java (original) +++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFParagraph.java Mon Jul 17 08:24:24 2017 @@ -30,7 +30,7 @@ import org.openxmlformats.schemas.wordpr /** * <p>A Paragraph within a Document, Table, Header etc.</p> - * <p/> + * <p> * <p>A paragraph has a lot of styling information, but the * actual text (possibly along with more styling) is held on * the child {@link XWPFRun}s.</p> @@ -428,8 +428,8 @@ public class XWPFParagraph implements IB /** * Returns the paragraph alignment which shall be applied to text in this * paragraph. - * <p/> - * <p/> + * <p> + * <p> * If this element is not set on a given paragraph, its value is determined * by the setting previously set at any level of the style hierarchy (i.e. * that previous setting remains unchanged). If this setting is never @@ -448,8 +448,8 @@ public class XWPFParagraph implements IB /** * Specifies the paragraph alignment which shall be applied to text in this * paragraph. - * <p/> - * <p/> + * <p> + * <p> * If this element is not set on a given paragraph, its value is determined * by the setting previously set at any level of the style hierarchy (i.e. * that previous setting remains unchanged). If this setting is never @@ -483,12 +483,12 @@ public class XWPFParagraph implements IB /** * Returns the text vertical alignment which shall be applied to text in * this paragraph. - * <p/> + * <p> * If the line height (before any added spacing) is larger than one or more * characters on the line, all characters will be aligned to each other as * specified by this element. * </p> - * <p/> + * <p> * If this element is omitted on a given paragraph, its value is determined * by the setting previously set at any level of the style hierarchy (i.e. * that previous setting remains unchanged). If this setting is never @@ -508,12 +508,12 @@ public class XWPFParagraph implements IB /** * Specifies the text vertical alignment which shall be applied to text in * this paragraph. - * <p/> + * <p> * If the line height (before any added spacing) is larger than one or more * characters on the line, all characters will be aligned to each other as * specified by this element. * </p> - * <p/> + * <p> * If this element is omitted on a given paragraph, its value is determined * by the setting previously set at any level of the style hierarchy (i.e. * that previous setting remains unchanged). If this setting is never @@ -554,8 +554,8 @@ public class XWPFParagraph implements IB /** * Specifies the border which shall be displayed above a set of paragraphs * which have the same set of paragraph border settings. - * <p/> - * <p/> + * <p> + * <p> * To determine if any two adjoining paragraphs shall have an individual top * and bottom border or a between border, the set of borders on the two * adjoining paragraphs are compared. If the border information on those two @@ -566,7 +566,7 @@ public class XWPFParagraph implements IB * determines the space above the text (ignoring any spacing above) which * should be left before this border is drawn, specified in points. * </p> - * <p/> + * <p> * If this element is omitted on a given paragraph, its value is determined * by the setting previously set at any level of the style hierarchy (i.e. * that previous setting remains unchanged). If this setting is never @@ -613,7 +613,7 @@ public class XWPFParagraph implements IB /** * Specifies the border which shall be displayed below a set of paragraphs * which have the same set of paragraph border settings. - * <p/> + * <p> * To determine if any two adjoining paragraphs shall have an individual top * and bottom border or a between border, the set of borders on the two * adjoining paragraphs are compared. If the border information on those two @@ -625,7 +625,7 @@ public class XWPFParagraph implements IB * below) which should be left before this border is drawn, specified in * points. * </p> - * <p/> + * <p> * If this element is omitted on a given paragraph, its value is determined * by the setting previously set at any level of the style hierarchy (i.e. * that previous setting remains unchanged). If this setting is never @@ -668,7 +668,7 @@ public class XWPFParagraph implements IB /** * Specifies the border which shall be displayed on the left side of the * page around the specified paragraph. - * <p/> + * <p> * To determine if any two adjoining paragraphs should have a left border * which spans the full line height or not, the left border shall be drawn * between the top border or between border at the top (whichever would be @@ -676,7 +676,7 @@ public class XWPFParagraph implements IB * border at the bottom (whichever would be rendered for the current * paragraph). * </p> - * <p/> + * <p> * If this element is omitted on a given paragraph, its value is determined * by the setting previously set at any level of the style hierarchy (i.e. * that previous setting remains unchanged). If this setting is never @@ -718,7 +718,7 @@ public class XWPFParagraph implements IB /** * Specifies the border which shall be displayed on the right side of the * page around the specified paragraph. - * <p/> + * <p> * To determine if any two adjoining paragraphs should have a right border * which spans the full line height or not, the right border shall be drawn * between the top border or between border at the top (whichever would be @@ -726,7 +726,7 @@ public class XWPFParagraph implements IB * border at the bottom (whichever would be rendered for the current * paragraph). * </p> - * <p/> + * <p> * If this element is omitted on a given paragraph, its value is determined * by the setting previously set at any level of the style hierarchy (i.e. * that previous setting remains unchanged). If this setting is never @@ -768,7 +768,7 @@ public class XWPFParagraph implements IB /** * Specifies the border which shall be displayed between each paragraph in a * set of paragraphs which have the same set of paragraph border settings. - * <p/> + * <p> * To determine if any two adjoining paragraphs should have a between border * or an individual top and bottom border, the set of borders on the two * adjoining paragraphs are compared. If the border information on those two @@ -779,7 +779,7 @@ public class XWPFParagraph implements IB * bottom of each paragraph with an identical following paragraph, taking * into account any space after the line pitch. * </p> - * <p/> + * <p> * If this element is omitted on a given paragraph, its value is determined * by the setting previously set at any level of the style hierarchy (i.e. * that previous setting remains unchanged). If this setting is never @@ -805,7 +805,7 @@ public class XWPFParagraph implements IB * Specifies that when rendering this document in a paginated * view, the contents of this paragraph are rendered on the start of a new * page in the document. - * <p/> + * <p> * If this element is omitted on a given paragraph, * its value is determined by the setting previously set at any level of the * style hierarchy (i.e. that previous setting remains unchanged). If this @@ -847,7 +847,7 @@ public class XWPFParagraph implements IB * Specifies that when rendering this document in a paginated * view, the contents of this paragraph are rendered on the start of a new * page in the document. - * <p/> + * <p> * If this element is omitted on a given paragraph, * its value is determined by the setting previously set at any level of the * style hierarchy (i.e. that previous setting remains unchanged). If this @@ -884,7 +884,7 @@ public class XWPFParagraph implements IB /** * Specifies the spacing that should be added after the last line in this * paragraph in the document in absolute units. - * <p/> + * <p> * If the afterLines attribute or the afterAutoSpacing attribute is also * specified, then this attribute value is ignored. * </p> @@ -920,7 +920,7 @@ public class XWPFParagraph implements IB * <b>The value of this attribute is * specified in one hundredths of a line. * </b> - * <p/> + * <p> * If the afterAutoSpacing attribute * is also specified, then this attribute value is ignored. If this setting * is never specified in the style hierarchy, then its value shall be zero @@ -952,7 +952,7 @@ public class XWPFParagraph implements IB /** * Specifies the spacing that should be added above the first line in this * paragraph in the document in absolute units. - * <p/> + * <p> * If the beforeLines attribute or the beforeAutoSpacing attribute is also * specified, then this attribute value is ignored. * </p> @@ -982,7 +982,7 @@ public class XWPFParagraph implements IB * Specifies the spacing that should be added before the first line in this * paragraph in the document in line units. <b> The value of this attribute * is specified in one hundredths of a line. </b> - * <p/> + * <p> * If the beforeAutoSpacing attribute is also specified, then this attribute * value is ignored. If this setting is never specified in the style * hierarchy, then its value shall be zero. @@ -1084,7 +1084,7 @@ public class XWPFParagraph implements IB * margin for this paragraph and the left edge of that paragraph's content * in a left to right paragraph, and the right text margin and the right * edge of that paragraph's text in a right to left paragraph - * <p/> + * <p> * If this attribute is omitted, its value shall be assumed to be zero. * Negative values are defined such that the text is moved past the text margin, * positive values move the text inside the text margin. @@ -1103,7 +1103,7 @@ public class XWPFParagraph implements IB * margin for this paragraph and the left edge of that paragraph's content * in a left to right paragraph, and the right text margin and the right * edge of that paragraph's text in a right to left paragraph - * <p/> + * <p> * If this attribute is omitted, its value shall be assumed to be zero. * Negative values are defined such that the text is moved past the text margin, * positive values move the text inside the text margin. @@ -1122,7 +1122,7 @@ public class XWPFParagraph implements IB * margin for this paragraph and the right edge of that paragraph's content * in a left to right paragraph, and the right text margin and the right * edge of that paragraph's text in a right to left paragraph - * <p/> + * <p> * If this attribute is omitted, its value shall be assumed to be zero. * Negative values are defined such that the text is moved past the text margin, * positive values move the text inside the text margin. @@ -1142,7 +1142,7 @@ public class XWPFParagraph implements IB * margin for this paragraph and the right edge of that paragraph's content * in a left to right paragraph, and the right text margin and the right * edge of that paragraph's text in a right to left paragraph - * <p/> + * <p> * If this attribute is omitted, its value shall be assumed to be zero. * Negative values are defined such that the text is moved past the text margin, * positive values move the text inside the text margin. @@ -1180,7 +1180,7 @@ public class XWPFParagraph implements IB * towards the beginning of the direction of text flow. * This indentation is specified relative to the paragraph indentation which is specified for * all other lines in the parent paragraph. - * <p/> + * <p> * The firstLine and hanging attributes are mutually exclusive, if both are specified, then the * firstLine value is ignored. * </p> Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFPictureData.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFPictureData.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFPictureData.java (original) +++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFPictureData.java Mon Jul 17 08:24:24 2017 @@ -86,7 +86,7 @@ public class XWPFPictureData extends POI * <p> * Note, that this call might be expensive since all the picture data is copied into a temporary byte array. * You can grab the picture data directly from the underlying package part as follows: - * <br/> + * <br> * <code> * InputStream is = getPackagePart().getInputStream(); * </code> Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRun.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRun.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRun.java (original) +++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRun.java Mon Jul 17 08:24:24 2017 @@ -372,8 +372,8 @@ public class XWPFRun implements ISDTCont /** * Whether the bold property shall be applied to all non-complex script * characters in the contents of this run when displayed in a document - * <p/> - * <p/> + * <p> + * <p> * This formatting property is a toggle property, which specifies that its * behavior differs between its use within a style definition and its use as * direct formatting. When used as part of a style definition, setting this @@ -384,7 +384,7 @@ public class XWPFRun implements ISDTCont * direct formatting, setting this property to true or false shall set the * absolute state of the resulting property. * </p> - * <p/> + * <p> * If this element is not present, the default value is to leave the * formatting applied at previous level in the style hierarchy. If this * element is never applied in the style hierarchy, then bold shall not be @@ -417,8 +417,8 @@ public class XWPFRun implements ISDTCont /** * Specifies that the contents of this run should be displayed along with an * underline appearing directly below the character heigh - * <p/> - * <p/> + * <p> + * <p> * If this element is not present, the default value is to leave the * formatting applied at previous level in the style hierarchy. If this * element is never applied in the style hierarchy, then an underline shall @@ -451,7 +451,7 @@ public class XWPFRun implements ISDTCont /** * Specifies that the contents of this run shall be displayed with a single * horizontal line through the center of the line. - * <p/> + * <p> * This formatting property is a toggle property, which specifies that its * behaviour differs between its use within a style definition and its use as * direct formatting. When used as part of a style definition, setting this @@ -462,7 +462,7 @@ public class XWPFRun implements ISDTCont * formatting, setting this property to true or false shall set the absolute * state of the resulting property. * </p> - * <p/> + * <p> * If this element is not present, the default value is to leave the * formatting applied at previous level in the style hierarchy. If this * element is never applied in the style hierarchy, then strikethrough shall @@ -597,7 +597,7 @@ public class XWPFRun implements ISDTCont * run in relation to the default appearance of the run's text. This allows * the text to be repositioned as subscript or superscript without altering * the font size of the run properties. - * <p/> + * <p> * If this element is not present, the default value is to leave the * formatting applied at previous level in the style hierarchy. If this * element is never applied in the style hierarchy, then the text shall not @@ -666,7 +666,7 @@ public class XWPFRun implements ISDTCont * Specifies the fonts which shall be used to display the text contents of * this run. Specifies a font which shall be used to format all characters * in the ASCII range (0 - 127) within the parent run. - * <p/> + * <p> * Also sets the other font ranges, if they haven't been set before * * @param fontFamily @@ -764,7 +764,7 @@ public class XWPFRun implements ISDTCont /** * Specifies the font size which shall be applied to all non complex script * characters in the contents of this run when displayed. - * <p/> + * <p> * If this element is not present, the default value is to leave the value * applied at previous level in the style hierarchy. If this element is * never applied in the style hierarchy, then any appropriate font size may @@ -799,14 +799,14 @@ public class XWPFRun implements ISDTCont * lowered for this run in relation to the default baseline of the * surrounding non-positioned text. This allows the text to be repositioned * without altering the font size of the contents. - * <p/> + * <p> * If the val attribute is positive, then the parent run shall be raised * above the baseline of the surrounding text by the specified number of * half-points. If the val attribute is negative, then the parent run shall * be lowered below the baseline of the surrounding text by the specified * number of half-points. * </p> - * <p/> + * <p> * If this element is not present, the default value is to leave the * formatting applied at previous level in the style hierarchy. If this * element is never applied in the style hierarchy, then the text shall not Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDT.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDT.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDT.java (original) +++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDT.java Mon Jul 17 08:24:24 2017 @@ -22,7 +22,7 @@ import org.openxmlformats.schemas.wordpr /** * Experimental class to offer rudimentary read-only processing of * of StructuredDocumentTags/ContentControl - * <p/> + * <p> * WARNING - APIs expected to change rapidly */ public class XWPFSDT extends AbstractXWPFSDT Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDTCell.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDTCell.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDTCell.java (original) +++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDTCell.java Mon Jul 17 08:24:24 2017 @@ -22,9 +22,9 @@ import org.openxmlformats.schemas.wordpr * Experimental class to offer rudimentary read-only processing of * of StructuredDocumentTags/ContentControl that can appear * in a table row as if a table cell. - * <p/> + * <p> * These can contain one or more cells or other SDTs within them. - * <p/> + * <p> * WARNING - APIs expected to change rapidly */ public class XWPFSDTCell extends AbstractXWPFSDT implements ICell { Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDTContent.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDTContent.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDTContent.java (original) +++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDTContent.java Mon Jul 17 08:24:24 2017 @@ -31,9 +31,9 @@ import org.openxmlformats.schemas.wordpr /** * Experimental class to offer rudimentary read-only processing of * of the contentblock of an SDT/ContentControl. - * <p/> - * <p/> - * <p/> + * <p> + * <p> + * <p> * WARNING - APIs expected to change rapidly */ public class XWPFSDTContent implements ISDTContent { Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDTContentCell.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDTContentCell.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDTContentCell.java (original) +++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSDTContentCell.java Mon Jul 17 08:24:24 2017 @@ -27,7 +27,7 @@ import org.openxmlformats.schemas.wordpr /** * Experimental class to offer rudimentary read-only processing of * of the XWPFSDTCellContent. - * <p/> + * <p> * WARNING - APIs expected to change rapidly */ public class XWPFSDTContentCell implements ISDTContent { Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSettings.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSettings.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSettings.java (original) +++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFSettings.java Mon Jul 17 08:24:24 2017 @@ -67,10 +67,10 @@ public class XWPFSettings extends POIXML } /** - * Set zoom.<br/> - * In the zoom tag inside settings.xml file <br/> + * Set zoom.<br> + * In the zoom tag inside settings.xml file <br> * it sets the value of zoom - * <br/> + * <br> * sample snippet from settings.xml * <pre> * <w:zoom w:percent="50" /> @@ -95,10 +95,10 @@ public class XWPFSettings extends POIXML } /** - * Set zoom.<br/> - * In the zoom tag inside settings.xml file <br/> + * Set zoom.<br> + * In the zoom tag inside settings.xml file <br> * it sets the value of zoom - * <br/> + * <br> * sample snippet from settings.xml * <pre> * <w:zoom w:percent="50" /> @@ -113,10 +113,10 @@ public class XWPFSettings extends POIXML } /** - * Verifies the documentProtection tag inside settings.xml file <br/> - * if the protection is enforced (w:enforcement="1") <br/> - * <p/> - * <br/> + * Verifies the documentProtection tag inside settings.xml file <br> + * if the protection is enforced (w:enforcement="1") <br> + * <p> + * <br> * sample snippet from settings.xml * <pre> * <w:settings ... > @@ -136,11 +136,11 @@ public class XWPFSettings extends POIXML } /** - * Verifies the documentProtection tag inside settings.xml file <br/> - * if the protection is enforced (w:enforcement="1") <br/> - * and if the kind of protection equals to passed (STDocProtect.Enum editValue) <br/> - * <p/> - * <br/> + * Verifies the documentProtection tag inside settings.xml file <br> + * if the protection is enforced (w:enforcement="1") <br> + * and if the kind of protection equals to passed (STDocProtect.Enum editValue) <br> + * <p> + * <br> * sample snippet from settings.xml * <pre> * <w:settings ... > @@ -160,12 +160,12 @@ public class XWPFSettings extends POIXML } /** - * Enforces the protection with the option specified by passed editValue.<br/> - * <br/> - * In the documentProtection tag inside settings.xml file <br/> - * it sets the value of enforcement to "1" (w:enforcement="1") <br/> - * and the value of edit to the passed editValue (w:edit="[passed editValue]")<br/> - * <br/> + * Enforces the protection with the option specified by passed editValue.<br> + * <br> + * In the documentProtection tag inside settings.xml file <br> + * it sets the value of enforcement to "1" (w:enforcement="1") <br> + * and the value of edit to the passed editValue (w:edit="[passed editValue]")<br> + * <br> * sample snippet from settings.xml * <pre> * <w:settings ... > @@ -178,8 +178,8 @@ public class XWPFSettings extends POIXML } /** - * Enforces the protection with the option specified by passed editValue and password.<br/> - * <br/> + * Enforces the protection with the option specified by passed editValue and password.<br> + * <br> * sample snippet from settings.xml * <pre> * <w:documentProtection w:edit="[passed editValue]" w:enforcement="1" @@ -343,9 +343,9 @@ public class XWPFSettings extends POIXML } /** - * Removes protection enforcement.<br/> - * In the documentProtection tag inside settings.xml file <br/> - * it sets the value of enforcement to "0" (w:enforcement="0") <br/> + * Removes protection enforcement.<br> + * In the documentProtection tag inside settings.xml file <br> + * it sets the value of enforcement to "0" (w:enforcement="0") <br> */ public void removeEnforcement() { safeGetDocumentProtection().setEnforcement(STOnOff.X_0); @@ -353,9 +353,9 @@ public class XWPFSettings extends POIXML /** * Enforces fields update on document open (in Word). - * In the settings.xml file <br/> + * In the settings.xml file <br> * sets the updateSettings value to true (w:updateSettings w:val="true") - * <p/> + * <p> * NOTICES: * <ul> * <li>Causing Word to ask on open: "This document contains fields that may refer to other files. Do you want to update the fields in this document?" Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTable.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTable.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTable.java (original) +++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTable.java Mon Jul 17 08:24:24 2017 @@ -161,7 +161,7 @@ public class XWPFTable implements IBodyE * Convenience method to extract text in cells. This * does not extract text recursively in cells, and it does not * currently include text in SDT (form) components. - * <p/> + * <p> * To get all text within a table, see XWPFWordExtractor's appendTableText * as an example. * Modified: poi/trunk/src/ooxml/testcases/org/apache/poi/openxml4j/opc/TestFileHelper.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/testcases/org/apache/poi/openxml4j/opc/TestFileHelper.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/testcases/org/apache/poi/openxml4j/opc/TestFileHelper.java (original) +++ poi/trunk/src/ooxml/testcases/org/apache/poi/openxml4j/opc/TestFileHelper.java Mon Jul 17 08:24:24 2017 @@ -33,7 +33,7 @@ import org.junit.Test; public final class TestFileHelper { /** - * TODO - use simple JDK methods on {@link File} instead:<br/> + * TODO - use simple JDK methods on {@link File} instead:<br> * {@link File#getParentFile()} instead of {@link FileHelper#getDirectory(File) * {@link File#getName()} instead of {@link FileHelper#getFilename(File) */ Modified: poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFVMLDrawing.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFVMLDrawing.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFVMLDrawing.java (original) +++ poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestXSSFVMLDrawing.java Mon Jul 17 08:24:24 2017 @@ -174,7 +174,7 @@ public class TestXSSFVMLDrawing { } finally { stream.close(); } - Pattern p = Pattern.compile("<br/>"); + Pattern p = Pattern.compile("<br>"); int count = 0; for (XmlObject xo : vml.getItems()) { String split[] = p.split(xo.toString()); Modified: poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/util/TestEvilUnclosedBRFixingInputStream.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/util/TestEvilUnclosedBRFixingInputStream.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/util/TestEvilUnclosedBRFixingInputStream.java (original) +++ poi/trunk/src/ooxml/testcases/org/apache/poi/xssf/util/TestEvilUnclosedBRFixingInputStream.java Mon Jul 17 08:24:24 2017 @@ -32,7 +32,7 @@ public final class TestEvilUnclosedBRFix static class EvilUnclosedBRFixingInputStream extends ReplacingInputStream { public EvilUnclosedBRFixingInputStream(byte[] source) { - super(new ByteArrayInputStream(source), "<br>", "<br/>"); + super(new ByteArrayInputStream(source), "<br>", "<br>"); } } @@ -49,7 +49,7 @@ public final class TestEvilUnclosedBRFix @Test public void testProblem() throws IOException { byte[] orig = getBytes("<p><div>Hello<br>There!</div> <div>Tags!</div></p>"); - byte[] fixed = getBytes("<p><div>Hello<br/>There!</div> <div>Tags!</div></p>"); + byte[] fixed = getBytes("<p><div>Hello<br>There!</div> <div>Tags!</div></p>"); EvilUnclosedBRFixingInputStream inp = new EvilUnclosedBRFixingInputStream(orig); @@ -63,7 +63,7 @@ public final class TestEvilUnclosedBRFix @Test public void testBufferSize() throws IOException { byte[] orig = getBytes("<p><div>Hello<br> <br>There!</div> <div>Tags!<br><br></div></p>"); - byte[] fixed = getBytes("<p><div>Hello<br/> <br/>There!</div> <div>Tags!<br/><br/></div></p>"); + byte[] fixed = getBytes("<p><div>Hello<br> <br>There!</div> <div>Tags!<br><br></div></p>"); // Vary the buffer size, so that we can end up with the br in the // overflow or only part in the buffer Modified: poi/trunk/src/ooxml/testcases/org/apache/poi/xwpf/TestAllExtendedProperties.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/testcases/org/apache/poi/xwpf/TestAllExtendedProperties.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/testcases/org/apache/poi/xwpf/TestAllExtendedProperties.java (original) +++ poi/trunk/src/ooxml/testcases/org/apache/poi/xwpf/TestAllExtendedProperties.java Mon Jul 17 08:24:24 2017 @@ -33,7 +33,7 @@ import org.openxmlformats.schemas.office * submitted because even though the * {@link PackageProperties#getKeywordsProperty()} had been present before, the * {@link CoreProperties#getKeywords()} had been missing. - * <p/> + * <p> * The author of this has added {@link CoreProperties#getKeywords()} and * {@link CoreProperties#setKeywords(String)} and this test is supposed to test * them. Modified: poi/trunk/src/ooxml/testcases/org/apache/poi/xwpf/TestPackageCorePropertiesGetKeywords.java URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/testcases/org/apache/poi/xwpf/TestPackageCorePropertiesGetKeywords.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/ooxml/testcases/org/apache/poi/xwpf/TestPackageCorePropertiesGetKeywords.java (original) +++ poi/trunk/src/ooxml/testcases/org/apache/poi/xwpf/TestPackageCorePropertiesGetKeywords.java Mon Jul 17 08:24:24 2017 @@ -29,7 +29,7 @@ import org.apache.poi.xwpf.usermodel.XWP * submitted because even though the * {@link PackageProperties#getKeywordsProperty()} had been present before, the * {@link CoreProperties#getKeywords()} had been missing. - * <p/> + * <p> * The author of this has added {@link CoreProperties#getKeywords()} and * {@link CoreProperties#setKeywords(String)} and this test is supposed to test * them. Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hslf/record/SSSlideInfoAtom.java URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hslf/record/SSSlideInfoAtom.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/scratchpad/src/org/apache/poi/hslf/record/SSSlideInfoAtom.java (original) +++ poi/trunk/src/scratchpad/src/org/apache/poi/hslf/record/SSSlideInfoAtom.java Mon Jul 17 08:24:24 2017 @@ -24,12 +24,12 @@ import org.apache.poi.util.LittleEndian; import org.apache.poi.util.LittleEndianConsts; /** - * A SlideShowSlideInfo Atom (type 1017).<br/> - * <br/> + * A SlideShowSlideInfo Atom (type 1017).<br> + * <br> * * An atom record that specifies which transition effects to perform - * during a slide show, and how to advance to the next presentation slide.<br/> - * <br/> + * during a slide show, and how to advance to the next presentation slide.<br> + * <br> * * Combination of effectType and effectDirection: * <table> Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hwmf/record/HwmfBitmapDib.java URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hwmf/record/HwmfBitmapDib.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/scratchpad/src/org/apache/poi/hwmf/record/HwmfBitmapDib.java (original) +++ poi/trunk/src/scratchpad/src/org/apache/poi/hwmf/record/HwmfBitmapDib.java Mon Jul 17 08:24:24 2017 @@ -63,7 +63,7 @@ public class HwmfBitmapDib { BI_BITCOUNT_3(0x0008), /** * Each pixel in the bitmap is represented by a 16-bit value. - * <br/> + * <br> * If the Compression field of the BitmapInfoHeader Object is BI_RGB, the Colors field of DIB * is NULL. Each WORD in the bitmap array represents a single pixel. The relative intensities of * red, green, and blue are represented with 5 bits for each color component. The value for blue @@ -71,11 +71,11 @@ public class HwmfBitmapDib { * bit is not used. The color table is used for optimizing colors on palette-based devices, and * contains the number of entries specified by the ColorUsed field of the BitmapInfoHeader * Object. - * <br/> + * <br> * If the Compression field of the BitmapInfoHeader Object is BI_BITFIELDS, the Colors field * contains three DWORD color masks that specify the red, green, and blue components, * respectively, of each pixel. Each WORD in the bitmap array represents a single pixel. - * <br/> + * <br> * When the Compression field is set to BI_BITFIELDS, bits set in each DWORD mask MUST be * contiguous and SHOULD NOT overlap the bits of another mask. */ @@ -90,18 +90,18 @@ public class HwmfBitmapDib { BI_BITCOUNT_5(0x0018), /** * The bitmap has a maximum of 2^24 colors. - * <br/> + * <br> * If the Compression field of the BitmapInfoHeader Object is set to BI_RGB, the Colors field * of DIB is set to NULL. Each DWORD in the bitmap array represents the relative intensities of * blue, green, and red, respectively, for a pixel. The high byte in each DWORD is not used. The * Colors color table is used for optimizing colors used on palette-based devices, and MUST * contain the number of entries specified by the ColorUsed field of the BitmapInfoHeader * Object. - * <br/> + * <br> * If the Compression field of the BitmapInfoHeader Object is set to BI_BITFIELDS, the Colors * field contains three DWORD color masks that specify the red, green, and blue components, * respectively, of each pixel. Each DWORD in the bitmap array represents a single pixel. - * <br/> + * <br> * When the Compression field is set to BI_BITFIELDS, bits set in each DWORD mask must be * contiguous and should not overlap the bits of another mask. All the bits in the pixel do not * need to be used. Modified: poi/trunk/src/scratchpad/testcases/org/apache/poi/hslf/HSLFTestDataSamples.java URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/testcases/org/apache/poi/hslf/HSLFTestDataSamples.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/scratchpad/testcases/org/apache/poi/hslf/HSLFTestDataSamples.java (original) +++ poi/trunk/src/scratchpad/testcases/org/apache/poi/hslf/HSLFTestDataSamples.java Mon Jul 17 08:24:24 2017 @@ -54,7 +54,7 @@ public class HSLFTestDataSamples { /** * Writes a slideshow to a <tt>ByteArrayOutputStream</tt> and reads it back - * from a <tt>ByteArrayInputStream</tt>.<p/> + * from a <tt>ByteArrayInputStream</tt>.<p> * Useful for verifying that the serialisation round trip */ public static HSLFSlideShowImpl writeOutAndReadBack(HSLFSlideShowImpl original) { @@ -70,7 +70,7 @@ public class HSLFTestDataSamples { /** * Writes a slideshow to a <tt>ByteArrayOutputStream</tt> and reads it back - * from a <tt>ByteArrayInputStream</tt>.<p/> + * from a <tt>ByteArrayInputStream</tt>.<p> * Useful for verifying that the serialisation round trip */ public static HSLFSlideShow writeOutAndReadBack(HSLFSlideShow original) { Modified: poi/trunk/src/scratchpad/testcases/org/apache/poi/hwpf/HWPFTestDataSamples.java URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/testcases/org/apache/poi/hwpf/HWPFTestDataSamples.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/scratchpad/testcases/org/apache/poi/hwpf/HWPFTestDataSamples.java (original) +++ poi/trunk/src/scratchpad/testcases/org/apache/poi/hwpf/HWPFTestDataSamples.java Mon Jul 17 08:24:24 2017 @@ -155,7 +155,7 @@ public class HWPFTestDataSamples { } /** * Writes a spreadsheet to a <tt>ByteArrayOutputStream</tt> and reads it back - * from a <tt>ByteArrayInputStream</tt>.<p/> + * from a <tt>ByteArrayInputStream</tt>.<p> * Useful for verifying that the serialisation round trip */ public static HWPFDocument writeOutAndReadBack(HWPFDocument original) { Modified: poi/trunk/src/testcases/org/apache/poi/AllPOITests.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/AllPOITests.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/AllPOITests.java (original) +++ poi/trunk/src/testcases/org/apache/poi/AllPOITests.java Mon Jul 17 08:24:24 2017 @@ -25,7 +25,7 @@ import org.apache.poi.util.AllPOIUtilTes import org.junit.runner.RunWith; import org.junit.runners.Suite; /** - * Root Test Suite for entire POI project. (Includes all sub-packages of org.apache.poi)<br/> + * Root Test Suite for entire POI project. (Includes all sub-packages of org.apache.poi)<br> */ @RunWith(Suite.class) @Suite.SuiteClasses({ Modified: poi/trunk/src/testcases/org/apache/poi/hssf/HSSFTestDataSamples.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/HSSFTestDataSamples.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/HSSFTestDataSamples.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/HSSFTestDataSamples.java Mon Jul 17 08:24:24 2017 @@ -54,7 +54,7 @@ public final class HSSFTestDataSamples { } /** * Writes a spreadsheet to a <tt>ByteArrayOutputStream</tt> and reads it back - * from a <tt>ByteArrayInputStream</tt>.<p/> + * from a <tt>ByteArrayInputStream</tt>.<p> * Useful for verifying that the serialisation round trip */ public static HSSFWorkbook writeOutAndReadBack(HSSFWorkbook original) { Modified: poi/trunk/src/testcases/org/apache/poi/hssf/HSSFTests.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/HSSFTests.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/HSSFTests.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/HSSFTests.java Mon Jul 17 08:24:24 2017 @@ -30,7 +30,7 @@ import org.junit.runner.RunWith; import org.junit.runners.Suite; /** - * Test Suite for all sub-packages of org.apache.poi.hssf<br/> + * Test Suite for all sub-packages of org.apache.poi.hssf<br> */ @RunWith(Suite.class) @Suite.SuiteClasses({ Modified: poi/trunk/src/testcases/org/apache/poi/hssf/model/TestFormulaParser.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/model/TestFormulaParser.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/model/TestFormulaParser.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/model/TestFormulaParser.java Mon Jul 17 08:24:24 2017 @@ -599,7 +599,7 @@ public final class TestFormulaParser { } /** - * Test for bug observable at svn revision 618865 (5-Feb-2008)<br/> + * Test for bug observable at svn revision 618865 (5-Feb-2008)<br> * a formula consisting of a single no-arg function got rendered without the function braces */ @Test @@ -920,7 +920,7 @@ public final class TestFormulaParser { } /** * Make sure that POI uses the right Func Ptg when encoding formulas. Functions with variable - * number of args should get FuncVarPtg, functions with fixed args should get FuncPtg.<p/> + * number of args should get FuncVarPtg, functions with fixed args should get FuncPtg.<p> * * Prior to the fix for bug 44675 POI would encode FuncVarPtg for all functions. In many cases * Excel tolerates the wrong Ptg and evaluates the formula OK (e.g. SIN), but in some cases @@ -1544,7 +1544,7 @@ public final class TestFormulaParser { /** * Zero is not a valid row number so cell references like 'A0' are not valid. * Actually, they should be treated like defined names. - * <br/> + * <br> * In addition, leading zeros (on the row component) should be removed from cell * references during parsing. */ Modified: poi/trunk/src/testcases/org/apache/poi/hssf/model/TestLinkTable.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/model/TestLinkTable.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/model/TestLinkTable.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/model/TestLinkTable.java Mon Jul 17 08:24:24 2017 @@ -50,7 +50,7 @@ public final class TestLinkTable extends /** * The example file attached to bugzilla 45046 is a clear example of Name records being present - * without an External Book (SupBook) record. Excel has no trouble reading this file.<br/> + * without an External Book (SupBook) record. Excel has no trouble reading this file.<br> * TODO get OOO documentation updated to reflect this (that EXTERNALBOOK is optional). * * It's not clear what exact steps need to be taken in Excel to create such a workbook Modified: poi/trunk/src/testcases/org/apache/poi/hssf/model/TestSheet.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/model/TestSheet.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/model/TestSheet.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/model/TestSheet.java Mon Jul 17 08:24:24 2017 @@ -474,7 +474,7 @@ public final class TestSheet { } /** * Prior to bug 45066, POI would get the estimated sheet size wrong - * when an <tt>UncalcedRecord</tt> was present.<p/> + * when an <tt>UncalcedRecord</tt> was present.<p> */ @Test public void testUncalcSize_bug45066() { @@ -498,7 +498,7 @@ public final class TestSheet { /** * Prior to bug 45145 <tt>RowRecordsAggregate</tt> and <tt>ValueRecordsAggregate</tt> could * sometimes occur in reverse order. This test reproduces one of those situations and makes - * sure that RRA comes before VRA.<br/> + * sure that RRA comes before VRA.<br> * * The code here represents a normal POI use case where a spreadsheet is created from scratch. */ Modified: poi/trunk/src/testcases/org/apache/poi/hssf/record/TestBoolErrRecord.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/record/TestBoolErrRecord.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/record/TestBoolErrRecord.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/record/TestBoolErrRecord.java Mon Jul 17 08:24:24 2017 @@ -44,7 +44,7 @@ public final class TestBoolErrRecord ext /** * Bugzilla 47479 was due to an apparent error in OOO which (as of version 3.0.1) - * writes the <i>value</i> field of BOOLERR records as 2 bytes instead of 1.<br/> + * writes the <i>value</i> field of BOOLERR records as 2 bytes instead of 1.<br> * Coincidentally, the extra byte written is zero, which is exactly the value * required by the <i>isError</i> field. This probably why Excel seems to have * no problem. OOO does not have the same bug for error values (which wouldn't Modified: poi/trunk/src/testcases/org/apache/poi/hssf/record/TestDConRefRecord.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/record/TestDConRefRecord.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/record/TestDConRefRecord.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/record/TestDConRefRecord.java Mon Jul 17 08:24:24 2017 @@ -210,7 +210,7 @@ public class TestDConRefRecord extends T /** * test read-constructor-then-serialize for a double-byte external reference 'UNC-Volume' style * string - * <p/> + * <p> * @throws IOException */ public void testReadWriteDBExtRefUncVol() throws IOException @@ -233,7 +233,7 @@ public class TestDConRefRecord extends T /** * test read-constructor-then-serialize for a double-byte self-reference style string - * <p/> + * <p> * @throws IOException */ public void testReadWriteDBSelfRef() throws IOException @@ -243,7 +243,7 @@ public class TestDConRefRecord extends T /** * test read-constructor-then-serialize for a single-byte self-reference style string - * <p/> + * <p> * @throws IOException */ public void testReadWriteSBSelfRef() throws IOException Modified: poi/trunk/src/testcases/org/apache/poi/hssf/record/TestEmbeddedObjectRefSubRecord.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/record/TestEmbeddedObjectRefSubRecord.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/record/TestEmbeddedObjectRefSubRecord.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/record/TestEmbeddedObjectRefSubRecord.java Mon Jul 17 08:24:24 2017 @@ -145,7 +145,7 @@ public final class TestEmbeddedObjectRef public void testVisioDrawing_bug46199() { /** - * taken from ftPictFmla sub-record in attachment 22860 (stream offset 0x768F).<br/> + * taken from ftPictFmla sub-record in attachment 22860 (stream offset 0x768F).<br> * Note that the since the string length is zero, there is no unicode flag byte */ byte[] data46199 = hr( Modified: poi/trunk/src/testcases/org/apache/poi/hssf/record/TestRecordInputStream.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/record/TestRecordInputStream.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/record/TestRecordInputStream.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/record/TestRecordInputStream.java Mon Jul 17 08:24:24 2017 @@ -30,7 +30,7 @@ import junit.framework.TestCase; public final class TestRecordInputStream extends TestCase { /** - * Data inspired by attachment 22626 of bug 45866<br/> + * Data inspired by attachment 22626 of bug 45866<br> * A unicode string of 18 chars, with a continue record where the compression flag changes */ private static final String HED_DUMP1 = "" Modified: poi/trunk/src/testcases/org/apache/poi/hssf/record/TestSubRecord.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/record/TestSubRecord.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/record/TestSubRecord.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/record/TestSubRecord.java Mon Jul 17 08:24:24 2017 @@ -120,7 +120,7 @@ public final class TestSubRecord extends * record 8224 bytes long instead of 70. * (An aside: It seems more than a coincidence that this problem creates a record of exactly * {@link RecordInputStream#MAX_RECORD_DATA_SIZE} but not enough is understood about - * subrecords to explain this.)<br/> + * subrecords to explain this.)<br> * * Excel reads files with this excessive padding OK. It also truncates the over-sized * ObjRecord back to the proper size. POI should do the same. Modified: poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestFormulaRecordAggregate.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestFormulaRecordAggregate.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestFormulaRecordAggregate.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestFormulaRecordAggregate.java Mon Jul 17 08:24:24 2017 @@ -51,7 +51,7 @@ public final class TestFormulaRecordAggr /** * Sometimes a {@link StringRecord} appears after a {@link FormulaRecord} even though the * formula has evaluated to a text value. This might be more likely to occur when the formula - * <i>can</i> evaluate to a text value.<br/> + * <i>can</i> evaluate to a text value.<br> * Bug 46213 attachment 22874 has such an extra {@link StringRecord} at stream offset 0x5765. * This file seems to open in Excel (2007) with no trouble. When it is re-saved, Excel omits * the extra record. POI should do the same. Modified: poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestRowRecordsAggregate.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestRowRecordsAggregate.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestRowRecordsAggregate.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestRowRecordsAggregate.java Mon Jul 17 08:24:24 2017 @@ -66,7 +66,7 @@ public final class TestRowRecordsAggrega * Prior to Aug 2008, POI would re-serialize spreadsheets with {@link ArrayRecord}s or * {@link TableRecord}s with those records out of order. Similar to * {@link SharedFormulaRecord}s, these records should appear immediately after the first - * {@link FormulaRecord}s that they apply to (and only once).<br/> + * {@link FormulaRecord}s that they apply to (and only once).<br> */ @Test public void testArraysAndTables() throws Exception { @@ -127,10 +127,10 @@ public final class TestRowRecordsAggrega /** * This problem was noted as the overt symptom of bug 46280. The logic for skipping {@link * UnknownRecord}s in the constructor {@link RowRecordsAggregate} did not allow for the - * possibility of tailing {@link ContinueRecord}s.<br/> + * possibility of tailing {@link ContinueRecord}s.<br> * The functionality change being tested here is actually not critical to the overall fix * for bug 46280, since the fix involved making sure the that offending <i>PivotTable</i> - * records do not get into {@link RowRecordsAggregate}.<br/> + * records do not get into {@link RowRecordsAggregate}.<br> * This fix in {@link RowRecordsAggregate} was implemented anyway since any {@link * UnknownRecord} has the potential of being 'continued'. */ Modified: poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestSharedValueManager.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestSharedValueManager.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestSharedValueManager.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestSharedValueManager.java Mon Jul 17 08:24:24 2017 @@ -44,7 +44,7 @@ public final class TestSharedValueManage * ranges. The first sheet has one row and one column shared formula ranges which intersect. * The second sheet has two column shared formula ranges - one contained within the other. * These shared formula ranges were created by fill-dragging a single cell formula across the - * desired region. The larger shared formula ranges were placed first.<br/> + * desired region. The larger shared formula ranges were placed first.<br> * * There are probably many ways to produce similar effects, but it should be noted that Excel * is quite temperamental in this regard. Slight variations in technique can cause the shared @@ -58,7 +58,7 @@ public final class TestSharedValueManage * the bugs depended on the {@link SharedFormulaRecord}s being searched in a particular order. * At the time of writing of the test, the order was being determined by the call to {@link * Collection#toArray(Object[])} on {@link HashMap#values()} where the items in the map were - * using default {@link Object#hashCode()}<br/> + * using default {@link Object#hashCode()}<br> */ private static final int MAX_ATTEMPTS=5; @@ -95,7 +95,7 @@ public final class TestSharedValueManage /** * This bug occurs for similar reasons to the bug in {@link #testPartiallyOverlappingRanges()} - * but the symptoms are much uglier - serialization fails with {@link NullPointerException}.<br/> + * but the symptoms are much uglier - serialization fails with {@link NullPointerException}.<br> */ public void testCompletelyOverlappedRanges() { Record[] records; @@ -128,7 +128,7 @@ public final class TestSharedValueManage * records. Prior to this fix, POI would attempt to use the upper left corner of the * shared formula range as the locator cell. The correct cell to use is the 'first cell' * in the shared formula group which is not always the top left cell. This is possible - * because shared formula groups may be sparse and may overlap.<br/> + * because shared formula groups may be sparse and may overlap.<br> * * Two existing sample files (15228.xls and ex45046-21984.xls) had similar issues. * These were not explored fully, but seem to be fixed now. Modified: poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestValueRecordsAggregate.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestValueRecordsAggregate.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestValueRecordsAggregate.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/record/aggregates/TestValueRecordsAggregate.java Mon Jul 17 08:24:24 2017 @@ -214,17 +214,17 @@ public final class TestValueRecordsAggre * Sometimes the 'shared formula' flag (<tt>FormulaRecord.isSharedFormula()</tt>) is set when * there is no corresponding SharedFormulaRecord available. SharedFormulaRecord definitions do * not span multiple sheets. They are are only defined within a sheet, and thus they do not - * have a sheet index field (only row and column range fields).<br/> + * have a sheet index field (only row and column range fields).<br> * So it is important that the code which locates the SharedFormulaRecord for each * FormulaRecord does not allow matches across sheets.</br> * * Prior to bugzilla 44449 (Feb 2008), POI <tt>ValueRecordsAggregate.construct(int, List)</tt> * allowed <tt>SharedFormulaRecord</tt>s to be erroneously used across sheets. That incorrect - * behaviour is shown by this test.<p/> + * behaviour is shown by this test.<p> * * <b>Notes on how to produce the test spreadsheet</b>:</p> * The setup for this test (AbnormalSharedFormulaFlag.xls) is rather fragile, insomuchas - * re-saving the file (either with Excel or POI) clears the flag.<br/> + * re-saving the file (either with Excel or POI) clears the flag.<br> * <ol> * <li>A new spreadsheet was created in Excel (File | New | Blank Workbook).</li> * <li>Sheet3 was deleted.</li> @@ -234,9 +234,9 @@ public final class TestValueRecordsAggre * <li>The spreadsheet was saved as AbnormalSharedFormulaFlag.xls.</li> * </ol> * Prior to the row delete action the spreadsheet has two <tt>SharedFormulaRecord</tt>s. One - * for each sheet. To expose the bug, the shared formulas have been made to overlap.<br/> + * for each sheet. To expose the bug, the shared formulas have been made to overlap.<br> * The row delete action (as described here) seems to to delete the - * <tt>SharedFormulaRecord</tt> from Sheet1 (but not clear the 'shared formula' flags.<br/> + * <tt>SharedFormulaRecord</tt> from Sheet1 (but not clear the 'shared formula' flags.<br> * There are other variations on this theme to create the same effect. * */ Modified: poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFFormulaEvaluator.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFFormulaEvaluator.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFFormulaEvaluator.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFFormulaEvaluator.java Mon Jul 17 08:24:24 2017 @@ -94,7 +94,7 @@ public final class TestHSSFFormulaEvalua /** * When evaluating defined names, POI has to decide whether it is capable. Currently - * (May2009) POI only supports simple cell and area refs.<br/> + * (May2009) POI only supports simple cell and area refs.<br> * The sample spreadsheet (bugzilla attachment 23508) had a name flagged as 'complex' * which contained a simple area ref. It is not clear what the 'complex' flag is used * for but POI should look elsewhere to decide whether it can evaluate the name. Modified: poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFName.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFName.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFName.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFName.java Mon Jul 17 08:24:24 2017 @@ -38,7 +38,7 @@ import static org.junit.Assert.*; public final class TestHSSFName extends BaseTestNamedRange { /** - * For manipulating the internals of {@link HSSFName} during testing.<br/> + * For manipulating the internals of {@link HSSFName} during testing.<br> * Some tests need a {@link NameRecord} with unusual state, not normally producible by POI. * This method achieves the aims at low cost without augmenting the POI usermodel api. * @return a reference to the wrapped {@link NameRecord} Modified: poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestSanityChecker.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestSanityChecker.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestSanityChecker.java (original) +++ poi/trunk/src/testcases/org/apache/poi/hssf/usermodel/TestSanityChecker.java Mon Jul 17 08:24:24 2017 @@ -33,7 +33,7 @@ import org.apache.poi.hssf.usermodel.San import org.junit.Test; /** - * A Test case for a test utility class.<br/> + * A Test case for a test utility class.<br> * Okay, this may seem strange but I need to test my test logic. * * @author Glen Stampoultzis (glens at apache.org) Modified: poi/trunk/src/testcases/org/apache/poi/poifs/filesystem/AllPOIFSFileSystemTests.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/poifs/filesystem/AllPOIFSFileSystemTests.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/poifs/filesystem/AllPOIFSFileSystemTests.java (original) +++ poi/trunk/src/testcases/org/apache/poi/poifs/filesystem/AllPOIFSFileSystemTests.java Mon Jul 17 08:24:24 2017 @@ -21,7 +21,7 @@ import org.junit.runner.RunWith; import org.junit.runners.Suite; /** - * Tests for org.apache.poi.poifs.filesystem<br/> + * Tests for org.apache.poi.poifs.filesystem<br> */ @RunWith(Suite.class) @Suite.SuiteClasses({ Modified: poi/trunk/src/testcases/org/apache/poi/poifs/property/AllPOIFSPropertyTests.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/poifs/property/AllPOIFSPropertyTests.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/poifs/property/AllPOIFSPropertyTests.java (original) +++ poi/trunk/src/testcases/org/apache/poi/poifs/property/AllPOIFSPropertyTests.java Mon Jul 17 08:24:24 2017 @@ -21,7 +21,7 @@ import org.junit.runner.RunWith; import org.junit.runners.Suite; /** - * Tests for org.apache.poi.poifs.property<br/> + * Tests for org.apache.poi.poifs.property<br> */ @RunWith(Suite.class) @Suite.SuiteClasses({ Modified: poi/trunk/src/testcases/org/apache/poi/poifs/storage/AllPOIFSStorageTests.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/poifs/storage/AllPOIFSStorageTests.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/poifs/storage/AllPOIFSStorageTests.java (original) +++ poi/trunk/src/testcases/org/apache/poi/poifs/storage/AllPOIFSStorageTests.java Mon Jul 17 08:24:24 2017 @@ -20,7 +20,7 @@ package org.apache.poi.poifs.storage; import org.junit.runner.RunWith; import org.junit.runners.Suite; /** - * Tests for org.apache.poi.poifs.storage<br/> + * Tests for org.apache.poi.poifs.storage<br> */ @RunWith(Suite.class) @Suite.SuiteClasses({ Modified: poi/trunk/src/testcases/org/apache/poi/poifs/storage/RawDataUtil.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/poifs/storage/RawDataUtil.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/poifs/storage/RawDataUtil.java (original) +++ poi/trunk/src/testcases/org/apache/poi/poifs/storage/RawDataUtil.java Mon Jul 17 08:24:24 2017 @@ -29,7 +29,7 @@ import org.apache.poi.util.HexRead; import org.apache.poi.util.IOUtils; /** - * Test utility class.<br/> + * Test utility class.<br> * * Creates raw <code>byte[]</code> data from hex-dump String arrays. * @@ -48,7 +48,7 @@ public final class RawDataUtil { } /** - * Development time utility method.<br/> + * Development time utility method.<br> * Transforms a byte array into hex-dump String lines in java source code format. */ public static void dumpData(byte[] data) { @@ -73,7 +73,7 @@ public final class RawDataUtil { } /** - * Development time utility method.<br/> + * Development time utility method.<br> * Confirms that the specified byte array is equivalent to the hex-dump String lines. */ public static void confirmEqual(byte[] expected, String[] hexDataLines) { Modified: poi/trunk/src/testcases/org/apache/poi/ss/format/CellFormatTestBase.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/format/CellFormatTestBase.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/ss/format/CellFormatTestBase.java (original) +++ poi/trunk/src/testcases/org/apache/poi/ss/format/CellFormatTestBase.java Mon Jul 17 08:24:24 2017 @@ -52,7 +52,7 @@ import org.apache.poi.util.POILogger; * This class is a base class for spreadsheet-based tests, such as are used for * cell formatting. This reads tests from the spreadsheet, as well as reading * flags that can be used to paramterize these tests. - * <p/> + * <p> * Each test has four parts: The expected result (column A), the format string * (column B), the value to format (column C), and a comma-separated list of * categores that this test falls in. Normally all tests are run, but if the Modified: poi/trunk/src/testcases/org/apache/poi/ss/formula/EvaluationListener.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/EvaluationListener.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/ss/formula/EvaluationListener.java (original) +++ poi/trunk/src/testcases/org/apache/poi/ss/formula/EvaluationListener.java Mon Jul 17 08:24:24 2017 @@ -20,7 +20,7 @@ package org.apache.poi.ss.formula; import org.apache.poi.ss.formula.eval.ValueEval; /** - * Tests should extend this class if they need to track the internal working of the {@link WorkbookEvaluator}.<br/> + * Tests should extend this class if they need to track the internal working of the {@link WorkbookEvaluator}.<br> * * Default method implementations all do nothing * Modified: poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestEqualEval.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestEqualEval.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestEqualEval.java (original) +++ poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestEqualEval.java Mon Jul 17 08:24:24 2017 @@ -33,7 +33,7 @@ public final class TestEqualEval extends private static final EvalInstances EI = null; /** - * Test for bug observable at svn revision 692218 (Sep 2008)<br/> + * Test for bug observable at svn revision 692218 (Sep 2008)<br> * The value from a 1x1 area should be taken immediately, regardless of srcRow and srcCol */ public void test1x1AreaOperand() { @@ -130,7 +130,7 @@ public final class TestEqualEval extends * Bug 47198 involved a formula "-A1=0" where cell A1 was 0.0. * Excel evaluates "-A1=0" to TRUE, not because it thinks -0.0==0.0 * but because "-A1" evaluated to +0.0 - * <p/> + * <p> * Note - the original diagnosis of bug 47198 was that * "Excel considers -0.0 to be equal to 0.0" which is NQR * See {@link TestMinusZeroResult} for more specific tests regarding -0.0. Modified: poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestFormulaBugs.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestFormulaBugs.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestFormulaBugs.java (original) +++ poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestFormulaBugs.java Mon Jul 17 08:24:24 2017 @@ -29,13 +29,13 @@ import static org.junit.Assert.assertEqu import static org.junit.Assert.fail; /** - * Miscellaneous tests for bugzilla entries.<p/> The test name contains the + * Miscellaneous tests for bugzilla entries.<p> The test name contains the * bugzilla bug id. */ public final class TestFormulaBugs { /** - * Bug 27349 - VLOOKUP with reference to another sheet.<p/> This test was + * Bug 27349 - VLOOKUP with reference to another sheet.<p> This test was * added <em>long</em> after the relevant functionality was fixed. */ @Test @@ -66,7 +66,7 @@ public final class TestFormulaBugs { } /** - * Bug 27405 - isnumber() formula always evaluates to false in if statement<p/> + * Bug 27405 - isnumber() formula always evaluates to false in if statement<p> * * seems to be a duplicate of 24925 */ @@ -117,7 +117,7 @@ public final class TestFormulaBugs { } /** - * Bug 42448 - Can't parse SUMPRODUCT(A!C7:A!C67, B8:B68) / B69 <p/> + * Bug 42448 - Can't parse SUMPRODUCT(A!C7:A!C67, B8:B68) / B69 <p> */ @Test public void test42448() throws IOException { Modified: poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestFormulasFromSpreadsheet.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestFormulasFromSpreadsheet.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestFormulasFromSpreadsheet.java (original) +++ poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestFormulasFromSpreadsheet.java Mon Jul 17 08:24:24 2017 @@ -46,7 +46,7 @@ import org.junit.runners.Parameterized.P import junit.framework.AssertionFailedError; /** - * Tests formulas and operators as loaded from a test data spreadsheet.<p/> + * Tests formulas and operators as loaded from a test data spreadsheet.<p> * This class does not test implementors of <tt>Function</tt> and <tt>OperationEval</tt> in * isolation. Much of the evaluation engine (i.e. <tt>HSSFFormulaEvaluator</tt>, ...) gets * exercised as well. Tests for bug fixes and specific/tricky behaviour can be found in the Modified: poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestMinusZeroResult.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestMinusZeroResult.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestMinusZeroResult.java (original) +++ poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestMinusZeroResult.java Mon Jul 17 08:24:24 2017 @@ -28,7 +28,7 @@ import org.apache.poi.util.HexDump; * Negative zero is not easy to observe in Excel, since it is usually converted to 0.0. * (Note - the results of XLL add-in functions don't seem to be converted, so they are one * reliable avenue to observe Excel's treatment of '-0.0' as an operand.) - * <p/> + * <p> * POI attempts to emulate Excel faithfully, so this class tests * two aspects of '-0.0' in formula evaluation: * <ol> Modified: poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestUnaryPlusEval.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestUnaryPlusEval.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestUnaryPlusEval.java (original) +++ poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/TestUnaryPlusEval.java Mon Jul 17 08:24:24 2017 @@ -31,7 +31,7 @@ import org.apache.poi.ss.formula.functio public final class TestUnaryPlusEval extends TestCase { /** - * Test for bug observable at svn revision 618865 (5-Feb-2008)<br/> + * Test for bug observable at svn revision 618865 (5-Feb-2008)<br> * The code for handling column operands had been copy-pasted from the row handling code. */ public void testColumnOperand() { Modified: poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/forked/TestForkedEvaluator.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/forked/TestForkedEvaluator.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/forked/TestForkedEvaluator.java (original) +++ poi/trunk/src/testcases/org/apache/poi/ss/formula/eval/forked/TestForkedEvaluator.java Mon Jul 17 08:24:24 2017 @@ -98,7 +98,7 @@ public class TestForkedEvaluator { * As of Sep 2009, the Forked evaluator can update values from existing cells (this is because * the underlying 'master' cell is used as a key into the calculation cache. Prior to the fix * for this bug, an attempt to update a missing cell would result in NPE. This junit tests for - * a more meaningful error message.<br/> + * a more meaningful error message.<br> * * An alternate solution might involve allowing empty cells to be created as necessary. That * was considered less desirable because so far, the underlying 'master' workbook is strictly Modified: poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/NumericFunctionInvoker.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/NumericFunctionInvoker.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/NumericFunctionInvoker.java (original) +++ poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/NumericFunctionInvoker.java Mon Jul 17 08:24:24 2017 @@ -43,11 +43,11 @@ public final class NumericFunctionInvoke /** * Invokes the specified function with the arguments. - * <p/> + * <p> * Assumes that the cell coordinate parameters of * <code>Function.evaluate(args, srcCellRow, srcCellCol)</code> * are not required. - * <p/> + * <p> * This method cannot be used for confirming error return codes. Any non-numeric evaluation * result causes the current junit test to fail. */ @@ -56,7 +56,7 @@ public final class NumericFunctionInvoke } /** * Invokes the specified operator with the arguments. - * <p/> + * <p> * This method cannot be used for confirming error return codes. Any non-numeric evaluation * result causes the current junit test to fail. */ Modified: poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestCodeFunctionsFromSpreadsheet.java URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestCodeFunctionsFromSpreadsheet.java?rev=1802110&r1=1802109&r2=1802110&view=diff ============================================================================== --- poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestCodeFunctionsFromSpreadsheet.java (original) +++ poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestCodeFunctionsFromSpreadsheet.java Mon Jul 17 08:24:24 2017 @@ -22,7 +22,7 @@ import java.util.Collection; import org.junit.runners.Parameterized.Parameters; /** - * Tests CODE() as loaded from a test data spreadsheet.<p/> + * Tests CODE() as loaded from a test data spreadsheet.<p> */ public class TestCodeFunctionsFromSpreadsheet extends BaseTestFunctionsFromSpreadsheet { @Parameters(name="{0}") --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
