summaryrefslogtreecommitdiffstats
path: root/odk/examples/DevelopersGuide/Charts
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/DevelopersGuide/Charts')
-rw-r--r--odk/examples/DevelopersGuide/Charts/CalcHelper.java5
-rw-r--r--odk/examples/DevelopersGuide/Charts/ChartHelper.java5
-rw-r--r--odk/examples/DevelopersGuide/Charts/ChartInCalc.java5
-rw-r--r--odk/examples/DevelopersGuide/Charts/ChartInDraw.java5
-rw-r--r--odk/examples/DevelopersGuide/Charts/ChartInWriter.java1
-rw-r--r--odk/examples/DevelopersGuide/Charts/Helper.java5
-rw-r--r--odk/examples/DevelopersGuide/Charts/ListenAtCalcRangeInDraw.java1
-rw-r--r--odk/examples/DevelopersGuide/Charts/SelectionChangeListener.java2
8 files changed, 10 insertions, 19 deletions
diff --git a/odk/examples/DevelopersGuide/Charts/CalcHelper.java b/odk/examples/DevelopersGuide/Charts/CalcHelper.java
index 9e5f7430fd34..ec0bea5f6306 100644
--- a/odk/examples/DevelopersGuide/Charts/CalcHelper.java
+++ b/odk/examples/DevelopersGuide/Charts/CalcHelper.java
@@ -60,9 +60,8 @@ import com.sun.star.container.NoSuchElementException;
// __________ Implementation __________
-/** Helper for accessing a calc document
- @author Björn Milcke
- */
+// Helper for accessing a calc document
+
public class CalcHelper
{
public CalcHelper( XSpreadsheetDocument aDoc )
diff --git a/odk/examples/DevelopersGuide/Charts/ChartHelper.java b/odk/examples/DevelopersGuide/Charts/ChartHelper.java
index da61cb36377e..8f01b52aa426 100644
--- a/odk/examples/DevelopersGuide/Charts/ChartHelper.java
+++ b/odk/examples/DevelopersGuide/Charts/ChartHelper.java
@@ -57,9 +57,8 @@ import com.sun.star.awt.Size;
// __________ Implementation __________
-/** Helper for creating an OLE chart
- @author Björn Milcke
- */
+// Helper for creating an OLE chart
+
public class ChartHelper
{
public ChartHelper( XModel aContainerDoc )
diff --git a/odk/examples/DevelopersGuide/Charts/ChartInCalc.java b/odk/examples/DevelopersGuide/Charts/ChartInCalc.java
index 28e6266638fa..f5e4b116ac7d 100644
--- a/odk/examples/DevelopersGuide/Charts/ChartInCalc.java
+++ b/odk/examples/DevelopersGuide/Charts/ChartInCalc.java
@@ -66,9 +66,8 @@ import com.sun.star.util.MalformedNumberFormatException;
// __________ Implementation __________
-/** Create a spreadsheet add some data and add a chart
- @author Björn Milcke
- */
+// Create a spreadsheet add some data and add a chart
+
public class ChartInCalc
{
// ____________________
diff --git a/odk/examples/DevelopersGuide/Charts/ChartInDraw.java b/odk/examples/DevelopersGuide/Charts/ChartInDraw.java
index 224997b75e9c..362c1b731c32 100644
--- a/odk/examples/DevelopersGuide/Charts/ChartInDraw.java
+++ b/odk/examples/DevelopersGuide/Charts/ChartInDraw.java
@@ -56,9 +56,8 @@ import com.sun.star.beans.UnknownPropertyException;
// __________ Implementation __________
-/** Create a spreadsheet add some data and add a chart
- @author Björn Milcke
- */
+// Create a spreadsheet add some data and add a chart
+
public class ChartInDraw
{
// ____________________
diff --git a/odk/examples/DevelopersGuide/Charts/ChartInWriter.java b/odk/examples/DevelopersGuide/Charts/ChartInWriter.java
index f23a4ea262bc..30ff75a7e060 100644
--- a/odk/examples/DevelopersGuide/Charts/ChartInWriter.java
+++ b/odk/examples/DevelopersGuide/Charts/ChartInWriter.java
@@ -63,7 +63,6 @@ import com.sun.star.beans.UnknownPropertyException;
Thus, you can not activate the chart by double-clicking. The office may
also crash when the document is closed!
- @author Björn Milcke
*/
public class ChartInWriter
{
diff --git a/odk/examples/DevelopersGuide/Charts/Helper.java b/odk/examples/DevelopersGuide/Charts/Helper.java
index 928acee220d9..6c7e2c316030 100644
--- a/odk/examples/DevelopersGuide/Charts/Helper.java
+++ b/odk/examples/DevelopersGuide/Charts/Helper.java
@@ -49,9 +49,8 @@ import com.sun.star.frame.XModel;
// __________ Implementation __________
-/** Helper for creating a calc document adding cell values and charts
- @author Björn Milcke
- */
+// Helper for creating a calc document adding cell values and charts
+
public class Helper
{
public Helper( String[] args )
diff --git a/odk/examples/DevelopersGuide/Charts/ListenAtCalcRangeInDraw.java b/odk/examples/DevelopersGuide/Charts/ListenAtCalcRangeInDraw.java
index 15484004dc03..27cf351be271 100644
--- a/odk/examples/DevelopersGuide/Charts/ListenAtCalcRangeInDraw.java
+++ b/odk/examples/DevelopersGuide/Charts/ListenAtCalcRangeInDraw.java
@@ -58,7 +58,6 @@ import com.sun.star.uno.Exception;
/** Create a spreadsheet add some data.
Create a presentation and add a chart.
Connect the chart to a calc range via a listener
- @author Björn Milcke
*/
public class ListenAtCalcRangeInDraw implements XChartDataChangeEventListener
{
diff --git a/odk/examples/DevelopersGuide/Charts/SelectionChangeListener.java b/odk/examples/DevelopersGuide/Charts/SelectionChangeListener.java
index b4ab571d7520..0f55fd1ddf00 100644
--- a/odk/examples/DevelopersGuide/Charts/SelectionChangeListener.java
+++ b/odk/examples/DevelopersGuide/Charts/SelectionChangeListener.java
@@ -66,8 +66,6 @@ import com.sun.star.awt.XWindow;
*
* Note: This example does not work in StarOffice 6.0. It will be available
* in the StarOffice Accessibility release.
- *
- * @author Björn Milcke
*/
public class SelectionChangeListener implements XSelectionChangeListener {
public static void main( String args[] ) {