/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package vertices; import edu.ucsb.jpregel.system.VertexImpl; /** * * @author cappello */ public class VertexTest extends VertexImpl { @Override public void compute() { throw new UnsupportedOperationException("Not supported yet."); } @Override public boolean isInitiallyActive() { throw new UnsupportedOperationException("Not supported yet."); } @Override public String output() { throw new UnsupportedOperationException("Not supported yet."); } @Override public VertexImpl make(String line) { throw new UnsupportedOperationException("Not supported yet."); } }