summaryrefslogtreecommitdiff
path: root/forms/qa/integration/forms
diff options
context:
space:
mode:
Diffstat (limited to 'forms/qa/integration/forms')
-rw-r--r--forms/qa/integration/forms/BooleanValidator.java4
-rw-r--r--forms/qa/integration/forms/CellBinding.java12
-rw-r--r--forms/qa/integration/forms/ControlValidation.java2
-rw-r--r--forms/qa/integration/forms/ControlValidator.java10
-rw-r--r--forms/qa/integration/forms/DateValidator.java8
-rw-r--r--forms/qa/integration/forms/DocumentHelper.java4
-rw-r--r--forms/qa/integration/forms/DocumentType.java2
-rw-r--r--forms/qa/integration/forms/DocumentViewHelper.java4
-rw-r--r--forms/qa/integration/forms/FormComponent.java2
-rw-r--r--forms/qa/integration/forms/FormControlTest.java8
-rw-r--r--forms/qa/integration/forms/FormLayer.java6
-rw-r--r--forms/qa/integration/forms/FormPropertyBags.java2
-rw-r--r--forms/qa/integration/forms/ImageComparison.java12
-rw-r--r--forms/qa/integration/forms/ListBox.java2
-rw-r--r--forms/qa/integration/forms/ListSelection.java2
-rw-r--r--forms/qa/integration/forms/ListSelectionValidator.java8
-rw-r--r--forms/qa/integration/forms/MasterDetailForms.java10
-rw-r--r--forms/qa/integration/forms/NumericValidator.java10
-rw-r--r--forms/qa/integration/forms/RadioButtons.java2
-rw-r--r--forms/qa/integration/forms/SingleControlValidation.java8
-rw-r--r--forms/qa/integration/forms/SpreadsheetDocument.java2
-rw-r--r--forms/qa/integration/forms/SpreadsheetView.java4
-rw-r--r--forms/qa/integration/forms/TableCellTextBinding.java2
-rw-r--r--forms/qa/integration/forms/TestCase.java2
-rw-r--r--forms/qa/integration/forms/TestSkeleton.java2
-rw-r--r--forms/qa/integration/forms/TextValidator.java8
-rw-r--r--forms/qa/integration/forms/TimeValidator.java8
-rw-r--r--forms/qa/integration/forms/ValueBinding.java2
-rw-r--r--forms/qa/integration/forms/WaitForInput.java6
-rw-r--r--forms/qa/integration/forms/XMLFormSettings.java6
30 files changed, 80 insertions, 80 deletions
diff --git a/forms/qa/integration/forms/BooleanValidator.java b/forms/qa/integration/forms/BooleanValidator.java
index 3cba1273d63f..4353703a4a92 100644
--- a/forms/qa/integration/forms/BooleanValidator.java
+++ b/forms/qa/integration/forms/BooleanValidator.java
@@ -21,7 +21,7 @@ public class BooleanValidator extends integration.forms.ControlValidator
m_preventChecked = preventChecked;
m_converter = new com.sun.star.uno.AnyConverter();
}
-
+
public String explainInvalid( Object Value )
{
try
@@ -38,7 +38,7 @@ public class BooleanValidator extends integration.forms.ControlValidator
}
return "";
}
-
+
public boolean isValid( Object Value )
{
try
diff --git a/forms/qa/integration/forms/CellBinding.java b/forms/qa/integration/forms/CellBinding.java
index 3bf171d82465..07a8fddd6279 100644
--- a/forms/qa/integration/forms/CellBinding.java
+++ b/forms/qa/integration/forms/CellBinding.java
@@ -398,7 +398,7 @@ public class CellBinding extends complexlib.ComplexTestCase
}
return true;
}
-
+
/* ------------------------------------------------------------------ */
/** verifies that the content of a given cell equals a given string
*/
@@ -425,7 +425,7 @@ public class CellBinding extends complexlib.ComplexTestCase
);
cell.setString( text );
}
-
+
/* ------------------------------------------------------------------ */
/** sets a numeric value in a given cell
*/
@@ -436,7 +436,7 @@ public class CellBinding extends complexlib.ComplexTestCase
);
cell.setValue( value );
}
-
+
/* ------------------------------------------------------------------ */
/** sets a numeric value in a given cell
*/
@@ -450,7 +450,7 @@ public class CellBinding extends complexlib.ComplexTestCase
String[][] args = new String[][] { new String[] { "=INVALID_FUNCTION()" } };
cell.setFormulaArray( args );
}
-
+
/* ------------------------------------------------------------------ */
/** binds the given control model to the given cell in the first sheet,
* using the given service name for the binding
@@ -469,7 +469,7 @@ public class CellBinding extends complexlib.ComplexTestCase
NamedValue[] parameters = new NamedValue[] { new NamedValue() };
parameters[0].Name = "BoundCell";
parameters[0].Value = address;
-
+
XValueBinding cellBinding = (XValueBinding)UnoRuntime.queryInterface( XValueBinding.class,
m_document.createInstanceWithArguments( _bindingServiceName, parameters )
);
@@ -492,7 +492,7 @@ public class CellBinding extends complexlib.ComplexTestCase
{
CellRangeAddress listSourceAddress = new CellRangeAddress( (short)0, (int)_sourceCol, (int)_rowStart, (int)_sourceCol, (int)_rowEnd );
NamedValue addressParameter = new NamedValue( "CellRange", listSourceAddress );
-
+
XListEntrySource listSource = (XListEntrySource)UnoRuntime.queryInterface( XListEntrySource.class,
m_document.createInstanceWithArguments( "com.sun.star.table.CellRangeListSource", new NamedValue[]{ addressParameter } )
);
diff --git a/forms/qa/integration/forms/ControlValidation.java b/forms/qa/integration/forms/ControlValidation.java
index c480ded16a4b..059101801f37 100644
--- a/forms/qa/integration/forms/ControlValidation.java
+++ b/forms/qa/integration/forms/ControlValidation.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
diff --git a/forms/qa/integration/forms/ControlValidator.java b/forms/qa/integration/forms/ControlValidator.java
index 969a9d2f46aa..746115998d8f 100644
--- a/forms/qa/integration/forms/ControlValidator.java
+++ b/forms/qa/integration/forms/ControlValidator.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -32,20 +32,20 @@ package integration.forms;
*/
public abstract class ControlValidator implements com.sun.star.form.validation.XValidator
{
-
+
/** Creates a new instance of ControlValidator */
public ControlValidator()
{
}
-
+
public void addValidityConstraintListener(com.sun.star.form.validation.XValidityConstraintListener xValidityConstraintListener)
{
}
-
+
public void removeValidityConstraintListener(com.sun.star.form.validation.XValidityConstraintListener xValidityConstraintListener)
{
}
-
+
protected boolean isVoid( Object Value )
{
try
diff --git a/forms/qa/integration/forms/DateValidator.java b/forms/qa/integration/forms/DateValidator.java
index 1ae2bbe48058..526ba1031c4b 100644
--- a/forms/qa/integration/forms/DateValidator.java
+++ b/forms/qa/integration/forms/DateValidator.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -34,12 +34,12 @@ import com.sun.star.form.binding.*;
*/
public class DateValidator extends integration.forms.ControlValidator
{
-
+
/** Creates a new instance of NumericValidator */
public DateValidator( )
{
}
-
+
public String explainInvalid( Object Value )
{
try
@@ -60,7 +60,7 @@ public class DateValidator extends integration.forms.ControlValidator
}
return "";
}
-
+
public boolean isValid( Object Value )
{
try
diff --git a/forms/qa/integration/forms/DocumentHelper.java b/forms/qa/integration/forms/DocumentHelper.java
index 524f6b939afb..f4dbac80b26c 100644
--- a/forms/qa/integration/forms/DocumentHelper.java
+++ b/forms/qa/integration/forms/DocumentHelper.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -185,7 +185,7 @@ public class DocumentHelper
* of the document, they will become invalid.
* The Model instance itself, at which you called reload, will still be valid, it will
* automatically update its internal state after the reload.
- *
+ *
* Another consequence is that if the document does not have a view at all, it cannot
* be reloaded.
*/
diff --git a/forms/qa/integration/forms/DocumentType.java b/forms/qa/integration/forms/DocumentType.java
index cc52e6a1aabc..88455824a33b 100644
--- a/forms/qa/integration/forms/DocumentType.java
+++ b/forms/qa/integration/forms/DocumentType.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
diff --git a/forms/qa/integration/forms/DocumentViewHelper.java b/forms/qa/integration/forms/DocumentViewHelper.java
index afd89841a8d2..9260d680f58c 100644
--- a/forms/qa/integration/forms/DocumentViewHelper.java
+++ b/forms/qa/integration/forms/DocumentViewHelper.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -53,7 +53,7 @@ import org.openoffice.xforms.XMLDocument;
*/
public class DocumentViewHelper
{
- private XMultiServiceFactory m_orb;
+ private XMultiServiceFactory m_orb;
private XController m_controller;
private DocumentHelper m_document;
diff --git a/forms/qa/integration/forms/FormComponent.java b/forms/qa/integration/forms/FormComponent.java
index 6e6676fff94f..75bb5958d711 100644
--- a/forms/qa/integration/forms/FormComponent.java
+++ b/forms/qa/integration/forms/FormComponent.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
diff --git a/forms/qa/integration/forms/FormControlTest.java b/forms/qa/integration/forms/FormControlTest.java
index 7fdf68dea796..58af651942d7 100644
--- a/forms/qa/integration/forms/FormControlTest.java
+++ b/forms/qa/integration/forms/FormControlTest.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -496,7 +496,7 @@ public class FormControlTest extends complexlib.ComplexTestCase implements XSQLE
XPropertySet dataSourceSettings = (XPropertySet)UnoRuntime.queryInterface( XPropertySet.class,
m_dataSourceProps.getPropertyValue( "Settings" ) );
dataSourceSettings.setPropertyValue( "FormsCheckRequiredFields", new Boolean( false ) );
-
+
return m_dataSource != null;
}
@@ -514,12 +514,12 @@ public class FormControlTest extends complexlib.ComplexTestCase implements XSQLE
/* ------------------------------------------------------------------ */
private void createSampleDocument() throws com.sun.star.uno.Exception, java.lang.Exception
{
-
+
m_document = DocumentHelper.blankTextDocument( m_orb );
m_formLayer = new FormLayer( m_document );
// insert some controls
- XPropertySet xIDField = m_formLayer.insertControlLine( "DatabaseNumericField", "ID", "", 3 );
+ XPropertySet xIDField = m_formLayer.insertControlLine( "DatabaseNumericField", "ID", "", 3 );
m_formLayer.insertControlLine( "DatabaseFormattedField","f_integer", "", 11 );
m_formLayer.insertControlLine( "DatabaseTextField", "f_text", "", 19 );
XPropertySet xReqField = m_formLayer.insertControlLine( "DatabaseTextField", "f_required_text", "", 27 );
diff --git a/forms/qa/integration/forms/FormLayer.java b/forms/qa/integration/forms/FormLayer.java
index d1b50f0d246c..087424ee43d4 100644
--- a/forms/qa/integration/forms/FormLayer.java
+++ b/forms/qa/integration/forms/FormLayer.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -168,7 +168,7 @@ public class FormLayer
}
/** creates a pair of controls, namely a label control, and another control labeled by it
- *
+ *
* @param _formComponentServiceName
* the service name for the control which is not the label control
* @param _label
@@ -203,7 +203,7 @@ public class FormLayer
return field;
}
-
+
/* ------------------------------------------------------------------ */
/** creates a line of controls, consisting of a label and a field for data input.
diff --git a/forms/qa/integration/forms/FormPropertyBags.java b/forms/qa/integration/forms/FormPropertyBags.java
index c2cd36289a42..d6fab4bda945 100644
--- a/forms/qa/integration/forms/FormPropertyBags.java
+++ b/forms/qa/integration/forms/FormPropertyBags.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
diff --git a/forms/qa/integration/forms/ImageComparison.java b/forms/qa/integration/forms/ImageComparison.java
index 87f2c82f928d..859d1b1bbce8 100644
--- a/forms/qa/integration/forms/ImageComparison.java
+++ b/forms/qa/integration/forms/ImageComparison.java
@@ -12,7 +12,7 @@ package integration.forms;
*/
public final class ImageComparison implements com.sun.star.awt.XImageConsumer
{
-
+
private byte[] m_referenceBytes;
private int m_referencePosition;
private java.io.FileOutputStream m_stream;
@@ -38,15 +38,15 @@ public final class ImageComparison implements com.sun.star.awt.XImageConsumer
m_notifyDone.notify();
}
}
-
+
public void init(int param, int param1)
{
}
-
+
public void setColorModel(short param, int[] values, int param2, int param3, int param4, int param5)
{
}
-
+
public void setPixelsByBytes(int param, int param1, int param2, int param3, byte[] values, int param5, int param6)
{
if ( m_referencePosition == -1 )
@@ -65,9 +65,9 @@ public final class ImageComparison implements com.sun.star.awt.XImageConsumer
++m_referencePosition;
}
}
-
+
public void setPixelsByLongs(int param, int param1, int param2, int param3, int[] values, int param5, int param6)
{
}
-
+
}
diff --git a/forms/qa/integration/forms/ListBox.java b/forms/qa/integration/forms/ListBox.java
index 6e50291d6525..11af2682023e 100644
--- a/forms/qa/integration/forms/ListBox.java
+++ b/forms/qa/integration/forms/ListBox.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
diff --git a/forms/qa/integration/forms/ListSelection.java b/forms/qa/integration/forms/ListSelection.java
index 24a5290dc1d4..e26acd69c349 100644
--- a/forms/qa/integration/forms/ListSelection.java
+++ b/forms/qa/integration/forms/ListSelection.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
diff --git a/forms/qa/integration/forms/ListSelectionValidator.java b/forms/qa/integration/forms/ListSelectionValidator.java
index 4f25b162712d..489772047401 100644
--- a/forms/qa/integration/forms/ListSelectionValidator.java
+++ b/forms/qa/integration/forms/ListSelectionValidator.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -37,7 +37,7 @@ public class ListSelectionValidator extends integration.forms.ControlValidator
public ListSelectionValidator()
{
}
-
+
public String explainInvalid( Object Value )
{
try
@@ -52,7 +52,7 @@ public class ListSelectionValidator extends integration.forms.ControlValidator
}
return "";
}
-
+
public boolean isValid( Object Value )
{
try
@@ -67,5 +67,5 @@ public class ListSelectionValidator extends integration.forms.ControlValidator
}
return false;
}
-
+
}
diff --git a/forms/qa/integration/forms/MasterDetailForms.java b/forms/qa/integration/forms/MasterDetailForms.java
index cd51abc3e446..90f9f511cf55 100644
--- a/forms/qa/integration/forms/MasterDetailForms.java
+++ b/forms/qa/integration/forms/MasterDetailForms.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -72,7 +72,7 @@ public class MasterDetailForms extends complexlib.ComplexTestCase implements com
public MasterDetailForms()
{
}
-
+
/* ------------------------------------------------------------------ */
public String[] getTestMethodNames()
{
@@ -96,7 +96,7 @@ public class MasterDetailForms extends complexlib.ComplexTestCase implements com
/* ------------------------------------------------------------------ */
/** creates the table structure needed for the test
- */
+ */
private void impl_createTableStructure( final HsqlDatabase _databaseDocument ) throws SQLException
{
HsqlColumnDescriptor[] masterColumns = {
@@ -383,7 +383,7 @@ public class MasterDetailForms extends complexlib.ComplexTestCase implements com
m_loaded = false;
}
}
-
+
/** assures that the (integer) values in the given columns of our master and detail forms are identical
*/
private void verifyColumnValueIdentity( final String masterColName, final String detailColName ) throws SQLException
@@ -394,7 +394,7 @@ public class MasterDetailForms extends complexlib.ComplexTestCase implements com
int masterValue = m_masterResult.getInt( locateMasterCols.findColumn( masterColName ) );
int detailValue = m_detailResult.getInt( locateDetailCols.findColumn( detailColName ) );
- assure( "values in linked column pair " + detailColName + "->" + masterColName + " (" +
+ assure( "values in linked column pair " + detailColName + "->" + masterColName + " (" +
detailValue + "->" + masterValue + ") do not match (master position: " + m_masterResult.getRow() + ")!",
masterValue == detailValue );
}
diff --git a/forms/qa/integration/forms/NumericValidator.java b/forms/qa/integration/forms/NumericValidator.java
index 4fed12c4fd2b..cc8662c24a8c 100644
--- a/forms/qa/integration/forms/NumericValidator.java
+++ b/forms/qa/integration/forms/NumericValidator.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -34,12 +34,12 @@ import com.sun.star.form.binding.*;
*/
public class NumericValidator extends integration.forms.ControlValidator
{
-
+
/** Creates a new instance of NumericValidator */
public NumericValidator( )
{
}
-
+
public String explainInvalid( Object Value )
{
try
@@ -58,7 +58,7 @@ public class NumericValidator extends integration.forms.ControlValidator
}
return "";
}
-
+
public boolean isValid( Object Value )
{
try
@@ -77,7 +77,7 @@ public class NumericValidator extends integration.forms.ControlValidator
}
return false;
}
-
+
private boolean isProperRange( double value)
{
return ( value >= 0 ) && ( value <= 100 );
diff --git a/forms/qa/integration/forms/RadioButtons.java b/forms/qa/integration/forms/RadioButtons.java
index 3ce02787b330..4a731a6d2e1f 100644
--- a/forms/qa/integration/forms/RadioButtons.java
+++ b/forms/qa/integration/forms/RadioButtons.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
diff --git a/forms/qa/integration/forms/SingleControlValidation.java b/forms/qa/integration/forms/SingleControlValidation.java
index 637e9c9e4e26..50490a44db73 100644
--- a/forms/qa/integration/forms/SingleControlValidation.java
+++ b/forms/qa/integration/forms/SingleControlValidation.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -71,7 +71,7 @@ public class SingleControlValidation implements XFormComponentValidityListener
m_formLayer = new FormLayer( m_document );
createControls( columnPos, rowPos, formComponentService, controlCount, controlHeight );
}
-
+
/* ------------------------------------------------------------------ */
public XPropertySet getInputField()
{
@@ -155,7 +155,7 @@ public class SingleControlValidation implements XFormComponentValidityListener
{
// not interested in
}
-
+
/* ------------------------------------------------------------------ */
/* XFormComponentValidityListener overridables */
/* ------------------------------------------------------------------ */
@@ -187,5 +187,5 @@ public class SingleControlValidation implements XFormComponentValidityListener
e.printStackTrace( System.out );
}
}
-
+
}
diff --git a/forms/qa/integration/forms/SpreadsheetDocument.java b/forms/qa/integration/forms/SpreadsheetDocument.java
index 8f156fe8e3b6..91d348998302 100644
--- a/forms/qa/integration/forms/SpreadsheetDocument.java
+++ b/forms/qa/integration/forms/SpreadsheetDocument.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
diff --git a/forms/qa/integration/forms/SpreadsheetView.java b/forms/qa/integration/forms/SpreadsheetView.java
index 19f7bd429290..819cca3f4d17 100644
--- a/forms/qa/integration/forms/SpreadsheetView.java
+++ b/forms/qa/integration/forms/SpreadsheetView.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -47,7 +47,7 @@ import integration.forms.DocumentHelper;
*/
public class SpreadsheetView extends integration.forms.DocumentViewHelper
{
-
+
/** Creates a new instance of SpreadsheetView */
public SpreadsheetView( XMultiServiceFactory orb, DocumentHelper document, XController controller )
{
diff --git a/forms/qa/integration/forms/TableCellTextBinding.java b/forms/qa/integration/forms/TableCellTextBinding.java
index 6517ed5c90f0..f6b38013ef46 100644
--- a/forms/qa/integration/forms/TableCellTextBinding.java
+++ b/forms/qa/integration/forms/TableCellTextBinding.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
diff --git a/forms/qa/integration/forms/TestCase.java b/forms/qa/integration/forms/TestCase.java
index aeaa8048f92c..6498515b6cc4 100644
--- a/forms/qa/integration/forms/TestCase.java
+++ b/forms/qa/integration/forms/TestCase.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
diff --git a/forms/qa/integration/forms/TestSkeleton.java b/forms/qa/integration/forms/TestSkeleton.java
index 2736395ff400..c5471d097be8 100644
--- a/forms/qa/integration/forms/TestSkeleton.java
+++ b/forms/qa/integration/forms/TestSkeleton.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
diff --git a/forms/qa/integration/forms/TextValidator.java b/forms/qa/integration/forms/TextValidator.java
index db340f93abcc..e59d77013490 100644
--- a/forms/qa/integration/forms/TextValidator.java
+++ b/forms/qa/integration/forms/TextValidator.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -34,7 +34,7 @@ import com.sun.star.form.binding.*;
*/
public class TextValidator extends integration.forms.ControlValidator
{
-
+
/** Creates a new instance of NumericValidator */
public TextValidator( )
{
@@ -56,7 +56,7 @@ public class TextValidator extends integration.forms.ControlValidator
}
return "";
}
-
+
public boolean isValid( Object Value )
{
try
@@ -73,7 +73,7 @@ public class TextValidator extends integration.forms.ControlValidator
}
return false;
}
-
+
private boolean isProperChunks( String value )
{
return ( value.length() % 3 ) == 0;
diff --git a/forms/qa/integration/forms/TimeValidator.java b/forms/qa/integration/forms/TimeValidator.java
index 116f98455d94..3ed3b6756209 100644
--- a/forms/qa/integration/forms/TimeValidator.java
+++ b/forms/qa/integration/forms/TimeValidator.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -34,12 +34,12 @@ import com.sun.star.form.binding.*;
*/
public class TimeValidator extends integration.forms.ControlValidator
{
-
+
/** Creates a new instance of NumericValidator */
public TimeValidator( )
{
}
-
+
public String explainInvalid( Object Value )
{
try
@@ -59,7 +59,7 @@ public class TimeValidator extends integration.forms.ControlValidator
}
return "";
}
-
+
public boolean isValid( Object Value )
{
try
diff --git a/forms/qa/integration/forms/ValueBinding.java b/forms/qa/integration/forms/ValueBinding.java
index cec1b6d200c2..e53c1d2b1936 100644
--- a/forms/qa/integration/forms/ValueBinding.java
+++ b/forms/qa/integration/forms/ValueBinding.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
diff --git a/forms/qa/integration/forms/WaitForInput.java b/forms/qa/integration/forms/WaitForInput.java
index f0109aa485d4..8a71c8f0662c 100644
--- a/forms/qa/integration/forms/WaitForInput.java
+++ b/forms/qa/integration/forms/WaitForInput.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -28,8 +28,8 @@ package integration.forms;
class WaitForInput extends java.lang.Thread
{
- private Object m_aToNotify;
- private boolean m_bDone;
+ private Object m_aToNotify;
+ private boolean m_bDone;
public WaitForInput( Object aToNotify )
{
diff --git a/forms/qa/integration/forms/XMLFormSettings.java b/forms/qa/integration/forms/XMLFormSettings.java
index e3881bfa861d..c8b28d3f44be 100644
--- a/forms/qa/integration/forms/XMLFormSettings.java
+++ b/forms/qa/integration/forms/XMLFormSettings.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -59,7 +59,7 @@ public class XMLFormSettings extends complexlib.ComplexTestCase
public XMLFormSettings()
{
}
-
+
/* ------------------------------------------------------------------ */
public String[] getTestMethodNames()
{
@@ -67,7 +67,7 @@ public class XMLFormSettings extends complexlib.ComplexTestCase
"checkExternalData"
};
}
-
+
/* ------------------------------------------------------------------ */
public String getTestObjectName()
{