00001 package edu.ksu.cis.bandera.pdgslicer.datastructure;
00002
00003 import ca.mcgill.sable.soot.*;
00004 public abstract class SliceInterest implements java.io.Serializable {
00005 protected SootClass sc;
00006
00007
00008
00009
00010 public SliceInterest() {}
00011
00012
00013
00014
00015 public SliceInterest(SootClass sootClass) {
00016 sc = sootClass;
00017 }
00018
00019
00020
00021
00022 public SootClass getSootClass() {
00023 return sc;
00024 }
00025
00026
00027
00028
00029
00030 public void setSootClass(SootClass scs) {
00031 sc = scs;
00032 }
00033 }