Main Page   Packages   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

MonitorPair.java

00001 package edu.ksu.cis.bandera.pdgslicer;
00002 
00003 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
00004  * Bandera, a Java(TM) analysis and transformation toolkit           *
00005  * Copyright (C) 1998, 1999   Hongjun Zheng (zheng@cis.ksu.edu)      *
00006  * All rights reserved.                                              *
00007  *                                                                   *
00008  * This work was done as a project in the SAnToS Laboratory,         *
00009  * Department of Computing and Information Sciences, Kansas State    *
00010  * University, USA (http://www.cis.ksu.edu/santos).                  *
00011  * It is understood that any modification not identified as such is  *
00012  * not covered by the preceding statement.                           *
00013  *                                                                   *
00014  * This work is free software; you can redistribute it and/or        *
00015  * modify it under the terms of the GNU Library General Public       *
00016  * License as published by the Free Software Foundation; either      *
00017  * version 2 of the License, or (at your option) any later version.  *
00018  *                                                                   *
00019  * This work is distributed in the hope that it will be useful,      *
00020  * but WITHOUT ANY WARRANTY; without even the implied warranty of    *
00021  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU *
00022  * Library General Public License for more details.                  *
00023  *                                                                   *
00024  * You should have received a copy of the GNU Library General Public *
00025  * License along with this toolkit; if not, write to the             *
00026  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,      *
00027  * Boston, MA  02111-1307, USA.                                      *
00028  *                                                                   *
00029  * Java is a trademark of Sun Microsystems, Inc.                     *
00030  *                                                                   *
00031  * To submit a bug report, send a comment, or get the latest news on *
00032  * this project and other SAnToS projects, please visit the web-site *
00033  *                http://www.cis.ksu.edu/santos                      *
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  * This class is for information of monitor pair, i.e., 
00045  * <code>entermonitor</code> and <code>exitmonitor</code> in 
00046  * Jimple.
00047  */
00048 public class MonitorPair
00049 {
00050   /**
00051    * The lock of this monitor pair.
00052    */
00053   private Value lock;
00054   private EnterMonitorStmt enterMonitor;
00055   /**
00056    * A list of {@link ExitMonitorStmt ExitMonitorStmt}.
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   //this MonitorPair implies that EnterMonitorStmt is synchronize
00066   //dependent on its corresponding ExitMonitorStmt
00067   //namely, they must appear pairly
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 }

Generated at Thu Feb 7 06:50:32 2002 for Bandera by doxygen1.2.10 written by Dimitri van Heesch, © 1997-2001