1 package org.catacomb.graph.gui; 2 3 4 public interface Pickable { 5 6 7 Object getRef(); 8 9 10 // maybe the least bad solution? 11 void setCache(int i); 12 13 int getCache(); 14 15 }