/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package automenta.spacenet.plugin.comm; /** represents an anonymous, blank, or empty association (graph edge) */ public class BlankEdge { @Override public String toString() { return "?"; } }