static void onLeftClick(JComponent c, final O runnable) { c.addMouseListener(new MouseAdapter { public void mouseClicked(MouseEvent e) { callF(runnable, new Pt(e.getPoint())); } }); }