00001 package edu.ksu.cis.bandera.pdgslicer.datastructure;
00002
00003
00004
00005
00006
00007
00008 public class SliceStatement extends SlicePoint {
00009
00010
00011
00012
00013
00014
00015
00016 public SliceStatement(ca.mcgill.sable.soot.SootClass sootClass, ca.mcgill.sable.soot.SootMethod sootMethod, ca.mcgill.sable.soot.jimple.Stmt stmt, int in) {
00017 super(sootClass, sootMethod, stmt, in);
00018 }
00019
00020
00021
00022
00023
00024 public String toString() {
00025 return super.toString();
00026 }
00027 }