From 1c496506bc0d720241e5f9877681197e3b6d576a Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 7 Aug 2014 08:55:52 +0200 Subject: java: remove useless javadoc tags that are not conveying any useful information Change-Id: Ic37934b8cc376fcdcb3d295232452f411dfd43b1 --- forms/qa/integration/forms/FormLayer.java | 1 - forms/qa/org/openoffice/xforms/Instance.java | 22 +++++----------------- forms/qa/org/openoffice/xforms/Model.java | 7 ++----- 3 files changed, 7 insertions(+), 23 deletions(-) (limited to 'forms/qa') diff --git a/forms/qa/integration/forms/FormLayer.java b/forms/qa/integration/forms/FormLayer.java index 080d6873e5fd..2ed95c395343 100644 --- a/forms/qa/integration/forms/FormLayer.java +++ b/forms/qa/integration/forms/FormLayer.java @@ -168,7 +168,6 @@ public class FormLayer * the height of the control which is not the label control * @return * the model of the control which is not the label control - * @throws java.lang.Exception */ public XPropertySet createLabeledControl( String _formComponentServiceName, String _label, int _xPos, int _yPos, int _height ) diff --git a/forms/qa/org/openoffice/xforms/Instance.java b/forms/qa/org/openoffice/xforms/Instance.java index 67cadcd99c25..e1e9bd809418 100644 --- a/forms/qa/org/openoffice/xforms/Instance.java +++ b/forms/qa/org/openoffice/xforms/Instance.java @@ -39,11 +39,8 @@ public class Instance * * The element will be inserted immediately below the root node of the instance. * - * @param _elementName - * the name of the to-be-created element - * @return - * the node of the newly created element - * @throws com.sun.star.xml.dom.DOMException + * @param _elementName the name of the to-be-created element + * @return the node of the newly created element */ public XNode createElement( String _elementName ) throws DOMException { @@ -54,13 +51,9 @@ public class Instance * * The element will be inserted immediately below a given XNode. * - * @param _parentElement - * the node whose child shall be created - * @param _elementName - * the name of the to-be-created element - * @return - * the node of the newly created element - * @throws com.sun.star.xml.dom.DOMException + * @param _parentElement the node whose child shall be created + * @param _elementName the name of the to-be-created element + * @return the node of the newly created element */ public XNode createElement( XNode _parentElement, String _elementName ) throws DOMException { @@ -79,7 +72,6 @@ public class Instance * the initial value to set at the node. Might be null, in this case no value is set. * @return * the node of the newly created element - * @throws com.sun.star.xml.dom.DOMException */ public XNode createElement( XNode _parentElement, String _elementName, String _initialNodeValue ) throws DOMException { @@ -129,7 +121,6 @@ public class Instance * the name of the to-be-created attribute * @return * the DOM node, which has already been inserted into the DOM tree - * @throws com.sun.star.xml.dom.DOMException */ public XNode createAttribute( String _attribName ) throws DOMException { @@ -144,7 +135,6 @@ public class Instance * the initial value to set at the node. Might be null, in this case no value is set. * @return * the DOM node, which has already been inserted into the DOM tree - * @throws com.sun.star.xml.dom.DOMException */ public XNode createAttribute( String _attribName, String _initialNodeValue ) throws DOMException { @@ -159,7 +149,6 @@ public class Instance * the name of the to-be-created attribute * @return * the DOM node, which has already been inserted into the DOM tree - * @throws com.sun.star.xml.dom.DOMException */ public XNode createAttribute( XNode _parentElement, String _attribName ) throws DOMException { @@ -176,7 +165,6 @@ public class Instance * the initial value to set at the node. Might be null, in this case no value is set. * @return * the DOM node, which has already been inserted into the DOM tree - * @throws com.sun.star.xml.dom.DOMException */ public XNode createAttribute( XNode _parentElement, String _attribName, String _initialNodeValue ) throws DOMException { diff --git a/forms/qa/org/openoffice/xforms/Model.java b/forms/qa/org/openoffice/xforms/Model.java index d0af835e8053..6cec54ae0fba 100644 --- a/forms/qa/org/openoffice/xforms/Model.java +++ b/forms/qa/org/openoffice/xforms/Model.java @@ -55,11 +55,8 @@ public class Model /** creates a binding for the given DOM node * - * @param _node - * the DOM node to create a binding for - * @param _dataType - * the data type to be used for the binding - * @return + * @param _node the DOM node to create a binding for + * @param _dataType the data type to be used for the binding */ public XPropertySet createBindingForNode( XNode _node, short _dataTypeClass ) { -- cgit