/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package robotinterface.drawable; import java.awt.Graphics2D; /** * * @author antunes */ public interface FlowchartBlock { public void drawLines(Graphics2D g); }