SE450: The SceneShape Interface Type [26/65] Previous pageContentsNext page

public interface SceneShape
{
   void setSelected(boolean b);
   boolean isSelected();
   void draw(Graphics2D g2);
   void drawSelection(Graphics2D g2);
   void translate(int dx, int dy);
   boolean contains(Point2D aPoint);
}


Previous pageContentsNext page