00001 package ca.mcgill.sable.soot.grimp; 00002 00003 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 00004 * Grimp, an aggregated-expression Java(TM) bytecode representation. * 00005 * Copyright (C) 1998 Patrick Lam (plam@sable.mcgill.ca) * 00006 * All rights reserved. * 00007 * * 00008 * This work was done as a project of the Sable Research Group, * 00009 * School of Computer Science, McGill University, Canada * 00010 * (http://www.sable.mcgill.ca/). It is understood that any * 00011 * modification not identified as such is not covered by the * 00012 * preceding statement. * 00013 * * 00014 * This work is distributed in the hope that it will be useful, * 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 00017 * Library General Public License for more details. * 00018 * * 00019 * You should have received a copy of the GNU Library General Public * 00020 * License along with this library; if not, write to the * 00021 * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * 00022 * Boston, MA 02111-1307, USA. * 00023 * * 00024 * Java is a trademark of Sun Microsystems, Inc. * 00025 * * 00026 * To submit a bug report, send a comment, or get the latest news on * 00027 * this project and other Sable Research Group projects, please * 00028 * visit the web site: http://www.sable.mcgill.ca/ * 00029 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ 00030 00031 /* 00032 Reference Version 00033 ----------------- 00034 This is the latest official version on which this file is based. 00035 The reference version is: $SootVersion: 1.beta.4 $ 00036 00037 Change History 00038 -------------- 00039 A) Notes: 00040 00041 Please use the following template. Most recent changes should 00042 appear at the top of the list. 00043 00044 - Modified on [date (March 1, 1900)] by [name]. [(*) if appropriate] 00045 [description of modification]. 00046 00047 Any Modification flagged with "(*)" was done as a project of the 00048 Sable Research Group, School of Computer Science, 00049 McGill University, Canada (http://www.sable.mcgill.ca/). 00050 00051 You should add your copyright, using the following template, at 00052 the top of this file, along with other copyrights. 00053 00054 * * 00055 * Modifications by [name] are * 00056 * Copyright (C) [year(s)] [your name (or company)]. All rights * 00057 * reserved. * 00058 * * 00059 00060 B) Changes: 00061 00062 - Modified on February 3, 1999 by Patrick Lam (plam@sable.mcgill.ca). (*) 00063 First release of Grimp. 00064 */ 00065 00066 import ca.mcgill.sable.soot.*; 00067 import ca.mcgill.sable.util.*; 00068 import ca.mcgill.sable.soot.jimple.*; 00069 00070 public class BuildGrimpBodyOption extends BuildJimpleBodyOption 00071 { 00072 }