00001 package edu.ksu.cis.bandera.pdgslicer;
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 import edu.ksu.cis.bandera.annotation.*;
00037
00038 import ca.mcgill.sable.soot.jimple.*;
00039 import ca.mcgill.sable.util.*;
00040
00041 import java.util.Enumeration;
00042
00043
00044
00045
00046
00047
00048 public class MonitorPair
00049 {
00050
00051
00052
00053 private Value lock;
00054 private EnterMonitorStmt enterMonitor;
00055
00056
00057
00058 private List exitMonitors;
00059 private Stmt endSynchroStmt;
00060 private Stmt exitMonitorInException;
00061 private Stmt beginSynchroStmt;
00062 private Annotation synchroBodyAnn;
00063 private Annotation catchAnn;
00064
00065
00066
00067
00068
00069 public Stmt getBeginSynchroStmt()
00070 {
00071 return beginSynchroStmt;
00072 }
00073 public Annotation getCatchAnn()
00074 {
00075 return catchAnn;
00076 }
00077 public Stmt getEndSynchroStmt()
00078 {
00079 return endSynchroStmt;
00080 }
00081 public EnterMonitorStmt getEnterMonitor()
00082 {
00083 return enterMonitor;
00084 }
00085 public Stmt getExitMonitorInException()
00086 {
00087 return exitMonitorInException;
00088 }
00089 public List getExitMonitors()
00090 {
00091 return exitMonitors;
00092 }
00093 public Value getLock()
00094 {
00095 return lock;
00096 }
00097 public Annotation getSynchroBodyAnn()
00098 {
00099 return synchroBodyAnn;
00100 }
00101 public void setBeginSynchroStmt(Stmt s)
00102 {
00103 beginSynchroStmt = s;
00104 }
00105 public void setCatchAnn(Annotation catAnn)
00106 {
00107 catchAnn = catAnn;
00108 }
00109 public void setEndSynchroStmt(Stmt s)
00110 {
00111 endSynchroStmt = s;
00112 }
00113 public void setEnterMonitor(EnterMonitorStmt s)
00114 {
00115 enterMonitor = s;
00116 }
00117 public void setExitMonitorInException(Stmt s)
00118 {
00119 exitMonitorInException = s;
00120 }
00121 public void setExitMonitors(Enumeration s)
00122 {
00123 exitMonitors = new ArrayList();
00124
00125 while (s.hasMoreElements())
00126 exitMonitors.add((Stmt) s.nextElement());
00127 }
00128 public void setLock(Value v)
00129 {
00130 lock = v;
00131 }
00132 public void setSynchroBodyAnn(Annotation synAnn)
00133 {
00134 synchroBodyAnn = synAnn;
00135 }
00136 public String toString()
00137 {
00138 return "[ lock:" + lock + " enter:" + enterMonitor + " exit: " + exitMonitors + " ] " + " endSynchroStmt: " + endSynchroStmt + " exitMonitorInException: " + exitMonitorInException;
00139 }
00140 }