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

11 lines
164 B
Java
Raw Normal View History

2015-08-12 22:27:20 +02:00
package org.hwo.ui.gantt;
import java.awt.Graphics2D;
import java.awt.Rectangle;
public interface IGanttDrawable {
void paint(Graphics2D g,Rectangle rect);
}