* @see GraphGenerator#add(Object)
*/
public Graphable add(Object obj) {
Object[] objs = (Object[])obj;
Node n1, n2;
//look up first node and create if necessary
if ((n1 = (Node)m_obj2graphable.get(objs[0])) == null) {
n1 = getGraphBuilder().buildNode();
n1.setObject(objs[0]);
getGraphBuilder().addNode(n1);
m_obj2graphable.put(objs[0], n1);
}