summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/report/IReportDocument.java
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/report/IReportDocument.java')
-rw-r--r--wizards/com/sun/star/wizards/report/IReportDocument.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/wizards/com/sun/star/wizards/report/IReportDocument.java b/wizards/com/sun/star/wizards/report/IReportDocument.java
index 702a776f9c98..b15339573ece 100644
--- a/wizards/com/sun/star/wizards/report/IReportDocument.java
+++ b/wizards/com/sun/star/wizards/report/IReportDocument.java
@@ -2,7 +2,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
@@ -38,7 +38,7 @@ import java.util.Vector;
/**
* New Interface which gives us the possibility to switch on the fly between the old
* Wizard and the new Sun Report Builder Wizard, which use the same UI.
- *
+ *
* @author ll93751
*/
public interface IReportDocument
@@ -53,7 +53,7 @@ public interface IReportDocument
// -------------------------------------------------------------------------
// Access Helper
- // -------------------------------------------------------------------------
+ // -------------------------------------------------------------------------
/**
* Gives access to the DB Values
* @return
@@ -69,7 +69,7 @@ public interface IReportDocument
public com.sun.star.awt.XWindowPeer getWizardParent();
/**
- *
+ *
* @return the Frame of the document Window or Report Builder Window
*/
public com.sun.star.frame.XFrame getFrame();
@@ -78,10 +78,10 @@ public interface IReportDocument
// -------------------------------------------------------------------------
// First step: After entering the table name, select fields
- // -------------------------------------------------------------------------
+ // -------------------------------------------------------------------------
/**
* Is called after first step, set Tablename and the fields, which should occur in the Report.
- * @param _aType
+ * @param _aType
* @param TableName
* @param FieldNames
*/
@@ -99,7 +99,7 @@ public interface IReportDocument
// -------------------------------------------------------------------------
// Second step: Label field titles
- // -------------------------------------------------------------------------
+ // -------------------------------------------------------------------------
/**
* Set new names for the titles
* @param sFieldTitles
@@ -117,7 +117,7 @@ public interface IReportDocument
public void liveupdate_changeUserFieldContent(final String FieldName, final String TitleName);
// -------------------------------------------------------------------------
// Third step: Grouping
- // -------------------------------------------------------------------------
+ // -------------------------------------------------------------------------
/* Grouping Page */
// Document should not hold the grouping information!
/**
@@ -148,7 +148,7 @@ public interface IReportDocument
public void setGrouping(String[] aGroupList);
// -------------------------------------------------------------------------
// Fourth step: Sorting
- // -------------------------------------------------------------------------
+ // -------------------------------------------------------------------------
/**
* Set the list how to sort
* @param aSort
@@ -156,7 +156,7 @@ public interface IReportDocument
public void setSorting(String[][] aSort);
// -------------------------------------------------------------------------
// Fivth step: Templates / Layout
- // -------------------------------------------------------------------------
+ // -------------------------------------------------------------------------
/* Template Page */
public void setPageOrientation(int nOrientation) throws com.sun.star.lang.IllegalArgumentException;
@@ -187,7 +187,7 @@ public interface IReportDocument
public void layout_setupRecordSection(String TemplateName);
// -------------------------------------------------------------------------
// finishing
- // -------------------------------------------------------------------------
+ // -------------------------------------------------------------------------
// preview (update titlenames)
// addTextListener
/**
@@ -229,7 +229,7 @@ public interface IReportDocument
public void dispose();
// -------------------------------------------------------------------------
// Garbage dump
- // -------------------------------------------------------------------------
+ // -------------------------------------------------------------------------
/* DataImport */
// ???
// public void addTextSectionCopies();
@@ -262,7 +262,7 @@ public interface IReportDocument
/**
* check internal invariants
- * @throws a
+ * @throws a
*/
public void checkInvariants() throws java.lang.Exception;
}