summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorJosé Guilherme Vanz <guilherme.sft@gmail.com>2012-11-19 21:05:40 -0200
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-11-20 05:15:45 +0000
commit4395680011e5e882d41cd1b3a4a0e14eda7430a8 (patch)
tree438acf9aa5f2d3af06f3ab67b7265fdc19d10013 /wizards
parent677a3f75e77b35f256b77b1de727790b468ab899 (diff)
fdo#51304: Remove @author annotation
This commit removes some @author annotations and some cleanup. Change-Id: Iaf2c4465825dc73af6c1d7377ae847262721c22b Signed-off-by: José Guilherme Vanz <guilherme.sft@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/1122 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/agenda/AgendaTemplate.java1
-rw-r--r--wizards/com/sun/star/wizards/common/ConfigGroup.java5
-rw-r--r--wizards/com/sun/star/wizards/db/DatabaseObjectWizard.java1
-rw-r--r--wizards/com/sun/star/wizards/form/CallFormWizard.java1
-rw-r--r--wizards/com/sun/star/wizards/form/Finalizer.java1
-rw-r--r--wizards/com/sun/star/wizards/table/CallTableWizard.java1
-rw-r--r--wizards/com/sun/star/wizards/ui/ControlScroller.java2
-rw-r--r--wizards/com/sun/star/wizards/ui/event/DataAware.java1
-rw-r--r--wizards/com/sun/star/wizards/web/BackgroundsDialog.java2
-rw-r--r--wizards/com/sun/star/wizards/web/WWD_Events.java1
-rw-r--r--wizards/com/sun/star/wizards/web/WebWizard.java1
11 files changed, 0 insertions, 17 deletions
diff --git a/wizards/com/sun/star/wizards/agenda/AgendaTemplate.java b/wizards/com/sun/star/wizards/agenda/AgendaTemplate.java
index 69659f529681..a022c34b2af2 100644
--- a/wizards/com/sun/star/wizards/agenda/AgendaTemplate.java
+++ b/wizards/com/sun/star/wizards/agenda/AgendaTemplate.java
@@ -90,7 +90,6 @@ import com.sun.star.wizards.ui.event.DataAware;
* A note about threads:<br/>
* Many methods here are synchronized, in order to avoid colission made by
* events fired too often.
- * @author rpiterman
*
*/
public class AgendaTemplate extends TextDocument implements TemplateConsts, DataAware.Listener
diff --git a/wizards/com/sun/star/wizards/common/ConfigGroup.java b/wizards/com/sun/star/wizards/common/ConfigGroup.java
index 0f9970d5ecec..46d069c5f2b1 100644
--- a/wizards/com/sun/star/wizards/common/ConfigGroup.java
+++ b/wizards/com/sun/star/wizards/common/ConfigGroup.java
@@ -19,10 +19,6 @@ package com.sun.star.wizards.common;
import java.lang.reflect.Field;
-/**
- *
- * @author rpiterman
- */
public class ConfigGroup implements ConfigNode
{
@@ -98,7 +94,6 @@ public class ConfigGroup implements ConfigNode
{
return new Double(field.getDouble(this));
}
- //System.out.println("ohoh...");
return null; //and good luck with it :-) ...
}
diff --git a/wizards/com/sun/star/wizards/db/DatabaseObjectWizard.java b/wizards/com/sun/star/wizards/db/DatabaseObjectWizard.java
index f3ee9b6316a8..ca0ec1f5e6af 100644
--- a/wizards/com/sun/star/wizards/db/DatabaseObjectWizard.java
+++ b/wizards/com/sun/star/wizards/db/DatabaseObjectWizard.java
@@ -38,7 +38,6 @@ import java.util.logging.Logger;
/**
* is a base class for a wizard creating a database object
- * @author frank.schoenheit@sun.com
*/
public abstract class DatabaseObjectWizard extends WizardDialog
{
diff --git a/wizards/com/sun/star/wizards/form/CallFormWizard.java b/wizards/com/sun/star/wizards/form/CallFormWizard.java
index 28d15e848d4c..937fb1aa5835 100644
--- a/wizards/com/sun/star/wizards/form/CallFormWizard.java
+++ b/wizards/com/sun/star/wizards/form/CallFormWizard.java
@@ -24,7 +24,6 @@ import com.sun.star.wizards.common.PropertyNames;
/** This class capsulates the class, that implements the minimal component, a
* factory for creating the service (<CODE>__getServiceFactory</CODE>).
- * @author Bertram Nolte
*/
public class CallFormWizard
{
diff --git a/wizards/com/sun/star/wizards/form/Finalizer.java b/wizards/com/sun/star/wizards/form/Finalizer.java
index 764ba19bdfe5..8c4a63b19c02 100644
--- a/wizards/com/sun/star/wizards/form/Finalizer.java
+++ b/wizards/com/sun/star/wizards/form/Finalizer.java
@@ -24,7 +24,6 @@ import com.sun.star.wizards.common.PropertyNames;
import com.sun.star.wizards.ui.*;
/**
- * @author Administrator
*
* To change the template for this generated type comment go to
* Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
diff --git a/wizards/com/sun/star/wizards/table/CallTableWizard.java b/wizards/com/sun/star/wizards/table/CallTableWizard.java
index a30c7c867340..1860c3c7f166 100644
--- a/wizards/com/sun/star/wizards/table/CallTableWizard.java
+++ b/wizards/com/sun/star/wizards/table/CallTableWizard.java
@@ -25,7 +25,6 @@ import com.sun.star.wizards.common.PropertyNames;
/** This class capsulates the class, that implements the minimal component, a
* factory for creating the service (<CODE>__getServiceFactory</CODE>).
- * @author Bertram Nolte
*/
public class CallTableWizard
{
diff --git a/wizards/com/sun/star/wizards/ui/ControlScroller.java b/wizards/com/sun/star/wizards/ui/ControlScroller.java
index b9affa2f625f..509a46508ebf 100644
--- a/wizards/com/sun/star/wizards/ui/ControlScroller.java
+++ b/wizards/com/sun/star/wizards/ui/ControlScroller.java
@@ -78,7 +78,6 @@ public abstract class ControlScroller
* @param _iCompWidth
* @param _nblockincrement
* @param _firsthelpindex
- * @author bc93774
*/
// TODO add parameters for tabindices and helpindex
protected ControlScroller(WizardDialog _CurUnoDialog, XMultiServiceFactory _xMSF, int _iStep, int _iCompPosX, int _iCompPosY, int _iCompWidth, int _nblockincrement, int _nlinedistance, int _firsthelpindex)
@@ -461,7 +460,6 @@ public abstract class ControlScroller
/** inserts a group of controls into the component. The group may either be a row or a column of controls
* The controls should be put on Step 99 (means made invisible at first). All the controlrows that are needed are than
* made visible automatically when calling "initialize(_fieldcount)"
- * @author bc93774
* @param _index The index of the control group
* @param npos Can be an x coordinate or an y coordinate which depends on the orientation of the scrollbar
*/
diff --git a/wizards/com/sun/star/wizards/ui/event/DataAware.java b/wizards/com/sun/star/wizards/ui/event/DataAware.java
index 41ead473b929..05a6d921eae0 100644
--- a/wizards/com/sun/star/wizards/ui/event/DataAware.java
+++ b/wizards/com/sun/star/wizards/ui/event/DataAware.java
@@ -247,7 +247,6 @@ public abstract class DataAware {
* reflection.
* This Object gets and sets a value a specific
* (JavaBean-style) property on a given object.
- * @author rp143992
*/
public static class PropertyValue implements Value {
/**
diff --git a/wizards/com/sun/star/wizards/web/BackgroundsDialog.java b/wizards/com/sun/star/wizards/web/BackgroundsDialog.java
index cda5fb531cf5..792be8eae53e 100644
--- a/wizards/com/sun/star/wizards/web/BackgroundsDialog.java
+++ b/wizards/com/sun/star/wizards/web/BackgroundsDialog.java
@@ -131,7 +131,6 @@ public class BackgroundsDialog extends ImageListDialog
* The image URL is the object given from the list model.
* the image name, got from the "render" method is
* the filename portion of the url.
- * @author rpiterman
*
*/
private class BGRenderer implements ImageList.IImageRenderer
@@ -170,7 +169,6 @@ public class BackgroundsDialog extends ImageListDialog
* It goes through each image in the set, and checks it:
* if it is a directory it lists all image files in this directory.
* if it is a file, it adds the file to the list.
- * @author rpiterman
*/
private class Model extends DefaultListModel
{
diff --git a/wizards/com/sun/star/wizards/web/WWD_Events.java b/wizards/com/sun/star/wizards/web/WWD_Events.java
index a4d4173e28f3..d18ec107555b 100644
--- a/wizards/com/sun/star/wizards/web/WWD_Events.java
+++ b/wizards/com/sun/star/wizards/web/WWD_Events.java
@@ -1078,7 +1078,6 @@ public abstract class WWD_Events extends WWD_Startup
* closing the wizard.
* press "&%" quite fast when the focus is on one
* of the last steps' checkboxes.
- * @author rp143992
*/
private class Create implements XKeyListener
{
diff --git a/wizards/com/sun/star/wizards/web/WebWizard.java b/wizards/com/sun/star/wizards/web/WebWizard.java
index bce64f11ea50..6635aafd1974 100644
--- a/wizards/com/sun/star/wizards/web/WebWizard.java
+++ b/wizards/com/sun/star/wizards/web/WebWizard.java
@@ -24,7 +24,6 @@ import com.sun.star.wizards.common.Desktop;
/**
* The last class in the WebWizard Dialog class hirarchy.
* Has no functionality, is just nice to have it instanciated.
- * @author rpiterman
*/
public class WebWizard extends WWD_Events
{