summaryrefslogtreecommitdiff
path: root/toolkit/qa
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-07 08:55:52 +0200
committerNoel Grandin <noel@peralex.com>2014-08-12 09:41:31 +0200
commit1c496506bc0d720241e5f9877681197e3b6d576a (patch)
treea3cf74b38175e94811f429e88faf6e5daec44492 /toolkit/qa
parentf086884fc33aabd4c9abb1efd8f6892dba4830cf (diff)
java: remove useless javadoc tags
that are not conveying any useful information Change-Id: Ic37934b8cc376fcdcb3d295232452f411dfd43b1
Diffstat (limited to 'toolkit/qa')
-rw-r--r--toolkit/qa/complex/toolkit/accessibility/_XAccessibleComponent.java10
-rw-r--r--toolkit/qa/complex/toolkit/accessibility/_XAccessibleContext.java10
-rw-r--r--toolkit/qa/complex/toolkit/accessibility/_XAccessibleEventBroadcaster.java7
-rw-r--r--toolkit/qa/complex/toolkit/accessibility/_XAccessibleExtendedComponent.java3
-rw-r--r--toolkit/qa/complex/toolkit/accessibility/_XAccessibleText.java17
5 files changed, 0 insertions, 47 deletions
diff --git a/toolkit/qa/complex/toolkit/accessibility/_XAccessibleComponent.java b/toolkit/qa/complex/toolkit/accessibility/_XAccessibleComponent.java
index ee13d01092ed..ea8c29b484e9 100644
--- a/toolkit/qa/complex/toolkit/accessibility/_XAccessibleComponent.java
+++ b/toolkit/qa/complex/toolkit/accessibility/_XAccessibleComponent.java
@@ -53,7 +53,6 @@ public class _XAccessibleComponent {
/**
* Constructor
- * @param object
*/
public _XAccessibleComponent(XInterface object/*, LogWriter log*/) {
oObj = UnoRuntime.queryInterface(
@@ -73,7 +72,6 @@ public class _XAccessibleComponent {
* <ul>
* <li> <code> getBounds() </code> : to have size of a component.</li>
* </ul>
- * @return
*/
public boolean _containsPoint() {
@@ -176,7 +174,6 @@ public class _XAccessibleComponent {
* Has <b> OK </b> status if in the first cases the right children
* are returned, and in the second <code>null</code> or
* another child is returned.
- * @return
*/
public boolean _getAccessibleAtPoint() {
@@ -272,7 +269,6 @@ public class _XAccessibleComponent {
*
* Has <b> OK </b> status if boundary position (x,y) is not negative
* and size (Width, Height) is greater than 0.
- * @return
*/
public boolean _getBounds() {
boolean result = true ;
@@ -299,7 +295,6 @@ public class _XAccessibleComponent {
* <ul>
* <li> <code> getBounds() </code> : to have bounds </li>
* </ul>
- * @return
*/
public boolean _getLocation() {
@@ -324,7 +319,6 @@ public class _XAccessibleComponent {
* <li> <code> getBounds() </code> : to have location of the component
* relative to its parent</li>
* </ul>
- * @return
*/
public boolean _getLocationOnScreen() {
@@ -355,7 +349,6 @@ public class _XAccessibleComponent {
* <ul>
* <li> <code> getBounds() </code> </li>
* </ul>
- * @return
*/
public boolean _getSize() {
@@ -372,7 +365,6 @@ public class _XAccessibleComponent {
* Just calls the method. <p>
*
* Has <b> OK </b> status if no runtime exceptions occurred.
- * @return
*/
public boolean _grabFocus() {
@@ -453,7 +445,6 @@ public class _XAccessibleComponent {
/**
* Just calls the method.
- * @return
*/
public boolean _getForeground() {
int forColor = oObj.getForeground();
@@ -463,7 +454,6 @@ public class _XAccessibleComponent {
/**
* Just calls the method.
- * @return
*/
public boolean _getBackground() {
int backColor = oObj.getBackground();
diff --git a/toolkit/qa/complex/toolkit/accessibility/_XAccessibleContext.java b/toolkit/qa/complex/toolkit/accessibility/_XAccessibleContext.java
index 42c23dd5194c..808f3120d38d 100644
--- a/toolkit/qa/complex/toolkit/accessibility/_XAccessibleContext.java
+++ b/toolkit/qa/complex/toolkit/accessibility/_XAccessibleContext.java
@@ -60,7 +60,6 @@ public class _XAccessibleContext {
/**
* Calls the method and stores the number of children. <p>
* Has <b> OK </b> status if non-negative number rutrned.
- * @return
*/
public boolean _getAccessibleChildCount() {
childCount = oObj.getAccessibleChildCount();
@@ -79,7 +78,6 @@ public class _XAccessibleContext {
* <li> <code> getAccessibleChildCount() </code> : to have a number of
* children </li>
* </ul>
- * @return
*/
public boolean _getAccessibleChild() {
boolean bOK = true;
@@ -131,7 +129,6 @@ public class _XAccessibleContext {
* Just gets the parent. <p>
*
* Has <b> OK </b> status if parent is not null.
- * @return
*/
public boolean _getAccessibleParent() {
// assume that the component is not ROOT
@@ -151,7 +148,6 @@ public class _XAccessibleContext {
* <ul>
* <li> <code> getAccessibleParent() </code> : to have a parent </li>
* </ul>
- * @return
*/
public boolean _getAccessibleIndexInParent() {
@@ -178,7 +174,6 @@ public class _XAccessibleContext {
* Get the accessible role of component. <p>
*
* Has <b> OK </b> status if non-negative number rutrned.
- * @return
*/
public boolean _getAccessibleRole() {
short role = oObj.getAccessibleRole();
@@ -190,7 +185,6 @@ public class _XAccessibleContext {
* Get the accessible name of the component. <p>
*
* Has <b> OK </b> status if the name has non-zero length.
- * @return
*/
public boolean _getAccessibleName() {
String name = oObj.getAccessibleName();
@@ -202,7 +196,6 @@ public class _XAccessibleContext {
* Get the accessible description of the component. <p>
*
* Has <b> OK </b> status if the description has non-zero length.
- * @return
*/
public boolean _getAccessibleDescription() {
String descr = oObj.getAccessibleDescription();
@@ -214,7 +207,6 @@ public class _XAccessibleContext {
* Just gets the set. <p>
*
* Has <b> OK </b> status if the set is not null.
- * @return
*/
public boolean _getAccessibleRelationSet() {
XAccessibleRelationSet set = oObj.getAccessibleRelationSet();
@@ -225,7 +217,6 @@ public class _XAccessibleContext {
* Just gets the set. <p>
*
* Has <b> OK </b> status if the set is not null.
- * @return
*/
public boolean _getAccessibleStateSet() {
XAccessibleStateSet set = oObj.getAccessibleStateSet();
@@ -238,7 +229,6 @@ public class _XAccessibleContext {
* Has <b> OK </b> status if <code>Country</code> and
* <code>Language</code> fields of locale structure
* are not empty.
- * @return
*/
public boolean _getLocale() {
Locale loc = null ;
diff --git a/toolkit/qa/complex/toolkit/accessibility/_XAccessibleEventBroadcaster.java b/toolkit/qa/complex/toolkit/accessibility/_XAccessibleEventBroadcaster.java
index ace9fa367e25..d21d70fb1f12 100644
--- a/toolkit/qa/complex/toolkit/accessibility/_XAccessibleEventBroadcaster.java
+++ b/toolkit/qa/complex/toolkit/accessibility/_XAccessibleEventBroadcaster.java
@@ -98,11 +98,6 @@ public class _XAccessibleEventBroadcaster {
public void disposing(EventObject ev) {}
}
- /**
- * c'tor
- * @param object
- * @param window
- */
public _XAccessibleEventBroadcaster(XInterface object, XWindow window) {
oObj = UnoRuntime.queryInterface(XAccessibleEventBroadcaster.class, object);
prod = new EventProducer(window);
@@ -111,7 +106,6 @@ public class _XAccessibleEventBroadcaster {
/**
* Adds two listeners and fires event by mean of object relation. <p>
* Has <b> OK </b> status if both listeners were called
- * @return
*/
public boolean _addEventListener() {
System.out.println("adding two listeners");
@@ -151,7 +145,6 @@ public class _XAccessibleEventBroadcaster {
* <ul>
* <li> <code>addEventListener()</code> : to have added listeners </li>
* </ul>
- * @return
*/
public boolean _removeEventListener() {
diff --git a/toolkit/qa/complex/toolkit/accessibility/_XAccessibleExtendedComponent.java b/toolkit/qa/complex/toolkit/accessibility/_XAccessibleExtendedComponent.java
index aab89b01e0cb..ad278316efb4 100644
--- a/toolkit/qa/complex/toolkit/accessibility/_XAccessibleExtendedComponent.java
+++ b/toolkit/qa/complex/toolkit/accessibility/_XAccessibleExtendedComponent.java
@@ -54,7 +54,6 @@ public class _XAccessibleExtendedComponent {
/**
* Just calls the method.
- * @return
*/
public boolean _getFont() {
XFont font = oObj.getFont();
@@ -65,7 +64,6 @@ public class _XAccessibleExtendedComponent {
/**
* Calls the method and checks returned value.
* Has OK status if returned value isn't null.
- * @return
*/
public boolean _getTitledBorderText() {
String titleBorderText = oObj.getTitledBorderText();
@@ -76,7 +74,6 @@ public class _XAccessibleExtendedComponent {
/**
* Calls the method and checks returned value.
* Has OK status if returned value isn't null.
- * @return
*/
public boolean _getToolTipText() {
String toolTipText = oObj.getToolTipText();
diff --git a/toolkit/qa/complex/toolkit/accessibility/_XAccessibleText.java b/toolkit/qa/complex/toolkit/accessibility/_XAccessibleText.java
index 33a4f7904a18..4c91a01a294a 100644
--- a/toolkit/qa/complex/toolkit/accessibility/_XAccessibleText.java
+++ b/toolkit/qa/complex/toolkit/accessibility/_XAccessibleText.java
@@ -87,7 +87,6 @@ public class _XAccessibleText {
* <ul>
* <li> <code>setCaretPosition()</code> </li>
* </ul>
- * @return
*/
public boolean _getCaretPosition() {
@@ -119,7 +118,6 @@ public class _XAccessibleText {
* <ul>
* <li> <code>getCharacterCount()</code> </li>
* </ul>
- * @return
*/
public boolean _setCaretPosition() {
boolean res = true;
@@ -168,7 +166,6 @@ public class _XAccessibleText {
* <ul>
* <li> <code>getCharacterCount()</code> </li>
* </ul>
- * @return
*/
public boolean _getCharacter() {
boolean res = true;
@@ -226,7 +223,6 @@ public class _XAccessibleText {
* <ul>
* <li> <code>getCharacterCount()</code> </li>
* </ul>
- * @return
*/
public boolean _getCharacterAttributes() {
boolean res = true;
@@ -277,7 +273,6 @@ public class _XAccessibleText {
* <ul>
* <li> <code>getCharacterCount()</code> </li>
* </ul>
- * @return
*/
public boolean _getCharacterBounds() {
boolean res = true;
@@ -325,7 +320,6 @@ public class _XAccessibleText {
* Calls the method and stores a returned value to the variable
* <code>chCount</code>.
* Has OK status if a returned value is equal to the text length.
- * @return
*/
public boolean _getCharacterCount() {
chCount = oObj.getCharacterCount();
@@ -344,7 +338,6 @@ public class _XAccessibleText {
* <ul>
* <li> <code>getCharacterBounds()</code> </li>
* </ul>
- * @return
*/
public boolean _getIndexAtPoint() {
@@ -373,7 +366,6 @@ public class _XAccessibleText {
* <ul>
* <li> <code>setSelection()</code> </li>
* </ul>
- * @return
*/
public boolean _getSelectedText() {
if (editOnly != null) {
@@ -422,7 +414,6 @@ public class _XAccessibleText {
* <ul>
* <li> <code>setSelection()</code> </li>
* </ul>
- * @return
*/
public boolean _getSelectionStart() {
if (editOnly != null) {
@@ -462,7 +453,6 @@ public class _XAccessibleText {
* <ul>
* <li> <code>setSelection()</code> </li>
* </ul>
- * @return
*/
public boolean _getSelectionEnd() {
if (editOnly != null) {
@@ -503,7 +493,6 @@ public class _XAccessibleText {
* <ul>
* <li> <code>getCharacterCount()</code> </li>
* </ul>
- * @return
*/
public boolean _setSelection() {
boolean res = true;
@@ -576,7 +565,6 @@ public class _XAccessibleText {
* Calls the method and checks returned value.
* Has OK status if returned string is not null
* received from relation.
- * @return
*/
public boolean _getText() {
text = oObj.getText();
@@ -594,7 +582,6 @@ public class _XAccessibleText {
* <ul>
* <li> <code>getCharacterCount()</code> </li>
* </ul>
- * @return
*/
public boolean _getTextRange() {
boolean res = true;
@@ -687,7 +674,6 @@ public class _XAccessibleText {
* <ul>
* <li> <code>getCharacterCount()</code> </li>
* </ul>
- * @return
*/
public boolean _getTextAtIndex() {
boolean res = true;
@@ -759,7 +745,6 @@ public class _XAccessibleText {
* <ul>
* <li> <code>getCharacterCount()</code> </li>
* </ul>
- * @return
*/
public boolean _getTextBeforeIndex() {
boolean res = true;
@@ -847,7 +832,6 @@ public class _XAccessibleText {
* <ul>
* <li> <code>getCharacterCount()</code> </li>
* </ul>
- * @return
*/
public boolean _getTextBehindIndex() {
boolean res = true;
@@ -932,7 +916,6 @@ public class _XAccessibleText {
* Has OK status if exception was thrown for invalid parameters,
* if exception wasn't thrown for valid parameter and if returned value for
* valid parameter is equal to <code>true</code>.
- * @return
*/
public boolean _copyText() {
boolean res = true;