JRFillHighLowPlot.java
| Index Score | ||
|---|---|---|
![]() |
![]() |
net.sf.jasperreports.charts.fill |
![]() |
![]() |
JasperReports |
View: Reasons, Metrics, Source Code
These are the metrics that contribute to the Enerjy Score for this file, ranked by impact. So the metrics listed at the top influence the score to a greater extent that the metrics listed at the bottom.
/*
* ============================================================================
* GNU Lesser General Public License
* ============================================================================
*
* JasperReports - Free Java report-generating library.
* Copyright (C) 2001-2006 JasperSoft Corporation http://www.jaspersoft.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*
* JasperSoft Corporation
* 303 Second Street, Suite 450 North
* San Francisco, CA 94107
* http://www.jaspersoft.com
*/
package net.sf.jasperreports.charts.fill;
import java.awt.Color;
import net.sf.jasperreports.charts.JRHighLowPlot;
import net.sf.jasperreports.engine.JRExpression;
import net.sf.jasperreports.engine.JRFont;
import net.sf.jasperreports.engine.base.JRBaseFont;
import net.sf.jasperreports.engine.fill.JRFillChartPlot;
import net.sf.jasperreports.engine.fill.JRFillObjectFactory;
import net.sf.jasperreports.engine.util.JRStyleResolver;
/**
* @author Ionut Nedelcu (ionutned@users.sourceforge.net)
* @version $Id: JRFillHighLowPlot.java 1577 2007-02-09 11:25:48Z teodord $
*/
public class JRFillHighLowPlot extends JRFillChartPlot implements JRHighLowPlot
{
/**
*
*/
protected JRFont timeAxisLabelFont = null;
protected Color timeAxisLabelColor = null;
protected JRFont timeAxisTickLabelFont = null;
protected Color timeAxisTickLabelColor = null;
protected Color timeAxisLineColor = null;
protected JRFont valueAxisLabelFont = null;
protected Color valueAxisLabelColor = null;
protected JRFont valueAxisTickLabelFont = null;
protected Color valueAxisTickLabelColor = null;
protected Color valueAxisLineColor = null;
/**
*
*/
public JRFillHighLowPlot(
JRHighLowPlot highLowPlot,
JRFillObjectFactory factory
)
{
super(highLowPlot, factory);
timeAxisLabelFont = new JRBaseFont(null, null, highLowPlot.getChart(), highLowPlot.getTimeAxisLabelFont());
timeAxisLabelColor = highLowPlot.getOwnTimeAxisLabelColor();
timeAxisTickLabelFont = new JRBaseFont(null, null, highLowPlot.getChart(), highLowPlot.getTimeAxisTickLabelFont());
timeAxisTickLabelColor = highLowPlot.getOwnTimeAxisTickLabelColor();
timeAxisLineColor = highLowPlot.getTimeAxisLineColor();
valueAxisLabelFont = new JRBaseFont(null, null, highLowPlot.getChart(), highLowPlot.getValueAxisLabelFont());
valueAxisLabelColor = highLowPlot.getOwnValueAxisLabelColor();
valueAxisTickLabelFont = new JRBaseFont(null, null, highLowPlot.getChart(), highLowPlot.getValueAxisTickLabelFont());
valueAxisTickLabelColor = highLowPlot.getOwnValueAxisTickLabelColor();
valueAxisLineColor = highLowPlot.getValueAxisTickLabelColor();
}
/**
*
*/
public JRExpression getTimeAxisLabelExpression()
{
return ((JRHighLowPlot)parent).getTimeAxisLabelExpression();
}
/**
*
*/
public JRFont getTimeAxisLabelFont()
{
return timeAxisLabelFont;
}
/**
*
*/
public void setTimeAxisLabelFont(JRFont font)
{
}
/**
*
*/
public Color getTimeAxisLabelColor()
{
return JRStyleResolver.getTimeAxisLabelColor(this, this);
}
/**
*
*/
public Color getOwnTimeAxisLabelColor()
{
return timeAxisLabelColor;
}
/**
*
*/
public void setTimeAxisLabelColor(Color color)
{
}
/**
*
*/
public JRFont getTimeAxisTickLabelFont()
{
return timeAxisTickLabelFont;
}
/**
*
*/
public void setTimeAxisTickLabelFont(JRFont font)
{
}
/**
*
*/
public Color getTimeAxisTickLabelColor()
{
return JRStyleResolver.getTimeAxisTickLabelColor(this, this);
}
/**
*
*/
public Color getOwnTimeAxisTickLabelColor()
{
return timeAxisTickLabelColor;
}
/**
*
*/
public void setTimeAxisTickLabelColor(Color color)
{
}
/**
*
*/
public String getTimeAxisTickLabelMask()
{
return ((JRHighLowPlot)parent).getTimeAxisTickLabelMask();
}
/**
*
*/
public void setTimeAxisTickLabelMask(String mask)
{
}
/**
*
*/
public Color getTimeAxisLineColor()
{
return JRStyleResolver.getTimeAxisLineColor(this, this);
}
/**
*
*/
public Color getOwnTimeAxisLineColor()
{
return timeAxisLineColor;
}
/**
*
*/
public void setTimeAxisLineColor(Color color)
{
}
/**
*
*/
public JRExpression getValueAxisLabelExpression()
{
return ((JRHighLowPlot)parent).getValueAxisLabelExpression();
}
/**
*
*/
public JRFont getValueAxisLabelFont()
{
return valueAxisLabelFont;
}
/**
*
*/
public void setValueAxisLabelFont(JRFont font)
{
}
/**
*
*/
public Color getValueAxisLabelColor()
{
return JRStyleResolver.getValueAxisLabelColor(this, this);
}
/**
*
*/
public Color getOwnValueAxisLabelColor()
{
return valueAxisLabelColor;
}
/**
*
*/
public void setValueAxisLabelColor(Color color)
{
}
/**
*
*/
public JRFont getValueAxisTickLabelFont()
{
return valueAxisTickLabelFont;
}
/**
*
*/
public void setValueAxisTickLabelFont(JRFont font)
{
}
/**
*
*/
public Color getValueAxisTickLabelColor()
{
return JRStyleResolver.getValueAxisTickLabelColor(this, this);
}
/**
*
*/
public Color getOwnValueAxisTickLabelColor()
{
return valueAxisTickLabelColor;
}
/**
*
*/
public void setValueAxisTickLabelColor(Color color)
{
}
/**
*
*/
public String getValueAxisTickLabelMask()
{
return ((JRHighLowPlot)parent).getValueAxisTickLabelMask();
}
/**
*
*/
public void setValueAxisTickLabelMask(String mask)
{
}
/**
*
*/
public Color getValueAxisLineColor()
{
return JRStyleResolver.getValueAxisLineColor(this, this);
}
/**
*
*/
public Color getOwnValueAxisLineColor()
{
return valueAxisLineColor;
}
/**
*
*/
public void setValueAxisLineColor(Color color)
{
}
public boolean isShowOpenTicks()
{
return ((JRHighLowPlot)parent).isShowOpenTicks();
}
public boolean isShowCloseTicks()
{
return ((JRHighLowPlot)parent).isShowCloseTicks();
}
}
The table below shows all metrics for JRFillHighLowPlot.java.




