com.ijchart.xychart.shape.change
Interface IShapeChange


public interface IShapeChange

Title: IJChart

Description: a chart library for the Java(tm) platform.

Called at the begin and end of the IChartShape.draw method.

Copyright: Copyright (c) 2013

Company:

Version:
1.0
Author:
zhang feng min,shanghai china. Contract me by email.

Method Summary
 void afterDraw(IChartShape shape, java.awt.Graphics2D g2)
           Called at the end of IChartShape.draw method.
 void beforeDraw(IChartShape shape, java.awt.Graphics2D g2)
           Called at the begin of IChartShape.draw method.
 

Method Detail

beforeDraw

void beforeDraw(IChartShape shape,
                java.awt.Graphics2D g2)
Called at the begin of IChartShape.draw method.

Parameters:
shape - IChartShape The IChartShape object (null not permitted).
g2 - Graphics2D The graphics device (such as the screen or the printer) (null not permitted).

afterDraw

void afterDraw(IChartShape shape,
               java.awt.Graphics2D g2)
Called at the end of IChartShape.draw method.

Parameters:
shape - IChartShape The IChartShape object (null not permitted).
g2 - Graphics2D The graphics device (such as the screen or the printer) (null not permitted).