Skip to content

Commit 357cdf1

Browse files
committed
javadoc fixes
1 parent 702d397 commit 357cdf1

File tree

5 files changed

+9
-41
lines changed

5 files changed

+9
-41
lines changed

jasperreports/ext/chart-themes/src/main/java/net/sf/jasperreports/chartthemes/simple/SimpleChartTheme.java

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,6 @@ protected void configurePlot(Plot plot, JRChartPlot jrPlot)
522522
* <code>java.text.SimpleDateFormat</code> mask.
523523
* @param verticalTickLabels flag to draw tick labels at 90 degrees
524524
* @param lineColor color to use when drawing the axis line and any tick marks
525-
* @param isRangeAxis used to distinguish between range and domain axis type
526525
*/
527526
protected void configureAxis(
528527
Axis axis,
@@ -556,8 +555,6 @@ protected void configureAxis(
556555
* <code>java.text.SimpleDateFormat</code> mask.
557556
* @param verticalTickLabels flag to draw tick labels at 90 degrees
558557
* @param lineColor color to use when drawing the axis line and any tick marks
559-
* @param isRangeAxis used to distinguish between range and domain axis type
560-
* @param timeUnit time unit used to create a DateAxis
561558
*/
562559
protected void configureAxis(
563560
Axis axis,
@@ -897,8 +894,6 @@ protected JFreeChart createBubbleChart() throws JRException
897894

898895
/**
899896
*
900-
* @param evaluation
901-
* @throws net.sf.jasperreports.engine.JRException
902897
*/
903898
protected JFreeChart createCandlestickChart() throws JRException
904899
{
@@ -945,8 +940,6 @@ protected JFreeChart createCandlestickChart() throws JRException
945940

946941
/**
947942
*
948-
* @param evaluation
949-
* @throws JRException
950943
*/
951944
protected JFreeChart createHighLowChart() throws JRException
952945
{
@@ -1826,7 +1819,6 @@ protected JFreeChart createGanttChart() throws JRException
18261819
* Converts a JasperReport data range into one understood by JFreeChart.
18271820
*
18281821
* @param dataRange the JasperReport version of the range
1829-
* @param evaluation current expression evaluation phase
18301822
* @return the JFreeChart version of the range
18311823
* @throws JRException thrown when the low value of the range is greater than the
18321824
* high value
@@ -1846,7 +1838,6 @@ protected Range convertRange(JRDataRange dataRange) throws JRException
18461838
* Converts a JasperReports meter interval to one that JFreeChart understands.
18471839
*
18481840
* @param interval the JasperReports definition of an interval
1849-
* @param evaluation current evaluation time
18501841
* @return the JFreeChart version of the same interval
18511842
* @throws JRException thrown when the interval contains an invalid range
18521843
*/
@@ -1869,10 +1860,7 @@ protected MeterInterval convertInterval(JRMeterInterval interval) throws JRExcep
18691860

18701861
/**
18711862
* Build and configure a meter chart.
1872-
*
1873-
* @param evaluation current expression evaluation phase
1874-
* @throws JRException
1875-
*/
1863+
*/
18761864
protected JFreeChart createMeterChart() throws JRException
18771865
{
18781866
JRMeterPlot jrPlot = (JRMeterPlot)getPlot();
@@ -1986,9 +1974,6 @@ else if (shape == MeterShapeEnum.DIAL)
19861974
* Build and run a thermometer chart. JFreeChart thermometer charts have some
19871975
* limitations. They always have a maximum of three ranges, and the colors of those
19881976
* ranges seems to be fixed.
1989-
*
1990-
* @param evaluation current expression evaluation phase
1991-
* @throws JRException
19921977
*/
19931978
protected JFreeChart createThermometerChart() throws JRException
19941979
{

jasperreports/ext/chart-themes/src/main/java/net/sf/jasperreports/chartthemes/spring/GenericChartTheme.java

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,6 @@ protected void configurePlot(Plot p, JRChartPlot jrPlot)
432432
* @param verticalTickLabels flag to draw tick labels at 90 degrees
433433
* @param lineColor color to use when drawing the axis line and any tick marks
434434
* @param isRangeAxis used to distinguish between range and domain axis type
435-
* @param timeUnit time unit used to create a DateAxis
436435
*/
437436
protected void configureAxis(
438437
Axis axis,
@@ -773,8 +772,6 @@ protected JFreeChart createBubbleChart() throws JRException
773772

774773
/**
775774
*
776-
* @param evaluation
777-
* @throws net.sf.jasperreports.engine.JRException
778775
*/
779776
protected JFreeChart createCandlestickChart() throws JRException
780777
{
@@ -818,8 +815,6 @@ protected JFreeChart createCandlestickChart() throws JRException
818815

819816
/**
820817
*
821-
* @param evaluation
822-
* @throws JRException
823818
*/
824819
protected JFreeChart createHighLowChart() throws JRException
825820
{
@@ -1669,7 +1664,6 @@ protected JFreeChart createGanttChart() throws JRException
16691664
* Converts a JasperReport data range into one understood by JFreeChart.
16701665
*
16711666
* @param dataRange the JasperReport version of the range
1672-
* @param evaluation current expression evaluation phase
16731667
* @return the JFreeChart version of the range
16741668
* @throws JRException thrown when the low value of the range is greater than the
16751669
* high value
@@ -1689,7 +1683,6 @@ protected Range convertRange(JRDataRange dataRange) throws JRException
16891683
* Converts a JasperReports meter interval to one that JFreeChart understands.
16901684
*
16911685
* @param interval the JasperReports definition of an interval
1692-
* @param evaluation current evaluation time
16931686
* @return the JFreeChart version of the same interval
16941687
* @throws JRException thrown when the interval contains an invalid range
16951688
*/
@@ -1712,10 +1705,7 @@ protected MeterInterval convertInterval(JRMeterInterval interval) throws JRExcep
17121705

17131706
/**
17141707
* Build and configure a meter chart.
1715-
*
1716-
* @param evaluation current expression evaluation phase
1717-
* @throws JRException
1718-
*/
1708+
*/
17191709
protected JFreeChart createMeterChart() throws JRException
17201710
{
17211711
// Start by creating the plot that will hold the meter
@@ -1834,9 +1824,6 @@ protected JFreeChart createMeterChart() throws JRException
18341824
* Build and run a thermometer chart. JFreeChart thermometer charts have some
18351825
* limitations. They always have a maximum of three ranges, and the colors of those
18361826
* ranges seems to be fixed.
1837-
*
1838-
* @param evaluation current expression evaluation phase
1839-
* @throws JRException
18401827
*/
18411828
protected JFreeChart createThermometerChart() throws JRException
18421829
{

jasperreports/ext/chart-themes/src/main/java/net/sf/jasperreports/chartthemes/spring/ScaledDialPointer.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,6 @@ public ScaledDialPointer(int scale, Paint fillPaint, Paint outlinePaint ) {
9090

9191
/**
9292
* Creates a new instance.
93-
*
94-
* @param datasetIndex the dataset index.
9593
*/
9694
public ScaledDialPointer(int scale, double widthRadius)
9795
{
@@ -117,8 +115,6 @@ public ScaledDialPointer(int datasetIndex, double widthRadius, Paint fillPaint,
117115
*
118116
* @return The paint (never <code>null</code>).
119117
*
120-
* @see #setGradientFillPaint(Paint)
121-
*
122118
* @since 1.0.8
123119
*/
124120
@Override

jasperreports/ext/custom-visualization/src/main/java/net/sf/jasperreports/customvisualization/Processor.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,33 +48,34 @@ public interface Processor
4848
*
4949
* Input: a Map with the component, the item properties and the series.
5050
*
51-
* <table>
51+
* <table summary="Properties">
5252
* <tr><th>key</th><th>Type</th><th>Description</th></tr>
5353
* <tr>
5454
* <td>Processor.CONF_PRINT_ELEMENT</td>
5555
* <td>net.sf.jasperreports.engine.fill.JRTemplateGenericPrintElement</td>
5656
* <td>The print element produced by the fill process</td>
57-
* <tr>
57+
* </tr>
5858
* <tr>
5959
* <td>Processor.CONF_SERIES</td>
6060
* <td>Collection</td>
6161
* <td>a collection of series, which are List of Maps.</td>
62-
* <tr>
62+
* </tr>
6363
* <tr>
6464
* <td>Processor.CONF_WIDTH</td>
6565
* <td>Integer</td>
6666
* <td>the element width</td>
67-
* <tr>
67+
* </tr>
6868
* <tr>
6969
* <td>Processor.CONF_HEIGHT</td>
7070
* <td>Integer</td>
7171
* <td>the element height</td>
72-
* <tr>
72+
* </tr>
7373
* <tr>
7474
* <td>Processor.CONF_KEY</td>
7575
* <td>String</td>
7676
* <td>the element key/id to be used in the HTML</td>
77-
* <tr>
77+
* </tr>
78+
* </table>
7879
*
7980
*
8081
* Series are represented as lists of Maps. The Map is the record, and contain the

jasperreports/ext/custom-visualization/src/main/java/net/sf/jasperreports/customvisualization/fill/CVFillItemProperty.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ public String getEvaluatedValue(JRFillExpressionEvaluator evaluator, byte evalua
9494
* Here we may add a validation handler to validate individual
9595
* properties.... By default we
9696
*
97-
* @param property
9897
* @param value
9998
* @throws JRException
10099
*/

0 commit comments

Comments
 (0)