summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment
diff options
context:
space:
mode:
authorAnurag Jain <anuragjainfzd@gmail.com>2012-10-01 14:10:03 +0200
committerThorsten Behrens <tbehrens@suse.com>2012-10-01 14:10:03 +0200
commit37a2fa5d5a58628d317a2305965863dfe50f140e (patch)
tree3530022e65096c94795565c286203802acb261ac /odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment
parent8e01b2aca4aad3c4f366b3f8d385b3dbe9aaa886 (diff)
fdo#51304: Remove the author of some java source files
This patch remove some '@author' for Java souce files, and removes some commented code founded when removing the '@author'. Change-Id: Ic4fcd028a9cdbd85c693d93bcd48e41f36386d22
Diffstat (limited to 'odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java1
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java1
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java1
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java1
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java1
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java1
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java1
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java1
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java1
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java1
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java1
13 files changed, 0 insertions, 15 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java
index 5b37832d46f2..6a618304de45 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java
@@ -41,7 +41,6 @@ import java.awt.event.*;
* Makes it possible to change some states of currently loaded
* document (e.g. enable/disable menubar, toolbar, objectbar)
*
- * @author Andreas Schl&uuml;ns
*/
public class CustomizeView extends JPanel
implements IShutdownListener
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java
index 5251eb5a2051..c565fe547698 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java
@@ -41,7 +41,6 @@ import java.lang.String;
/**
* TODO
*
- * @author Andreas Schl&uuml;ns
*/
public class Desk
{
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
index 37cc140a3dea..030d70e8da67 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
@@ -56,7 +56,6 @@ import java.awt.event.WindowEvent;
* inside the global "ViewContainer" of this java
* demo application which holds all opened views alive.
*
- * @author Andreas Schl&uuml;ns
*/
public class DocumentView extends JFrame
implements com.sun.star.lang.XEventListener, // react for Frame::disposing()
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
index 31d4522260ff..98480189c3d2 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
@@ -58,8 +58,6 @@ import java.net.*;
* There exist some other helper functionality too, which
* doesn't use or demonstrate the office api:
* (a) getting file names by using a file chosser
- *
- * @author Andreas Schl&uuml;ns
*/
public class FunctionHelper
{
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
index 14a1018bbdf8..180137c9f61c 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
@@ -45,7 +45,6 @@ import java.util.Vector;
* interface. It get the object, which whis to be called back and the type and
* parameter of the original request.
*
- * @author Andreas Schl&uuml;ns
*/
public interface IOnewayLink
{
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java
index c3b13e71ed20..de9ac9fa43f2 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java
@@ -38,7 +38,6 @@
* Listener interface to get information about application shutdown
* if java virtual machine dies.
*
- * @author Andreas Schl&uuml;ns
*/
public interface IShutdownListener
{
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
index 7b2aa68a8e96..69e218a25b85 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
@@ -54,8 +54,6 @@ import com.sun.star.uno.UnoRuntime;
* synchronous/asynchronous ... normal ones and oneway calls are mixed.
* Notifications of listener will be oneway mostly - her reactions can
* be synchronous then. => deadlocks are possible
- *
- * @author Andreas Schl&uuml;ns
*/
public class Interceptor implements com.sun.star.frame.XFrameActionListener,
com.sun.star.frame.XDispatchProviderInterceptor,
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java
index 307f3e65ca69..1d405b9e62a3 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java
@@ -46,7 +46,6 @@ import java.awt.*;
* Use JNI functions on already visible canvas objects only!
* Otherwise they can make some trouble.
*
- * @author Andreas Schl&uuml;ns
*/
public class NativeView extends java.awt.Canvas
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java
index cc840cb95ea3..c76d1e4c1525 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java
@@ -49,7 +49,6 @@ import java.lang.String;
* "getConnection()" to open or use internal set connection which is created one
* times only.
*
- * @author Andreas Schl&uuml;ns
*/
public class OfficeConnect
{
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java
index 54b58309538e..0f48ede996ae 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java
@@ -45,7 +45,6 @@ import java.util.Vector;
* of oneway request. Because the source and the target of this call-link knows,
* which method was used and which parameters must be handled.
*
- * @author Andreas Schl&uuml;ns
*/
class OnewayExecutor extends Thread
{
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java
index b6dec65544a4..58ce8a2f178d 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java
@@ -61,7 +61,6 @@ import com.sun.star.uno.UnoRuntime;
* And it's not allowed to call back synchronously there.
* So we must start threads for updating something internaly.
*
- * @author Andreas Schl&uuml;ns
*/
class StatusListener implements com.sun.star.frame.XStatusListener,
com.sun.star.frame.XFrameActionListener,
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
index c250940b379d..40f8c58db9bf 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
@@ -57,7 +57,6 @@ import java.lang.String;
* inside the office process and so exist different threads
* for this constallation.
*
- * @author Andreas Schl&uuml;ns
*/
public class StatusView extends JPanel
implements IShutdownListener
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java
index fb3e675820ae..356ee0772791 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java
@@ -46,7 +46,6 @@ import java.util.*;
* some global functionality - like termination of
* this demo application.
*
- * @author Andreas Schl&uuml;ns
*/
public class ViewContainer extends Thread
{