From: <asa...@us...> - 2013-12-13 12:02:42
|
Revision: 8841 http://sourceforge.net/p/htmlunit/code/8841 Author: asashour Date: 2013-12-13 12:02:39 +0000 (Fri, 13 Dec 2013) Log Message: ----------- Trivial javadoc trailing asterisk. Modified Paths: -------------- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersion.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersionFeatures.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/Window.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration.java trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGMatrix.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/WebTestCase.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/activex/javascript/msxml/MSXMLTestUtil.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/xml/XMLDocumentTest.java Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersion.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersion.java 2013-12-12 19:17:25 UTC (rev 8840) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersion.java 2013-12-13 12:02:39 UTC (rev 8841) @@ -120,7 +120,7 @@ /** * Firefox 17 ESR. * @since 2.12 - **/ + */ public static final BrowserVersion FIREFOX_17 = new BrowserVersion( NETSCAPE, "5.0 (Windows)", "Mozilla/5.0 (Windows NT 6.1; rv:17.0) Gecko/20100101 Firefox/17.0", @@ -129,7 +129,7 @@ /** * Firefox 24 ESR. * @since 2.14 - **/ + */ public static final BrowserVersion FIREFOX_24 = new BrowserVersion( NETSCAPE, "5.0 (Windows)", "Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Firefox/24.0", Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersionFeatures.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersionFeatures.java 2013-12-12 19:17:25 UTC (rev 8840) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersionFeatures.java 2013-12-13 12:02:39 UTC (rev 8841) @@ -520,13 +520,13 @@ /** * Indicates outer/innerHtml quotes attributes. - **/ + */ @BrowserFeature({ @WebBrowser(FF), @WebBrowser(CHROME), @WebBrowser(value = IE, minVersion = 11) }) HTMLELEMENT_OUTER_INNER_HTML_QUOTE_ATTRIBUTES, /** * Indicates if a self-closing <iframe/> tag should be considered as an opening tag. - **/ + */ @BrowserFeature({ @WebBrowser(FF), @WebBrowser(CHROME), @WebBrowser(value = IE, minVersion = 11) }) HTMLIFRAME_IGNORE_SELFCLOSING, Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/Window.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/Window.java 2013-12-12 19:17:25 UTC (rev 8840) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/Window.java 2013-12-13 12:02:39 UTC (rev 8841) @@ -1743,7 +1743,7 @@ return 0; } - /** Definition of special cases for the smart DomHtmlAttributeChangeListenerImpl **/ + /** Definition of special cases for the smart DomHtmlAttributeChangeListenerImpl */ private static final Set<String> ATTRIBUTES_AFFECTING_PARENT = new HashSet<String>(Arrays.asList( "style", "class", Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration.java 2013-12-12 19:17:25 UTC (rev 8840) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/css/CSSStyleDeclaration.java 2013-12-13 12:02:39 UTC (rev 8841) @@ -238,7 +238,7 @@ private static final String Z_INDEX = "z-index"; private static final String ZOOM = "zoom"; - /** The width style attribute. **/ + /** The width style attribute. */ protected static final String WIDTH = "width"; private static final Pattern TO_INT_PATTERN = Pattern.compile("(\\d+).*"); Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGMatrix.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGMatrix.java 2013-12-12 19:17:25 UTC (rev 8840) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/svg/SVGMatrix.java 2013-12-13 12:02:39 UTC (rev 8841) @@ -59,7 +59,7 @@ /** * Gets the <code>a</code> entry of the matrix. * @return the field - **/ + */ @JsxGetter public double getA() { return fieldA_; @@ -68,7 +68,7 @@ /** * Gets the <code>b</code> entry of the matrix. * @return the field - **/ + */ @JsxGetter public double getB() { return fieldB_; @@ -77,7 +77,7 @@ /** * Gets the <code>c</code> entry of the matrix. * @return the field - **/ + */ @JsxGetter public double getC() { return fieldC_; @@ -86,7 +86,7 @@ /** * Gets the <code>d</code> entry of the matrix. * @return the field - **/ + */ @JsxGetter public double getD() { return fieldD_; @@ -95,7 +95,7 @@ /** * Gets the <code>e</code> entry of the matrix. * @return the field - **/ + */ @JsxGetter public double getE() { return fieldE_; @@ -104,7 +104,7 @@ /** * Gets the <code>f</code> entry of the matrix. * @return the field - **/ + */ @JsxGetter public double getF() { return fieldF_; @@ -113,7 +113,7 @@ /** * Sets the <code>a</code> entry of the matrix. * @param newValue the new value for the field - **/ + */ @JsxSetter public void setA(final double newValue) { fieldA_ = newValue; @@ -122,7 +122,7 @@ /** * Sets the <code>b</code> entry of the matrix. * @param newValue the new value for the field - **/ + */ @JsxSetter public void setB(final double newValue) { fieldB_ = newValue; @@ -131,7 +131,7 @@ /** * Sets the <code>c</code> entry of the matrix. * @param newValue the new value for the field - **/ + */ @JsxSetter public void setC(final double newValue) { fieldC_ = newValue; @@ -140,7 +140,7 @@ /** * Sets the <code>d</code> entry of the matrix. * @param newValue the new value for the field - **/ + */ @JsxSetter public void setD(final double newValue) { fieldD_ = newValue; @@ -149,7 +149,7 @@ /** * Sets the <code>e</code> entry of the matrix. * @param newValue the new value for the field - **/ + */ @JsxSetter public void setE(final double newValue) { fieldE_ = newValue; @@ -158,7 +158,7 @@ /** * Sets the <code>f</code> entry of the matrix. * @param newValue the new value for the field - **/ + */ @JsxSetter public void setF(final double newValue) { fieldF_ = newValue; Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/WebTestCase.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/WebTestCase.java 2013-12-12 19:17:25 UTC (rev 8840) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/WebTestCase.java 2013-12-13 12:02:39 UTC (rev 8841) @@ -107,7 +107,7 @@ /** * Constant for the URL which is used in the tests. * This URL doesn't use the same host name as {@link #URL_FIRST} and {@link #URL_SECOND}. - **/ + */ public static final URL URL_THIRD; /** Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/activex/javascript/msxml/MSXMLTestUtil.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/activex/javascript/msxml/MSXMLTestUtil.java 2013-12-12 19:17:25 UTC (rev 8840) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/activex/javascript/msxml/MSXMLTestUtil.java 2013-12-13 12:02:39 UTC (rev 8841) @@ -27,7 +27,7 @@ /** Helper. */ public static final String CREATE_XMLDOMDOCUMENT_FUNCTION_NAME = "createXMLDOMDocument"; - /** Helper. **/ + /** Helper. */ public static final String CREATE_XMLDOMDOCUMENT_FUNCTION = "" + " function " + CREATE_XMLDOMDOCUMENT_FUNCTION_NAME + "() {\n" + " return new ActiveXObject('Microsoft.XMLDOM');\n" @@ -36,7 +36,7 @@ /** * Helper. * @return xml helper - **/ + */ public static String callCreateXMLDOMDocument() { return CREATE_XMLDOMDOCUMENT_FUNCTION_NAME + "()"; } @@ -44,7 +44,7 @@ /** Helper. */ public static final String LOAD_XMLDOMDOCUMENT_FROM_STRING_FUNCTION_NAME = "loadXMLDOMDocumentFromString"; - /** Helper. **/ + /** Helper. */ public static final String LOAD_XMLDOMDOCUMENT_FROM_STRING_FUNCTION = "" + " function " + LOAD_XMLDOMDOCUMENT_FROM_STRING_FUNCTION_NAME + "(xml) {\n" + " xmlDoc = new ActiveXObject(\"Microsoft.XMLDOM\");\n" @@ -57,7 +57,7 @@ * Helper. * @param string the parameter * @return xml helper - **/ + */ public static String callLoadXMLDOMDocumentFromString(final String string) { return LOAD_XMLDOMDOCUMENT_FROM_STRING_FUNCTION_NAME + "(" + string + ")"; } @@ -65,7 +65,7 @@ /** Helper. */ public static final String LOAD_XMLDOMDOCUMENT_FROM_URL_FUNCTION_NAME = "loadXMLDOMDocumentFromURL"; - /** Helper. **/ + /** Helper. */ public static final String LOAD_XMLDOMDOCUMENT_FROM_URL_FUNCTION = "" + " function " + LOAD_XMLDOMDOCUMENT_FROM_URL_FUNCTION_NAME + "(url) {\n" + " xmlDoc = new ActiveXObject(\"Microsoft.XMLDOM\");\n" @@ -78,7 +78,7 @@ * Helper. * @param url the parameter * @return xml helper - **/ + */ public static String callLoadXMLDOMDocumentFromURL(final String url) { return LOAD_XMLDOMDOCUMENT_FROM_URL_FUNCTION_NAME + "(" + url + ")"; } @@ -95,7 +95,7 @@ /** * Helper. * @return xml helper - **/ + */ public static String callCreateXMLHTTPRequest() { return CREATE_XMLHTTPREQUEST_FUNCTION_NAME + "()"; } @@ -103,7 +103,7 @@ /** Helper. */ public static final String LOAD_XMLHTTPREQUEST_FROM_URL_FUNCTION_NAME = "loadXMLHTTPRequestFromURL"; - /** Helper. **/ + /** Helper. */ public static final String LOAD_XMLHTTPREQUEST_FROM_URL_FUNCTION = "" + " function " + LOAD_XMLHTTPREQUEST_FROM_URL_FUNCTION_NAME + "(url) {\n" + " xhr = new ActiveXObject(\"Microsoft.XMLHTTP\");\n" @@ -116,7 +116,7 @@ * Helper. * @param url the parameter * @return xml helper - **/ + */ public static String callLoadXMLHTTPRequestFromURL(final String url) { return LOAD_XMLHTTPREQUEST_FROM_URL_FUNCTION_NAME + "(" + url + ")"; } @@ -124,7 +124,7 @@ /** Helper. */ public static final String SERIALIZE_XMLDOMDOCUMENT_TO_STRING_FUNCTION_NAME = "serializeXMLDOMDocumentToString"; - /** Helper. **/ + /** Helper. */ public static final String SERIALIZE_XMLDOMDOCUMENT_TO_STRING_FUNCTION = "" + " function " + SERIALIZE_XMLDOMDOCUMENT_TO_STRING_FUNCTION_NAME + "(doc) {\n" + " return doc.xml;\n" @@ -134,7 +134,7 @@ * Helper. * @param doc the doc parameter * @return xml helper - **/ + */ public static String callSerializeXMLDOMDocumentToString(final String doc) { return SERIALIZE_XMLDOMDOCUMENT_TO_STRING_FUNCTION_NAME + "(" + doc + ")"; } Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/xml/XMLDocumentTest.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/xml/XMLDocumentTest.java 2013-12-12 19:17:25 UTC (rev 8840) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/xml/XMLDocumentTest.java 2013-12-13 12:02:39 UTC (rev 8841) @@ -42,7 +42,7 @@ private static final String CREATE_XML_DOCUMENT_FUNCTION_NAME = "createXMLDocument"; - /** Helper. **/ + /** Helper. */ public static final String CREATE_XML_DOCUMENT_FUNCTION = "" + " function " + CREATE_XML_DOCUMENT_FUNCTION_NAME + "() {\n" + " if (document.implementation && document.implementation.createDocument) {\n" @@ -52,13 +52,13 @@ + " }\n" + " }\n"; - /** Helper. **/ + /** Helper. */ public static final String CREATE_NATIVE_XML_DOCUMENT_FUNCTION = "" + " function " + CREATE_XML_DOCUMENT_FUNCTION_NAME + "() {\n" + " return document.implementation.createDocument('', '', null);\n" + " }\n"; - /** Helper. **/ + /** Helper. */ public static final String CREATE_ACTIVEX_XML_DOCUMENT_FUNCTION = "" + " function " + CREATE_XML_DOCUMENT_FUNCTION_NAME + "() {\n" + " return new ActiveXObject('Microsoft.XMLDOM');\n" @@ -67,14 +67,14 @@ /** * Helper. * @return xml helper - **/ + */ public static String callCreateXMLDocument() { return CREATE_XML_DOCUMENT_FUNCTION_NAME + "()"; } private static final String LOAD_XML_DOCUMENT_FROM_FILE_FUNCTION_NAME = "loadXMLDocumentFromFile"; - /** Helper. **/ + /** Helper. */ public static final String LOAD_XML_DOCUMENT_FROM_FILE_FUNCTION = "" + " function " + LOAD_XML_DOCUMENT_FROM_FILE_FUNCTION_NAME + "(file) {\n" + " if (window.XMLHttpRequest) {\n" @@ -87,7 +87,7 @@ + " return xhttp.responseXML;\n" + " }\n"; - /** Helper. **/ + /** Helper. */ public static final String LOAD_NATIVE_XML_DOCUMENT_FROM_FILE_FUNCTION = "" + " function " + LOAD_XML_DOCUMENT_FROM_FILE_FUNCTION_NAME + "(file) {\n" + " xhttp = new XMLHttpRequest();\n" @@ -96,7 +96,7 @@ + " return xhttp.responseXML;\n" + " }\n"; - /** Helper. **/ + /** Helper. */ public static final String LOAD_ACTIVEX_XML_DOCUMENT_FROM_FILE_FUNCTION = "" + " function " + LOAD_XML_DOCUMENT_FROM_FILE_FUNCTION_NAME + "(file) {\n" + " xhttp = new ActiveXObject(\"Microsoft.XMLHTTP\");\n" @@ -109,14 +109,14 @@ * Helper. * @param file the file parameter * @return xml helper - **/ + */ public static String callLoadXMLDocumentFromFile(final String file) { return LOAD_XML_DOCUMENT_FROM_FILE_FUNCTION_NAME + "(" + file + ")"; } private static final String LOAD_XML_DOCUMENT_FROM_STRING_FUNCTION_NAME = "loadXMLDocumentFromString"; - /** Helper. **/ + /** Helper. */ public static final String LOAD_XML_DOCUMENT_FROM_STRING_FUNCTION = "" + " function " + LOAD_XML_DOCUMENT_FROM_STRING_FUNCTION_NAME + "(xml) {\n" + " if (window.DOMParser) {\n" @@ -130,14 +130,14 @@ + " }\n" + " }\n"; - /** Helper. **/ + /** Helper. */ public static final String LOAD_NATIVE_XML_DOCUMENT_FROM_STRING_FUNCTION = "" + " function " + LOAD_XML_DOCUMENT_FROM_STRING_FUNCTION_NAME + "(xml) {\n" + " parser = new DOMParser();\n" + " return parser.parseFromString(xml,\"text/xml\");\n" + " }\n"; - /** Helper. **/ + /** Helper. */ public static final String LOAD_ACTIVEX_XML_DOCUMENT_FROM_STRING_FUNCTION = "" + " function " + LOAD_XML_DOCUMENT_FROM_STRING_FUNCTION_NAME + "(xml) {\n" + " xmlDoc = new ActiveXObject(\"Microsoft.XMLDOM\");\n" @@ -150,14 +150,14 @@ * Helper. * @param string the parameter * @return xml helper - **/ + */ public static String callLoadXMLDocumentFromString(final String string) { return LOAD_XML_DOCUMENT_FROM_STRING_FUNCTION_NAME + "(" + string + ")"; } private static final String SERIALIZE_XML_DOCUMENT_TO_STRING_FUNCTION_NAME = "serializeXMLDocumentToString"; - /** Helper. **/ + /** Helper. */ public static final String SERIALIZE_XML_DOCUMENT_TO_STRING_FUNCTION = "" + " function " + SERIALIZE_XML_DOCUMENT_TO_STRING_FUNCTION_NAME + "(doc) {\n" + " if (window.XMLSerializer) {\n" @@ -168,14 +168,14 @@ + " }\n" + " }\n"; - /** Helper. **/ + /** Helper. */ public static final String SERIALIZE_NATIVE_XML_DOCUMENT_TO_STRING_FUNCTION = "" + " function " + SERIALIZE_XML_DOCUMENT_TO_STRING_FUNCTION_NAME + "(doc) {\n" + " serializer = new XMLSerializer();\n" + " return serializer.serializeToString(doc);\n" + " }\n"; - /** Helper. **/ + /** Helper. */ public static final String SERIALIZE_ACTIVEX_XML_DOCUMENT_TO_STRING_FUNCTION = "" + " function " + SERIALIZE_XML_DOCUMENT_TO_STRING_FUNCTION_NAME + "(doc) {\n" + " return doc.xml;" @@ -185,7 +185,7 @@ * Helper. * @param doc the doc parameter * @return xml helper - **/ + */ public static String callSerializeXMLDocumentToString(final String doc) { return SERIALIZE_XML_DOCUMENT_TO_STRING_FUNCTION_NAME + "(" + doc + ")"; } |