All Downloads are FREE. Search and download functionalities are using the official Maven repository.

soot.toolkits.graph.interaction.IInteractionConstants Maven / Gradle / Ivy

package soot.toolkits.graph.interaction;

/*-
 * #%L
 * Soot - a J*va Optimization Framework
 * %%
 * Copyright (C) 2004 Jennifer Lhotak
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 2.1 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

public interface IInteractionConstants {

  public static final int NEW_ANALYSIS = 0;
  public static final int WANT_ANALYSIS = 1;
  public static final int NEW_CFG = 2;
  public static final int CONTINUE = 3;
  public static final int NEW_BEFORE_ANALYSIS_INFO = 4;
  public static final int NEW_AFTER_ANALYSIS_INFO = 5;
  public static final int DONE = 6;
  public static final int FORWARDS = 7;
  public static final int BACKWARDS = 8;
  public static final int CLEARTO = 9;
  public static final int REPLACE = 10;
  public static final int NEW_BEFORE_ANALYSIS_INFO_AUTO = 11;
  public static final int NEW_AFTER_ANALYSIS_INFO_AUTO = 12;
  public static final int STOP_AT_NODE = 13;

  public static final int CALL_GRAPH_START = 50;
  public static final int CALL_GRAPH_NEXT_METHOD = 51;
  public static final int CALL_GRAPH_PART = 52;
  public static final int CALL_GRAPH_DONE = 53;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy