1 import soot.*; 2 import java.util.*; 3 import soot.baf.*; 4 5 import soot.tagkit.*; 6 import soot.jimple.toolkits.annotation.tags.NullCheckTag; 7 8 9 10 public class NullTagAggregator extends ImportantTagAggregator 11 { 12 public NullTagAggregator() {} 13 14 public boolean wantTag( Tag t ) { 15 return (t instanceof NullCheckTag); 16 } 17 18 public String aggregatedName() 19 { 20 return "NullCheckAttribute"; 21 } 22 } 23 24 25 26 27 28 29 30 31 | Popular Tags |