java-org.hwo.ui/src/org/hwo/ui/gantt/IGanttDrawable.java

11 lines
164 B
Java

package org.hwo.ui.gantt;
import java.awt.Graphics2D;
import java.awt.Rectangle;
public interface IGanttDrawable {
void paint(Graphics2D g,Rectangle rect);
}