diff options
author | Noel Grandin <noel@peralex.com> | 2012-08-20 12:54:24 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-08-20 12:54:24 +0100 |
commit | f6a62d9e4106f36aff899c847d63e3198532796e (patch) | |
tree | 2c006788af8c1367510d7cf2706fd1b8cdaa6b12 /framework | |
parent | af4ca5a8c6e2848cb855a15986d5c4c9991140bf (diff) |
Java update - fix various javadoc issues
Along the way, remove some javadoc comments that are completely incorrect.
Change-Id: I02f96b6cbe665d2c10bd6ee245a7d8e2eef0f755
Diffstat (limited to 'framework')
4 files changed, 8 insertions, 10 deletions
diff --git a/framework/qa/complex/XUserInputInterception/EventTest.java b/framework/qa/complex/XUserInputInterception/EventTest.java index 160e9b094ff9..d7b8b320caf5 100644 --- a/framework/qa/complex/XUserInputInterception/EventTest.java +++ b/framework/qa/complex/XUserInputInterception/EventTest.java @@ -309,7 +309,7 @@ public class EventTest { * <CODE>m_keyReleased</CODE> are <CODE>TRUE</CODE> * @param xUII the XUserInputInterception * @param xModel the XModel of a document - * @see EventTest.MyKeyHander + * @see EventTest.MyKeyHandler * @see EventTest.EventTrigger */ private void checkKeyListener(XUserInputInterception xUII, XModel xModel) { @@ -341,10 +341,9 @@ public class EventTest { * <CODE>m_mouseReleased</CODE> are <CODE>TRUE</CODE> * @param xUII the XUserInputInterception * @param xModel the XModel of a document - * @see EventTest.MyMouseClickHander + * @see EventTest.MyMouseClickHandler * @see EventTest.EventTrigger */ - private void checkMouseListener(XUserInputInterception xUII, XModel xModel) { m_mousePressed = false; diff --git a/framework/qa/complex/framework/autosave/Protocol.java b/framework/qa/complex/framework/autosave/Protocol.java index 05fb45455b57..8a78cdb5ac5e 100644 --- a/framework/qa/complex/framework/autosave/Protocol.java +++ b/framework/qa/complex/framework/autosave/Protocol.java @@ -526,7 +526,7 @@ public class Protocol extends JComponent * @param sMessage * the pure message * - * @see log(type,message) + * @see #log(int, String) */ public synchronized void log( /*IN*/ String sMessage ) { @@ -756,8 +756,8 @@ public class Protocol extends JComponent * * @return A string, which includes the whole header. * - * @see finish() - * @see generateHTMLFooter() + * @see #finish() + * @see #impl_generateHTMLFooter() */ private String impl_generateHTMLHeader() { @@ -786,7 +786,7 @@ public class Protocol extends JComponent * @param sOut * used to generate the log output there. * - * @param lProps/aProp + * @param lProps * represent the property(array) to be logged. */ private void impl_logPropertyArray( /*OUT*/ StringBuffer sOut , diff --git a/framework/qa/complex/framework/recovery/RecoveryTest.java b/framework/qa/complex/framework/recovery/RecoveryTest.java index defc57658d21..fedc92e18fe6 100644 --- a/framework/qa/complex/framework/recovery/RecoveryTest.java +++ b/framework/qa/complex/framework/recovery/RecoveryTest.java @@ -539,8 +539,8 @@ public class RecoveryTest extends ComplexTestCase { /** * This function uses accessibility to handle the dialog "Are you sure". - * It cklick "Yes" or "No", dependend on the value of the parameter <CODE>Yes</CODE> - * @param yes If value is <CODE>TRUE</CODE> the button "Yes" was clicked, otherwise the button + * It click "Yes" or "No", depending on the value of the parameter <CODE>Yes</CODE> + * @param saveDocuments If value is <CODE>TRUE</CODE> the button "Yes" was clicked, otherwise the button * "No". */ private void handleSaveDocumentsDialog(boolean saveDocuments) diff --git a/framework/qa/complex/framework/recovery/RecoveryTools.java b/framework/qa/complex/framework/recovery/RecoveryTools.java index 3b9646583a9c..9f4b81836e57 100644 --- a/framework/qa/complex/framework/recovery/RecoveryTools.java +++ b/framework/qa/complex/framework/recovery/RecoveryTools.java @@ -141,7 +141,6 @@ public class RecoveryTools { /** * remove the content of the user backup folder and removes the Recovery.xcu. This * was done from the Office via XSimpleFileAccess - * @param xMSF a <CODE>XMultiServiceFactory</CODE> to get <CODE>XSimpleFileAccess</CODE> * @throws com.sun.star.io.IOException the exception was thrown if something goes wrong. */ public void cleanRecoveryData() |