import java.awt.Point;

interface PObject {
  public void show(Point mousePoint); 
  public String toString();
}