1 19 20 25 26 27 package soot.toolkits.graph; 28 29 30 import java.util.*; 31 import soot.*; 32 33 34 37 public interface DirectedGraph 38 { 39 42 public List getHeads(); 43 44 45 public List getTails(); 46 47 50 public List getPredsOf(Object s); 51 52 55 public List getSuccsOf(Object s); 56 57 60 public int size(); 61 62 66 public Iterator iterator(); 67 } 68 69 70 | Popular Tags |