summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/OfficeDev
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/DevelopersGuide/OfficeDev')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/ContextMenuInterceptor.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java4
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java1
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java5
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleHyphenator.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleSpellChecker.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleThesaurus.java2
10 files changed, 8 insertions, 16 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/ContextMenuInterceptor.java b/odk/examples/DevelopersGuide/OfficeDev/ContextMenuInterceptor.java
index 00821f648016..3f0297dcc0ac 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/ContextMenuInterceptor.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/ContextMenuInterceptor.java
@@ -140,8 +140,6 @@ public class ContextMenuInterceptor implements XContextMenuInterceptor {
/**
*Description of the Method
- *
- *@param args Description of Parameter
*/
public ContextMenuInterceptorAction notifyContextMenuExecute(
com.sun.star.ui.ContextMenuExecuteEvent aEvent ) throws RuntimeException {
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java
index a3576b0fc1ae..8972dd0ab99a 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java
@@ -171,10 +171,6 @@ public class CustomizeView extends JPanel
* We use this information to update our check boxes again.
* But such update doesn't force (hopefully) an action event. Otherwhise
* we can produce a never ending recursion!
- *
- * @param aEvent
- * describes the used check box and his current state
- * we can use to dispatch the right URL to the office
*/
class ClickListener implements ActionListener,
com.sun.star.lang.XEventListener
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java
index 7b20bb4e56a6..d89a413decff 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java
@@ -53,7 +53,7 @@ public class Desk
*
* syntax: Desk [mode={inplace|outplace}] [file=<filename>]
*
- * @param args command line arguments
+ * @param lArguments command line arguments
* mode describe using mode of document view {inplace/outplace}
* default=inplace
* file name of first file which should be open
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
index 2f9b8e153bee..44159959398d 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
@@ -926,7 +926,6 @@ public class FunctionHelper
* only, it's enough to check the names of existing child frames on the
* desktop only.
*
- * @return [String]
* should represent an unique frame name, which currently isn't
* used inside the remote office frame tree
* (Couldn't guaranteed for a real multithreaded environment.
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java
index d6f1846f962f..7b409921ec11 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java
@@ -189,7 +189,7 @@ class StatusListener implements com.sun.star.frame.XStatusListener,
* But we shouldn't start such action - if it's not really necessary.
* So we check before, if we are intereested on this event really.
*
- * @see impl_frameAction()
+ * @see #impl_frameAction
*
* @param aEvent
* describes the action, which triggered this event
diff --git a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
index 1cade50192f8..d709edd804d4 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
@@ -127,10 +127,9 @@ public class AsciiReplaceFilter
/**
* The constructor to initialize every instance
*
- * @param xCompContext
+ * @param Context
* the component context of the office
*/
- //ctor
public _AsciiReplaceFilter(XComponentContext Context )
{
measure("ctor started");
@@ -167,7 +166,7 @@ public class AsciiReplaceFilter
* This array of arbitrary objects represent our own filter configuration
* and may optional given parameters of the createWithArguments() call.
*
- * @throws Exception
+ * @throws com.sun.star.uno.Exception
* Every exception will not be handled, but will be
* passed to the caller.
*/
diff --git a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
index fe3bb4248dc2..66ac7893f835 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
@@ -82,7 +82,7 @@ public class FilterOptions
* which can be used after creation of an object instance
* to set a new descriptor here.
*
- * @param xSMGR
+ * @param xMCF
* we need it to create special help service top open
* streams in case they are not already a part of given
* MediaDescriptor
diff --git a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleHyphenator.java b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleHyphenator.java
index 359488231177..fbaf25e5d9cc 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleHyphenator.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleHyphenator.java
@@ -493,7 +493,7 @@ public class SampleHyphenator extends ComponentBase implements
* This method is called by the <code>JavaLoader</code>
* <p>
* @return returns a <code>XComponentServiceFactory</code> for creating the component
- * @param implName the name of the implementation for which a service is desired
+ * @param aImplName the name of the implementation for which a service is desired
* @see com.sun.star.comp.loader.JavaLoader
*/
public static XSingleComponentFactory __getComponentFactory(
diff --git a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleSpellChecker.java b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleSpellChecker.java
index 0b6be21573f2..afc63d95d8eb 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleSpellChecker.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleSpellChecker.java
@@ -436,7 +436,7 @@ public class SampleSpellChecker extends ComponentBase implements
* This method is called by the <code>JavaLoader</code>
* <p>
* @return returns a <code>XSingleComponentFactory</code> for creating the component
- * @param implName the name of the implementation for which a service is desired
+ * @param aImplName the name of the implementation for which a service is desired
* @see com.sun.star.comp.loader.JavaLoader
*/
public static XSingleComponentFactory __getComponentFactory(
diff --git a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleThesaurus.java b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleThesaurus.java
index 9491421b4466..babf7a6afb4f 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleThesaurus.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/SampleThesaurus.java
@@ -272,7 +272,7 @@ public class SampleThesaurus extends ComponentBase implements
* This method is called by the <code>JavaLoader</code>
* <p>
* @return returns a <code>XSingleComponentFactory</code> for creating the component
- * @param implName the name of the implementation for which a service is desired
+ * @param aImplName the name of the implementation for which a service is desired
* @see com.sun.star.comp.loader.JavaLoader
*/
public static XSingleComponentFactory __getComponentFactory(