summaryrefslogtreecommitdiff
path: root/reportbuilder/java
diff options
context:
space:
mode:
Diffstat (limited to 'reportbuilder/java')
-rw-r--r--reportbuilder/java/org/libreoffice/report/ImageService.java7
-rw-r--r--reportbuilder/java/org/libreoffice/report/ReportEngineMetaData.java3
-rw-r--r--reportbuilder/java/org/libreoffice/report/SOImageService.java2
-rw-r--r--reportbuilder/java/org/libreoffice/report/StorageRepository.java10
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngine.java3
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngineMetaData.java4
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaOpCodeMapper.java1
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaParser.java1
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/SOFunctionManager.java1
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/SOReportJobFactory.java1
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/StarReportData.java4
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/StarReportDataFactory.java6
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/loader/InputRepositoryLoader.java8
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeStyle.java2
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/output/ImageProducer.java4
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget.java2
16 files changed, 3 insertions, 56 deletions
diff --git a/reportbuilder/java/org/libreoffice/report/ImageService.java b/reportbuilder/java/org/libreoffice/report/ImageService.java
index 4089a0c42b65..91037841d416 100644
--- a/reportbuilder/java/org/libreoffice/report/ImageService.java
+++ b/reportbuilder/java/org/libreoffice/report/ImageService.java
@@ -27,23 +27,20 @@ public interface ImageService
/**
* @param image
* @return the mime-type of the image as string.
- * @throws ReportExecutionException
*/
String getMimeType(final InputStream image) throws ReportExecutionException;
/**
* @param image
* @return the mime-type of the image as string.
- * @throws ReportExecutionException
*/
String getMimeType(final byte[] image) throws ReportExecutionException;
/**
* @param image
* @returns the dimension in 100th mm.
- *
* @throws ReportExecutionException
- * @return*/
+ **/
Size getImageSize(final InputStream image) throws ReportExecutionException;
/**
@@ -51,7 +48,7 @@ public interface ImageService
* @returns the dimension in 100th mm.
*
* @throws ReportExecutionException
- * @return*/
+ **/
Size getImageSize(final byte[] image) throws ReportExecutionException;
}
diff --git a/reportbuilder/java/org/libreoffice/report/ReportEngineMetaData.java b/reportbuilder/java/org/libreoffice/report/ReportEngineMetaData.java
index 00331779e0d1..f38693b9bfcf 100644
--- a/reportbuilder/java/org/libreoffice/report/ReportEngineMetaData.java
+++ b/reportbuilder/java/org/libreoffice/report/ReportEngineMetaData.java
@@ -34,9 +34,6 @@ public interface ReportEngineMetaData
* Lists all supported output parameters for the given mime-type.
* This listing can be used to build a generic user interface for
* configuring a certain output.
- *
- * @param mimeType
- * @return
*/
String[] getOutputParameters(String mimeType);
diff --git a/reportbuilder/java/org/libreoffice/report/SOImageService.java b/reportbuilder/java/org/libreoffice/report/SOImageService.java
index 0ad67f6f526f..0d228c0c3b8a 100644
--- a/reportbuilder/java/org/libreoffice/report/SOImageService.java
+++ b/reportbuilder/java/org/libreoffice/report/SOImageService.java
@@ -42,8 +42,6 @@ public class SOImageService implements ImageService
/**
* Creates a new instance of SOImageService
- * @param xCompContext
- * @throws ReportExecutionException
*/
public SOImageService(final XComponentContext xCompContext)
throws ReportExecutionException, com.sun.star.uno.Exception
diff --git a/reportbuilder/java/org/libreoffice/report/StorageRepository.java b/reportbuilder/java/org/libreoffice/report/StorageRepository.java
index ef5c12b025a0..a06bfc717602 100644
--- a/reportbuilder/java/org/libreoffice/report/StorageRepository.java
+++ b/reportbuilder/java/org/libreoffice/report/StorageRepository.java
@@ -55,13 +55,6 @@ public class StorageRepository implements InputRepository, OutputRepository
private XStorage output;
private final String rootURL;
- /**
- *
- * @param input
- * @param output
- * @param rootURL
- * @throws java.io.IOException
- */
public StorageRepository(final XStorage input, final XStorage output, final String rootURL)
{
this.input = input;
@@ -104,9 +97,6 @@ public class StorageRepository implements InputRepository, OutputRepository
* Creates an output stream for writing the data. If there is an entry with
* that name already contained in the repository, try to overwrite it.
*
- * @param name
- * @param mimeType
- * @return the outputstream
* @throws IOException if opening the stream fails
*/
public OutputStream createOutputStream(final String name, final String mimeType) throws IOException
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngine.java b/reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngine.java
index 8e30adc77fdf..05fa691273fe 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngine.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngine.java
@@ -49,9 +49,6 @@ public class PentahoReportEngine
* Open points: How to define scheduling?
*
* @return the report job definition for the job description.
- *
- * @throws org.libreoffice.report.JobDefinitionException
- *
*/
public ReportJob createJob(final ReportJobDefinition definition)
throws JobDefinitionException
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngineMetaData.java b/reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngineMetaData.java
index 337eaa68d114..2976adfacdd2 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngineMetaData.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngineMetaData.java
@@ -111,7 +111,6 @@ public class PentahoReportEngineMetaData
* Checks, whether a certain output type is available. Feed the mime-type of the output
* type in and you'll get a true or false back.
*
- * @param mimeType
* @return true, if the output type is supported; false otherwise.
*/
public boolean isOutputSupported(final String mimeType)
@@ -122,9 +121,6 @@ public class PentahoReportEngineMetaData
/**
* Lists all supported output parameters for the given mime-type. This listing can be
* used to build a generic user interface for configuring a certain output.
- *
- * @param mimeType
- * @return
*/
public String[] getOutputParameters(final String mimeType)
{
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaOpCodeMapper.java b/reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaOpCodeMapper.java
index 5c9f59819995..80a7da82e57a 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaOpCodeMapper.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaOpCodeMapper.java
@@ -132,7 +132,6 @@ public final class SOFormulaOpCodeMapper extends WeakBase
/**
* This method is a simple helper function to used in the static component initialisation functions as well as
* in getSupportedServiceNames.
- * @return
*/
public static String[] getServiceNames()
{
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaParser.java b/reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaParser.java
index fa827cc94699..7ca37cc90e42 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaParser.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaParser.java
@@ -329,7 +329,6 @@ public final class SOFormulaParser extends ComponentBase
/**
* This method is a simple helper function to used in the static component initialisation functions as well as
* in getSupportedServiceNames.
- * @return
*/
public static String[] getServiceNames()
{
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/SOFunctionManager.java b/reportbuilder/java/org/libreoffice/report/pentaho/SOFunctionManager.java
index 3e96ca003fee..af3bc94f0cb9 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/SOFunctionManager.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/SOFunctionManager.java
@@ -68,7 +68,6 @@ public final class SOFunctionManager extends ComponentBase implements XFunctionM
/**
* This method is a simple helper function to used in the static component initialisation functions as well as
* in getSupportedServiceNames.
- * @return
*/
public static String[] getServiceNames()
{
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/SOReportJobFactory.java b/reportbuilder/java/org/libreoffice/report/pentaho/SOReportJobFactory.java
index 998ee84d5cc1..01d71c205c87 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/SOReportJobFactory.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/SOReportJobFactory.java
@@ -130,7 +130,6 @@ public class SOReportJobFactory
/**
* This method is a simple helper function to used in the static component initialisation functions as well as
* in getSupportedServiceNames.
- * @return
*/
public static String[] getServiceNames()
{
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/StarReportData.java b/reportbuilder/java/org/libreoffice/report/pentaho/StarReportData.java
index 77d65112c736..442703ea4dd8 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/StarReportData.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/StarReportData.java
@@ -80,10 +80,6 @@ public class StarReportData implements ReportData
/**
* This operation checks, whether a call to next will be likely to succeed. If
* there is a next data row, this should return true.
- *
- * @return
- * @throws org.jfree.report.DataSourceException
- *
*/
public boolean isAdvanceable() throws DataSourceException
{
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/StarReportDataFactory.java b/reportbuilder/java/org/libreoffice/report/pentaho/StarReportDataFactory.java
index b0dd3d637925..4b9d7f9478f6 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/StarReportDataFactory.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/StarReportDataFactory.java
@@ -43,10 +43,6 @@ public class StarReportDataFactory implements ReportDataFactory, Cloneable
* Parameterset given here may contain more data than actually needed.
* <p/>
* The dataset may change between two calls, do not assume anything!
- *
- * @param query
- * @param parameters
- * @return
*/
public ReportData queryData(final String query, final DataSet parameters)
throws ReportDataFactoryException
@@ -94,8 +90,6 @@ public class StarReportDataFactory implements ReportDataFactory, Cloneable
* Derives a freshly initialized report data factory, which is independent of
* the original data factory. Opening or Closing one data factory must not
* affect the other factories.
- *
- * @return
*/
public ReportDataFactory derive()
{
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/loader/InputRepositoryLoader.java b/reportbuilder/java/org/libreoffice/report/pentaho/loader/InputRepositoryLoader.java
index fdb52154ffd5..e7abe0342185 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/loader/InputRepositoryLoader.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/loader/InputRepositoryLoader.java
@@ -52,9 +52,6 @@ public class InputRepositoryLoader implements ResourceLoader
/**
* Checks, whether this resource loader implementation was responsible for
* creating this key.
- *
- * @param key
- * @return
*/
public boolean isSupportedKey(final ResourceKey key)
{
@@ -64,11 +61,8 @@ public class InputRepositoryLoader implements ResourceLoader
/**
* Creates a new resource key from the given object and the factory keys.
*
- * @param value
- * @param factoryKeys
* @return the created key or null, if the format was not recognized.
- * @throws org.jfree.resourceloader.ResourceKeyCreationException
- * if creating the key failed.
+ * @throws ResourceKeyCreationException if creating the key failed.
*/
public ResourceKey createKey(final Object value,
final Map factoryKeys)
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeStyle.java b/reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeStyle.java
index cadafa0338a5..2a60c9a8cb32 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeStyle.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeStyle.java
@@ -51,8 +51,6 @@ public class OfficeStyle extends Section
* A parent style name must be a common style (it cannot be an automatic
* style) and has to exist. If no parent style is given, an implementation
* specific default style is used.
- *
- * @return
*/
public String getStyleParent()
{
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/output/ImageProducer.java b/reportbuilder/java/org/libreoffice/report/pentaho/output/ImageProducer.java
index 3f39b3e9359e..25c2bf49317f 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/output/ImageProducer.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/output/ImageProducer.java
@@ -183,10 +183,6 @@ public class ImageProducer
/**
* Image-Data can be one of the following types: String, URL, URI, byte-array, blob.
- *
- * @param imageData
- * @param preserveIRI
- * @return
*/
public OfficeImage produceImage(final Object imageData,
final boolean preserveIRI)
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget.java b/reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget.java
index 5d9e6dba5d4e..0c012a5d5ee4 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget.java
@@ -509,8 +509,6 @@ public abstract class OfficeDocumentReportTarget extends AbstractReportTarget
* for the call and will call one of the start* methods.
*
* @param roAttrs the attribute map for the current element
- * @throws DataSourceException
- * @throws ReportProcessingException
*/
public final void startElement(final AttributeMap roAttrs)
throws DataSourceException, ReportProcessingException