summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/Forms
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/DevelopersGuide/Forms')
-rw-r--r--odk/examples/DevelopersGuide/Forms/BooleanValidator.java4
-rw-r--r--odk/examples/DevelopersGuide/Forms/ControlValidation.java4
-rw-r--r--odk/examples/DevelopersGuide/Forms/ControlValidator.java6
-rw-r--r--odk/examples/DevelopersGuide/Forms/DateValidator.java5
-rw-r--r--odk/examples/DevelopersGuide/Forms/FormLayer.java4
-rw-r--r--odk/examples/DevelopersGuide/Forms/HsqlDatabase.java4
-rw-r--r--odk/examples/DevelopersGuide/Forms/ListSelectionValidator.java4
-rw-r--r--odk/examples/DevelopersGuide/Forms/NumericValidator.java6
-rw-r--r--odk/examples/DevelopersGuide/Forms/SingleControlValidation.java4
-rw-r--r--odk/examples/DevelopersGuide/Forms/SpreadsheetDocument.java4
-rw-r--r--odk/examples/DevelopersGuide/Forms/SpreadsheetView.java4
-rw-r--r--odk/examples/DevelopersGuide/Forms/TextValidator.java5
-rw-r--r--odk/examples/DevelopersGuide/Forms/TimeValidator.java5
13 files changed, 2 insertions, 57 deletions
diff --git a/odk/examples/DevelopersGuide/Forms/BooleanValidator.java b/odk/examples/DevelopersGuide/Forms/BooleanValidator.java
index 84e6a8a90d30..1237f068d2bd 100644
--- a/odk/examples/DevelopersGuide/Forms/BooleanValidator.java
+++ b/odk/examples/DevelopersGuide/Forms/BooleanValidator.java
@@ -32,10 +32,6 @@
*
*************************************************************************/
-/**
- *
- * @author fs93730
- */
public class BooleanValidator extends ControlValidator
{
private boolean m_preventChecked;
diff --git a/odk/examples/DevelopersGuide/Forms/ControlValidation.java b/odk/examples/DevelopersGuide/Forms/ControlValidation.java
index 67d0cec1d255..ea92c1c3ca8f 100644
--- a/odk/examples/DevelopersGuide/Forms/ControlValidation.java
+++ b/odk/examples/DevelopersGuide/Forms/ControlValidation.java
@@ -18,10 +18,6 @@
import com.sun.star.beans.*;
-/**
- *
- * @author fs@openoffice.org
- */
public class ControlValidation extends DocumentBasedExample
{
/** Creates a new instance of ControlValidation */
diff --git a/odk/examples/DevelopersGuide/Forms/ControlValidator.java b/odk/examples/DevelopersGuide/Forms/ControlValidator.java
index a626aba4ee41..a298776526fd 100644
--- a/odk/examples/DevelopersGuide/Forms/ControlValidator.java
+++ b/odk/examples/DevelopersGuide/Forms/ControlValidator.java
@@ -16,10 +16,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-/** base class for components validating the content of form controls
- *
- * @author fs@openoffice.org
- */
+// base class for components validating the content of form controls
+
public abstract class ControlValidator implements com.sun.star.form.validation.XValidator
{
diff --git a/odk/examples/DevelopersGuide/Forms/DateValidator.java b/odk/examples/DevelopersGuide/Forms/DateValidator.java
index dc2cd5335833..05803e7a6704 100644
--- a/odk/examples/DevelopersGuide/Forms/DateValidator.java
+++ b/odk/examples/DevelopersGuide/Forms/DateValidator.java
@@ -17,11 +17,6 @@
*/
-
-/**
- *
- * @author fs@openoffice.org
- */
public class DateValidator extends ControlValidator
{
diff --git a/odk/examples/DevelopersGuide/Forms/FormLayer.java b/odk/examples/DevelopersGuide/Forms/FormLayer.java
index 58613add913e..1436591292a3 100644
--- a/odk/examples/DevelopersGuide/Forms/FormLayer.java
+++ b/odk/examples/DevelopersGuide/Forms/FormLayer.java
@@ -30,10 +30,6 @@ import com.sun.star.awt.XControlModel;
import com.sun.star.text.TextContentAnchorType;
import com.sun.star.drawing.XDrawPage;
-/**
- *
- * @author fs@openoffice.org
- */
public class FormLayer
{
private DocumentHelper m_document;
diff --git a/odk/examples/DevelopersGuide/Forms/HsqlDatabase.java b/odk/examples/DevelopersGuide/Forms/HsqlDatabase.java
index d967435163a8..01a364c8f3f9 100644
--- a/odk/examples/DevelopersGuide/Forms/HsqlDatabase.java
+++ b/odk/examples/DevelopersGuide/Forms/HsqlDatabase.java
@@ -35,10 +35,6 @@ import java.io.File;
import com.sun.star.util.CloseVetoException;
-/**
- *
- * @author fs93730
- */
public class HsqlDatabase
{
XComponentContext m_context;
diff --git a/odk/examples/DevelopersGuide/Forms/ListSelectionValidator.java b/odk/examples/DevelopersGuide/Forms/ListSelectionValidator.java
index ca46ea61c6b6..d8ae2de9a470 100644
--- a/odk/examples/DevelopersGuide/Forms/ListSelectionValidator.java
+++ b/odk/examples/DevelopersGuide/Forms/ListSelectionValidator.java
@@ -16,10 +16,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-/**
- *
- * @author fs@openoffice.org
- */
public class ListSelectionValidator extends ControlValidator
{
/** Creates a new instance of ListSelectionValidator */
diff --git a/odk/examples/DevelopersGuide/Forms/NumericValidator.java b/odk/examples/DevelopersGuide/Forms/NumericValidator.java
index d12574d847f6..38a9972c7363 100644
--- a/odk/examples/DevelopersGuide/Forms/NumericValidator.java
+++ b/odk/examples/DevelopersGuide/Forms/NumericValidator.java
@@ -16,12 +16,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
-
-/**
- *
- * @author fs@openoffice.org
- */
public class NumericValidator extends ControlValidator
{
diff --git a/odk/examples/DevelopersGuide/Forms/SingleControlValidation.java b/odk/examples/DevelopersGuide/Forms/SingleControlValidation.java
index 0d24c6f04465..50b59640fae3 100644
--- a/odk/examples/DevelopersGuide/Forms/SingleControlValidation.java
+++ b/odk/examples/DevelopersGuide/Forms/SingleControlValidation.java
@@ -21,10 +21,6 @@ import com.sun.star.lang.*;
import com.sun.star.beans.*;
import com.sun.star.form.validation.*;
-/**
- *
- * @author fs@openoffice.org
- */
public class SingleControlValidation implements XFormComponentValidityListener
{
private DocumentHelper m_document; /// our current test document
diff --git a/odk/examples/DevelopersGuide/Forms/SpreadsheetDocument.java b/odk/examples/DevelopersGuide/Forms/SpreadsheetDocument.java
index 2e01786c1dc7..c722bf36a894 100644
--- a/odk/examples/DevelopersGuide/Forms/SpreadsheetDocument.java
+++ b/odk/examples/DevelopersGuide/Forms/SpreadsheetDocument.java
@@ -25,10 +25,6 @@ import com.sun.star.container.XIndexAccess;
import com.sun.star.sheet.XSpreadsheetDocument;
import com.sun.star.beans.NamedValue;
-/**
- *
- * @author fs93730
- */
public class SpreadsheetDocument extends DocumentHelper
{
/** Creates a new blank spreadsheet document */
diff --git a/odk/examples/DevelopersGuide/Forms/SpreadsheetView.java b/odk/examples/DevelopersGuide/Forms/SpreadsheetView.java
index 84bf52dfebf1..679c520f92c3 100644
--- a/odk/examples/DevelopersGuide/Forms/SpreadsheetView.java
+++ b/odk/examples/DevelopersGuide/Forms/SpreadsheetView.java
@@ -27,10 +27,6 @@ import com.sun.star.frame.*;
import com.sun.star.sheet.*;
import com.sun.star.container.*;
-/**
- *
- * @author fs93730
- */
public class SpreadsheetView extends DocumentViewHelper
{
diff --git a/odk/examples/DevelopersGuide/Forms/TextValidator.java b/odk/examples/DevelopersGuide/Forms/TextValidator.java
index a5bfe07f589a..7901d76e2ec0 100644
--- a/odk/examples/DevelopersGuide/Forms/TextValidator.java
+++ b/odk/examples/DevelopersGuide/Forms/TextValidator.java
@@ -17,11 +17,6 @@
*/
-
-/**
- *
- * @author fs@openoffice.org
- */
public class TextValidator extends ControlValidator
{
diff --git a/odk/examples/DevelopersGuide/Forms/TimeValidator.java b/odk/examples/DevelopersGuide/Forms/TimeValidator.java
index 61fd89b0b243..81042294441a 100644
--- a/odk/examples/DevelopersGuide/Forms/TimeValidator.java
+++ b/odk/examples/DevelopersGuide/Forms/TimeValidator.java
@@ -17,11 +17,6 @@
*/
-
-/**
- *
- * @author fs@openoffice.org
- */
public class TimeValidator extends ControlValidator
{