qilin.core.builder.JavaMethods Maven / Gradle / Ivy
package qilin.core.builder;
/*-
* #%L
* Soot - a J*va Optimization Framework
* %%
* Copyright (C) 2022 Fraunhofer SIT
* %%
* 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 class JavaMethods {
public static final String SIG_MAIN = "void main(java.lang.String[])";
public static final String SIG_FINALIZE = "void finalize()";
public static final String SIG_EXIT = "void exit()";
public static final String SIG_CLINIT = "void ()";
public static final String SIG_INIT = "void ()";
public static final String SIG_START = "void start()";
public static final String SIG_RUN = "void run()";
public static final String SIG_OBJ_RUN = "java.lang.Object run()";
public static final String SIG_FOR_NAME = "java.lang.Class forName(java.lang.String)";
public static final String INITIALIZE_SYSTEM_CLASS =
"";
public static final String THREAD_GROUP_INIT = "()>";
public static final String THREAD_EXIT = "";
public static final String THREADGROUP_UNCAUGHT_EXCEPTION =
"";
public static final String CLASSLOADER_INIT = "()>";
public static final String CLASSLOADER_LOAD_CLASS_INTERNAL =
"";
public static final String CLASSLOADER_CHECK_PACKAGE_ACC =
"";
public static final String CLASSLOADER_ADD_CLASS =
"";
public static final String CLASSLOADER_FIND_NATIVE =
"";
public static final String PRIV_ACTION_EXC_INIT =
"(java.lang.Exception)>";
public static final String RUN_FINALIZE = "";
public static final String THREAD_INIT_RUNNABLE =
"(java.lang.ThreadGroup,java.lang.Runnable)>";
public static final String THREAD_INIT_STRING =
"(java.lang.ThreadGroup,java.lang.String)>";
}