帆软报表设计器源代码。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
332 B

package com.fr.design.designer.beans;
import java.awt.Graphics;
import java.awt.Rectangle;
public interface Painter {
//当前焦点区域,即所在容器的边界
void setRenderingBounds(Rectangle rect);
//渲染入口,由FormDesigner调用来外成额外渲染
void paint(Graphics g, int startX, int startY);
}