1 19 20 25 26 27 package soot; 28 29 import soot.util.*; 30 import java.util.*; 31 32 34 public class ScenePack extends Pack 35 { 36 public ScenePack(String name) { 37 super(name); 38 } 39 40 protected void internalApply() 41 { 42 for( Iterator tIt = this.iterator(); tIt.hasNext(); ) { 43 final Transform t = (Transform) tIt.next(); 44 t.apply(); 45 } 46 } 47 } 48 | Popular Tags |