KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > soot > toolkits > graph > interaction > IInteractionConstants


1 /* Soot - a J*va Optimization Framework
2  * Copyright (C) 2004 Jennifer Lhotak
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */

19
20 package soot.toolkits.graph.interaction;
21
22 public interface IInteractionConstants{
23
24     public static final int NEW_ANALYSIS = 0;
25     public static final int WANT_ANALYSIS = 1;
26     public static final int NEW_CFG = 2;
27     public static final int CONTINUE = 3;
28     public static final int NEW_BEFORE_ANALYSIS_INFO = 4;
29     public static final int NEW_AFTER_ANALYSIS_INFO = 5;
30     public static final int DONE = 6;
31     public static final int FORWARDS = 7;
32     public static final int BACKWARDS = 8;
33     public static final int CLEARTO = 9;
34     public static final int REPLACE = 10;
35     public static final int NEW_BEFORE_ANALYSIS_INFO_AUTO = 11;
36     public static final int NEW_AFTER_ANALYSIS_INFO_AUTO = 12;
37     public static final int STOP_AT_NODE = 13;
38     
39     public static final int CALL_GRAPH_START = 50;
40     public static final int CALL_GRAPH_NEXT_METHOD = 51;
41     public static final int CALL_GRAPH_PART = 52;
42     public static final int CALL_GRAPH_DONE = 53;
43 }
44
Popular Tags