Copyright (c) 2000, 2011 IBM Corporation and others. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 Contributors: IBM Corporation - initial API and implementation
/******************************************************************************* * Copyright (c) 2000, 2011 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/
package org.eclipse.jdt.core.util;
Adapter that implements the IBytecodeVisitor. This class is intended to be subclassed by clients.
Since:2.0
/** * Adapter that implements the IBytecodeVisitor. This class is intended to * be subclassed by clients. * * @since 2.0 */
public class ByteCodeVisitorAdapter implements IBytecodeVisitor {
See Also:
  • _aaload._aaload(int)
/** * @see IBytecodeVisitor#_aaload(int) */
@Override public void _aaload(int pc) { // default behavior is to do nothing }
See Also:
  • _aastore._aastore(int)
/** * @see IBytecodeVisitor#_aastore(int) */
@Override public void _aastore(int pc) { // default behavior is to do nothing }
See Also:
  • _aconst_null._aconst_null(int)
/** * @see IBytecodeVisitor#_aconst_null(int) */
@Override public void _aconst_null(int pc) { // default behavior is to do nothing }
See Also:
  • _aload_0._aload_0(int)
/** * @see IBytecodeVisitor#_aload_0(int) */
@Override public void _aload_0(int pc) { // default behavior is to do nothing }
See Also:
  • _aload_1._aload_1(int)
/** * @see IBytecodeVisitor#_aload_1(int) */
@Override public void _aload_1(int pc) { // default behavior is to do nothing }
See Also:
  • _aload_2._aload_2(int)
/** * @see IBytecodeVisitor#_aload_2(int) */
@Override public void _aload_2(int pc) { // default behavior is to do nothing }
See Also:
  • _aload_3._aload_3(int)
/** * @see IBytecodeVisitor#_aload_3(int) */
@Override public void _aload_3(int pc) { // default behavior is to do nothing }
See Also:
  • _aload._aload(int, int)
/** * @see IBytecodeVisitor#_aload(int, int) */
@Override public void _aload(int pc, int index) { // default behavior is to do nothing }
See Also:
  • _anewarray._anewarray(int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_anewarray(int, int, IConstantPoolEntry) */
@Override public void _anewarray(int pc, int index, IConstantPoolEntry constantClass) { // default behavior is to do nothing }
See Also:
  • _areturn._areturn(int)
/** * @see IBytecodeVisitor#_areturn(int) */
@Override public void _areturn(int pc) { // default behavior is to do nothing }
See Also:
  • _arraylength._arraylength(int)
/** * @see IBytecodeVisitor#_arraylength(int) */
@Override public void _arraylength(int pc) { // default behavior is to do nothing }
See Also:
  • _astore_0._astore_0(int)
/** * @see IBytecodeVisitor#_astore_0(int) */
@Override public void _astore_0(int pc) { // default behavior is to do nothing }
See Also:
  • _astore_1._astore_1(int)
/** * @see IBytecodeVisitor#_astore_1(int) */
@Override public void _astore_1(int pc) { // default behavior is to do nothing }
See Also:
  • _astore_2._astore_2(int)
/** * @see IBytecodeVisitor#_astore_2(int) */
@Override public void _astore_2(int pc) { // default behavior is to do nothing }
See Also:
  • _astore_3._astore_3(int)
/** * @see IBytecodeVisitor#_astore_3(int) */
@Override public void _astore_3(int pc) { // default behavior is to do nothing }
See Also:
  • _astore._astore(int, int)
/** * @see IBytecodeVisitor#_astore(int, int) */
@Override public void _astore(int pc, int index) { // default behavior is to do nothing }
See Also:
  • _athrow._athrow(int)
/** * @see IBytecodeVisitor#_athrow(int) */
@Override public void _athrow(int pc) { // default behavior is to do nothing }
See Also:
  • _baload._baload(int)
/** * @see IBytecodeVisitor#_baload(int) */
@Override public void _baload(int pc) { // default behavior is to do nothing }
See Also:
  • _bastore._bastore(int)
/** * @see IBytecodeVisitor#_bastore(int) */
@Override public void _bastore(int pc) { // default behavior is to do nothing }
See Also:
  • _bipush._bipush(int, byte)
/** * @see IBytecodeVisitor#_bipush(int, byte) */
@Override public void _bipush(int pc, byte _byte) { // default behavior is to do nothing }
See Also:
  • _caload._caload(int)
/** * @see IBytecodeVisitor#_caload(int) */
@Override public void _caload(int pc) { // default behavior is to do nothing }
See Also:
  • _castore._castore(int)
/** * @see IBytecodeVisitor#_castore(int) */
@Override public void _castore(int pc) { // default behavior is to do nothing }
See Also:
  • _checkcast._checkcast(int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_checkcast(int, int, IConstantPoolEntry) */
@Override public void _checkcast(int pc, int index, IConstantPoolEntry constantClass) { // default behavior is to do nothing }
See Also:
  • _d2f._d2f(int)
/** * @see IBytecodeVisitor#_d2f(int) */
@Override public void _d2f(int pc) { // default behavior is to do nothing }
See Also:
  • _d2i._d2i(int)
/** * @see IBytecodeVisitor#_d2i(int) */
@Override public void _d2i(int pc) { // default behavior is to do nothing }
See Also:
  • _d2l._d2l(int)
/** * @see IBytecodeVisitor#_d2l(int) */
@Override public void _d2l(int pc) { // default behavior is to do nothing }
See Also:
  • _dadd._dadd(int)
/** * @see IBytecodeVisitor#_dadd(int) */
@Override public void _dadd(int pc) { // default behavior is to do nothing }
See Also:
  • _daload._daload(int)
/** * @see IBytecodeVisitor#_daload(int) */
@Override public void _daload(int pc) { // default behavior is to do nothing }
See Also:
  • _dastore._dastore(int)
/** * @see IBytecodeVisitor#_dastore(int) */
@Override public void _dastore(int pc) { // default behavior is to do nothing }
See Also:
  • _dcmpg._dcmpg(int)
/** * @see IBytecodeVisitor#_dcmpg(int) */
@Override public void _dcmpg(int pc) { // default behavior is to do nothing }
See Also:
  • _dcmpl._dcmpl(int)
/** * @see IBytecodeVisitor#_dcmpl(int) */
@Override public void _dcmpl(int pc) { // default behavior is to do nothing }
See Also:
  • _dconst_0._dconst_0(int)
/** * @see IBytecodeVisitor#_dconst_0(int) */
@Override public void _dconst_0(int pc) { // default behavior is to do nothing }
See Also:
  • _dconst_1._dconst_1(int)
/** * @see IBytecodeVisitor#_dconst_1(int) */
@Override public void _dconst_1(int pc) { // default behavior is to do nothing }
See Also:
  • _ddiv._ddiv(int)
/** * @see IBytecodeVisitor#_ddiv(int) */
@Override public void _ddiv(int pc) { // default behavior is to do nothing }
See Also:
  • _dload_0._dload_0(int)
/** * @see IBytecodeVisitor#_dload_0(int) */
@Override public void _dload_0(int pc) { // default behavior is to do nothing }
See Also:
  • _dload_1._dload_1(int)
/** * @see IBytecodeVisitor#_dload_1(int) */
@Override public void _dload_1(int pc) { // default behavior is to do nothing }
See Also:
  • _dload_2._dload_2(int)
/** * @see IBytecodeVisitor#_dload_2(int) */
@Override public void _dload_2(int pc) { // default behavior is to do nothing }
See Also:
  • _dload_3._dload_3(int)
/** * @see IBytecodeVisitor#_dload_3(int) */
@Override public void _dload_3(int pc) { // default behavior is to do nothing }
See Also:
  • _dload._dload(int, int)
/** * @see IBytecodeVisitor#_dload(int, int) */
@Override public void _dload(int pc, int index) { // default behavior is to do nothing }
See Also:
  • _dmul._dmul(int)
/** * @see IBytecodeVisitor#_dmul(int) */
@Override public void _dmul(int pc) { // default behavior is to do nothing }
See Also:
  • _dneg._dneg(int)
/** * @see IBytecodeVisitor#_dneg(int) */
@Override public void _dneg(int pc) { // default behavior is to do nothing }
See Also:
  • _drem._drem(int)
/** * @see IBytecodeVisitor#_drem(int) */
@Override public void _drem(int pc) { // default behavior is to do nothing }
See Also:
  • _dreturn._dreturn(int)
/** * @see IBytecodeVisitor#_dreturn(int) */
@Override public void _dreturn(int pc) { // default behavior is to do nothing }
See Also:
  • _dstore_0._dstore_0(int)
/** * @see IBytecodeVisitor#_dstore_0(int) */
@Override public void _dstore_0(int pc) { // default behavior is to do nothing }
See Also:
  • _dstore_1._dstore_1(int)
/** * @see IBytecodeVisitor#_dstore_1(int) */
@Override public void _dstore_1(int pc) { // default behavior is to do nothing }
See Also:
  • _dstore_2._dstore_2(int)
/** * @see IBytecodeVisitor#_dstore_2(int) */
@Override public void _dstore_2(int pc) { // default behavior is to do nothing }
See Also:
  • _dstore_3._dstore_3(int)
/** * @see IBytecodeVisitor#_dstore_3(int) */
@Override public void _dstore_3(int pc) { // default behavior is to do nothing }
See Also:
  • _dstore._dstore(int, int)
/** * @see IBytecodeVisitor#_dstore(int, int) */
@Override public void _dstore(int pc, int index) { // default behavior is to do nothing }
See Also:
  • _dsub._dsub(int)
/** * @see IBytecodeVisitor#_dsub(int) */
@Override public void _dsub(int pc) { // default behavior is to do nothing }
See Also:
  • _dup_x1._dup_x1(int)
/** * @see IBytecodeVisitor#_dup_x1(int) */
@Override public void _dup_x1(int pc) { // default behavior is to do nothing }
See Also:
  • _dup_x2._dup_x2(int)
/** * @see IBytecodeVisitor#_dup_x2(int) */
@Override public void _dup_x2(int pc) { // default behavior is to do nothing }
See Also:
  • _dup._dup(int)
/** * @see IBytecodeVisitor#_dup(int) */
@Override public void _dup(int pc) { // default behavior is to do nothing }
See Also:
  • _dup2_x1._dup2_x1(int)
/** * @see IBytecodeVisitor#_dup2_x1(int) */
@Override public void _dup2_x1(int pc) { // default behavior is to do nothing }
See Also:
  • _dup2_x2._dup2_x2(int)
/** * @see IBytecodeVisitor#_dup2_x2(int) */
@Override public void _dup2_x2(int pc) { // default behavior is to do nothing }
See Also:
  • _dup2._dup2(int)
/** * @see IBytecodeVisitor#_dup2(int) */
@Override public void _dup2(int pc) { // default behavior is to do nothing }
See Also:
  • _f2d._f2d(int)
/** * @see IBytecodeVisitor#_f2d(int) */
@Override public void _f2d(int pc) { // default behavior is to do nothing }
See Also:
  • _f2i._f2i(int)
/** * @see IBytecodeVisitor#_f2i(int) */
@Override public void _f2i(int pc) { // default behavior is to do nothing }
See Also:
  • _f2l._f2l(int)
/** * @see IBytecodeVisitor#_f2l(int) */
@Override public void _f2l(int pc) { // default behavior is to do nothing }
See Also:
  • _fadd._fadd(int)
/** * @see IBytecodeVisitor#_fadd(int) */
@Override public void _fadd(int pc) { // default behavior is to do nothing }
See Also:
  • _faload._faload(int)
/** * @see IBytecodeVisitor#_faload(int) */
@Override public void _faload(int pc) { // default behavior is to do nothing }
See Also:
  • _fastore._fastore(int)
/** * @see IBytecodeVisitor#_fastore(int) */
@Override public void _fastore(int pc) { // default behavior is to do nothing }
See Also:
  • _fcmpg._fcmpg(int)
/** * @see IBytecodeVisitor#_fcmpg(int) */
@Override public void _fcmpg(int pc) { // default behavior is to do nothing }
See Also:
  • _fcmpl._fcmpl(int)
/** * @see IBytecodeVisitor#_fcmpl(int) */
@Override public void _fcmpl(int pc) { // default behavior is to do nothing }
See Also:
  • _fconst_0._fconst_0(int)
/** * @see IBytecodeVisitor#_fconst_0(int) */
@Override public void _fconst_0(int pc) { // default behavior is to do nothing }
See Also:
  • _fconst_1._fconst_1(int)
/** * @see IBytecodeVisitor#_fconst_1(int) */
@Override public void _fconst_1(int pc) { // default behavior is to do nothing }
See Also:
  • _fconst_2._fconst_2(int)
/** * @see IBytecodeVisitor#_fconst_2(int) */
@Override public void _fconst_2(int pc) { // default behavior is to do nothing }
See Also:
  • _fdiv._fdiv(int)
/** * @see IBytecodeVisitor#_fdiv(int) */
@Override public void _fdiv(int pc) { // default behavior is to do nothing }
See Also:
  • _fload_0._fload_0(int)
/** * @see IBytecodeVisitor#_fload_0(int) */
@Override public void _fload_0(int pc) { // default behavior is to do nothing }
See Also:
  • _fload_1._fload_1(int)
/** * @see IBytecodeVisitor#_fload_1(int) */
@Override public void _fload_1(int pc) { // default behavior is to do nothing }
See Also:
  • _fload_2._fload_2(int)
/** * @see IBytecodeVisitor#_fload_2(int) */
@Override public void _fload_2(int pc) { // default behavior is to do nothing }
See Also:
  • _fload_3._fload_3(int)
/** * @see IBytecodeVisitor#_fload_3(int) */
@Override public void _fload_3(int pc) { // default behavior is to do nothing }
See Also:
  • _fload._fload(int, int)
/** * @see IBytecodeVisitor#_fload(int, int) */
@Override public void _fload(int pc, int index) { // default behavior is to do nothing }
See Also:
  • _fmul._fmul(int)
/** * @see IBytecodeVisitor#_fmul(int) */
@Override public void _fmul(int pc) { // default behavior is to do nothing }
See Also:
  • _fneg._fneg(int)
/** * @see IBytecodeVisitor#_fneg(int) */
@Override public void _fneg(int pc) { // default behavior is to do nothing }
See Also:
  • _frem._frem(int)
/** * @see IBytecodeVisitor#_frem(int) */
@Override public void _frem(int pc) { // default behavior is to do nothing }
See Also:
  • _freturn._freturn(int)
/** * @see IBytecodeVisitor#_freturn(int) */
@Override public void _freturn(int pc) { // default behavior is to do nothing }
See Also:
  • _fstore_0._fstore_0(int)
/** * @see IBytecodeVisitor#_fstore_0(int) */
@Override public void _fstore_0(int pc) { // default behavior is to do nothing }
See Also:
  • _fstore_1._fstore_1(int)
/** * @see IBytecodeVisitor#_fstore_1(int) */
@Override public void _fstore_1(int pc) { // default behavior is to do nothing }
See Also:
  • _fstore_2._fstore_2(int)
/** * @see IBytecodeVisitor#_fstore_2(int) */
@Override public void _fstore_2(int pc) { // default behavior is to do nothing }
See Also:
  • _fstore_3._fstore_3(int)
/** * @see IBytecodeVisitor#_fstore_3(int) */
@Override public void _fstore_3(int pc) { // default behavior is to do nothing }
See Also:
  • _fstore._fstore(int, int)
/** * @see IBytecodeVisitor#_fstore(int, int) */
@Override public void _fstore(int pc, int index) { // default behavior is to do nothing }
See Also:
  • _fsub._fsub(int)
/** * @see IBytecodeVisitor#_fsub(int) */
@Override public void _fsub(int pc) { // default behavior is to do nothing }
See Also:
  • _getfield._getfield(int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_getfield(int, int, IConstantPoolEntry) */
@Override public void _getfield(int pc, int index, IConstantPoolEntry constantFieldref) { // default behavior is to do nothing }
See Also:
  • _getstatic._getstatic(int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_getstatic(int, int, IConstantPoolEntry) */
@Override public void _getstatic( int pc, int index, IConstantPoolEntry constantFieldref) { // default behavior is to do nothing }
See Also:
  • _goto_w._goto_w(int, int)
/** * @see IBytecodeVisitor#_goto_w(int, int) */
@Override public void _goto_w(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _goto._goto(int, int)
/** * @see IBytecodeVisitor#_goto(int, int) */
@Override public void _goto(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _i2b._i2b(int)
/** * @see IBytecodeVisitor#_i2b(int) */
@Override public void _i2b(int pc) { // default behavior is to do nothing }
See Also:
  • _i2c._i2c(int)
/** * @see IBytecodeVisitor#_i2c(int) */
@Override public void _i2c(int pc) { // default behavior is to do nothing }
See Also:
  • _i2d._i2d(int)
/** * @see IBytecodeVisitor#_i2d(int) */
@Override public void _i2d(int pc) { // default behavior is to do nothing }
See Also:
  • _i2f._i2f(int)
/** * @see IBytecodeVisitor#_i2f(int) */
@Override public void _i2f(int pc) { // default behavior is to do nothing }
See Also:
  • _i2l._i2l(int)
/** * @see IBytecodeVisitor#_i2l(int) */
@Override public void _i2l(int pc) { // default behavior is to do nothing }
See Also:
  • _i2s._i2s(int)
/** * @see IBytecodeVisitor#_i2s(int) */
@Override public void _i2s(int pc) { // default behavior is to do nothing }
See Also:
  • _iadd._iadd(int)
/** * @see IBytecodeVisitor#_iadd(int) */
@Override public void _iadd(int pc) { // default behavior is to do nothing }
See Also:
  • _iaload._iaload(int)
/** * @see IBytecodeVisitor#_iaload(int) */
@Override public void _iaload(int pc) { // default behavior is to do nothing }
See Also:
  • _iand._iand(int)
/** * @see IBytecodeVisitor#_iand(int) */
@Override public void _iand(int pc) { // default behavior is to do nothing }
See Also:
  • _iastore._iastore(int)
/** * @see IBytecodeVisitor#_iastore(int) */
@Override public void _iastore(int pc) { // default behavior is to do nothing }
See Also:
  • _iconst_0._iconst_0(int)
/** * @see IBytecodeVisitor#_iconst_0(int) */
@Override public void _iconst_0(int pc) { // default behavior is to do nothing }
See Also:
  • _iconst_1._iconst_1(int)
/** * @see IBytecodeVisitor#_iconst_1(int) */
@Override public void _iconst_1(int pc) { // default behavior is to do nothing }
See Also:
  • _iconst_2._iconst_2(int)
/** * @see IBytecodeVisitor#_iconst_2(int) */
@Override public void _iconst_2(int pc) { // default behavior is to do nothing }
See Also:
  • _iconst_3._iconst_3(int)
/** * @see IBytecodeVisitor#_iconst_3(int) */
@Override public void _iconst_3(int pc) { // default behavior is to do nothing }
See Also:
  • _iconst_4._iconst_4(int)
/** * @see IBytecodeVisitor#_iconst_4(int) */
@Override public void _iconst_4(int pc) { // default behavior is to do nothing }
See Also:
  • _iconst_5._iconst_5(int)
/** * @see IBytecodeVisitor#_iconst_5(int) */
@Override public void _iconst_5(int pc) { // default behavior is to do nothing }
See Also:
  • _iconst_m1._iconst_m1(int)
/** * @see IBytecodeVisitor#_iconst_m1(int) */
@Override public void _iconst_m1(int pc) { // default behavior is to do nothing }
See Also:
  • _idiv._idiv(int)
/** * @see IBytecodeVisitor#_idiv(int) */
@Override public void _idiv(int pc) { // default behavior is to do nothing }
See Also:
  • _if_acmpeq._if_acmpeq(int, int)
/** * @see IBytecodeVisitor#_if_acmpeq(int, int) */
@Override public void _if_acmpeq(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _if_acmpne._if_acmpne(int, int)
/** * @see IBytecodeVisitor#_if_acmpne(int, int) */
@Override public void _if_acmpne(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _if_icmpeq._if_icmpeq(int, int)
/** * @see IBytecodeVisitor#_if_icmpeq(int, int) */
@Override public void _if_icmpeq(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _if_icmpge._if_icmpge(int, int)
/** * @see IBytecodeVisitor#_if_icmpge(int, int) */
@Override public void _if_icmpge(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _if_icmpgt._if_icmpgt(int, int)
/** * @see IBytecodeVisitor#_if_icmpgt(int, int) */
@Override public void _if_icmpgt(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _if_icmple._if_icmple(int, int)
/** * @see IBytecodeVisitor#_if_icmple(int, int) */
@Override public void _if_icmple(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _if_icmplt._if_icmplt(int, int)
/** * @see IBytecodeVisitor#_if_icmplt(int, int) */
@Override public void _if_icmplt(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _if_icmpne._if_icmpne(int, int)
/** * @see IBytecodeVisitor#_if_icmpne(int, int) */
@Override public void _if_icmpne(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _ifeq._ifeq(int, int)
/** * @see IBytecodeVisitor#_ifeq(int, int) */
@Override public void _ifeq(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _ifge._ifge(int, int)
/** * @see IBytecodeVisitor#_ifge(int, int) */
@Override public void _ifge(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _ifgt._ifgt(int, int)
/** * @see IBytecodeVisitor#_ifgt(int, int) */
@Override public void _ifgt(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _ifle._ifle(int, int)
/** * @see IBytecodeVisitor#_ifle(int, int) */
@Override public void _ifle(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _iflt._iflt(int, int)
/** * @see IBytecodeVisitor#_iflt(int, int) */
@Override public void _iflt(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _ifne._ifne(int, int)
/** * @see IBytecodeVisitor#_ifne(int, int) */
@Override public void _ifne(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _ifnonnull._ifnonnull(int, int)
/** * @see IBytecodeVisitor#_ifnonnull(int, int) */
@Override public void _ifnonnull(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _ifnull._ifnull(int, int)
/** * @see IBytecodeVisitor#_ifnull(int, int) */
@Override public void _ifnull(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _iinc._iinc(int, int, int)
/** * @see IBytecodeVisitor#_iinc(int, int, int) */
@Override public void _iinc(int pc, int index, int _const) { // default behavior is to do nothing }
See Also:
  • _iload_0._iload_0(int)
/** * @see IBytecodeVisitor#_iload_0(int) */
@Override public void _iload_0(int pc) { // default behavior is to do nothing }
See Also:
  • _iload_1._iload_1(int)
/** * @see IBytecodeVisitor#_iload_1(int) */
@Override public void _iload_1(int pc) { // default behavior is to do nothing }
See Also:
  • _iload_2._iload_2(int)
/** * @see IBytecodeVisitor#_iload_2(int) */
@Override public void _iload_2(int pc) { // default behavior is to do nothing }
See Also:
  • _iload_3._iload_3(int)
/** * @see IBytecodeVisitor#_iload_3(int) */
@Override public void _iload_3(int pc) { // default behavior is to do nothing }
See Also:
  • _iload._iload(int, int)
/** * @see IBytecodeVisitor#_iload(int, int) */
@Override public void _iload(int pc, int index) { // default behavior is to do nothing }
See Also:
  • _imul._imul(int)
/** * @see IBytecodeVisitor#_imul(int) */
@Override public void _imul(int pc) { // default behavior is to do nothing }
See Also:
  • _ineg._ineg(int)
/** * @see IBytecodeVisitor#_ineg(int) */
@Override public void _ineg(int pc) { // default behavior is to do nothing }
See Also:
  • _instanceof._instanceof(int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_instanceof(int, int, IConstantPoolEntry) */
@Override public void _instanceof(int pc, int index, IConstantPoolEntry constantClass) { // default behavior is to do nothing }
See Also:
  • _invokedynamic._invokedynamic(int, int, IConstantPoolEntry, IConstantPoolEntry)
Since:3.6
Deprecated:This has been replaced with IBytecodeVisitor._invokedynamic(int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_invokedynamic(int, int, IConstantPoolEntry, IConstantPoolEntry) * @since 3.6 * @deprecated This has been replaced with {@link IBytecodeVisitor#_invokedynamic(int, int, IConstantPoolEntry)} */
@Override public void _invokedynamic( int pc, int index, IConstantPoolEntry nameEntry, IConstantPoolEntry descriptorEntry) { // default behavior is to do nothing }
See Also:
  • _invokedynamic._invokedynamic(int, int, IConstantPoolEntry)
Since:3.8
/** * @see IBytecodeVisitor#_invokedynamic(int, int, IConstantPoolEntry) * @since 3.8 */
@Override public void _invokedynamic( int pc, int index, IConstantPoolEntry invokeDynamicEntry) { // default behavior is to do nothing }
See Also:
  • _invokeinterface._invokeinterface(int, int, byte, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_invokeinterface(int, int, byte, IConstantPoolEntry) */
@Override public void _invokeinterface( int pc, int index, byte nargs, IConstantPoolEntry constantInterfaceMethodref) { // default behavior is to do nothing }
See Also:
  • _invokespecial._invokespecial(int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_invokespecial(int, int, IConstantPoolEntry) */
@Override public void _invokespecial( int pc, int index, IConstantPoolEntry constantMethodref) { // default behavior is to do nothing }
See Also:
  • _invokestatic._invokestatic(int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_invokestatic(int, int, IConstantPoolEntry) */
@Override public void _invokestatic( int pc, int index, IConstantPoolEntry constantMethodref) { // default behavior is to do nothing }
See Also:
  • _invokevirtual._invokevirtual(int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_invokevirtual(int, int, IConstantPoolEntry) */
@Override public void _invokevirtual( int pc, int index, IConstantPoolEntry constantMethodref) { // default behavior is to do nothing }
See Also:
  • _ior._ior(int)
/** * @see IBytecodeVisitor#_ior(int) */
@Override public void _ior(int pc) { // default behavior is to do nothing }
See Also:
  • _irem._irem(int)
/** * @see IBytecodeVisitor#_irem(int) */
@Override public void _irem(int pc) { // default behavior is to do nothing }
See Also:
  • _ireturn._ireturn(int)
/** * @see IBytecodeVisitor#_ireturn(int) */
@Override public void _ireturn(int pc) { // default behavior is to do nothing }
See Also:
  • _ishl._ishl(int)
/** * @see IBytecodeVisitor#_ishl(int) */
@Override public void _ishl(int pc) { // default behavior is to do nothing }
See Also:
  • _ishr._ishr(int)
/** * @see IBytecodeVisitor#_ishr(int) */
@Override public void _ishr(int pc) { // default behavior is to do nothing }
See Also:
  • _istore_0._istore_0(int)
/** * @see IBytecodeVisitor#_istore_0(int) */
@Override public void _istore_0(int pc) { // default behavior is to do nothing }
See Also:
  • _istore_1._istore_1(int)
/** * @see IBytecodeVisitor#_istore_1(int) */
@Override public void _istore_1(int pc) { // default behavior is to do nothing }
See Also:
  • _istore_2._istore_2(int)
/** * @see IBytecodeVisitor#_istore_2(int) */
@Override public void _istore_2(int pc) { // default behavior is to do nothing }
See Also:
  • _istore_3._istore_3(int)
/** * @see IBytecodeVisitor#_istore_3(int) */
@Override public void _istore_3(int pc) { // default behavior is to do nothing }
See Also:
  • _istore._istore(int, int)
/** * @see IBytecodeVisitor#_istore(int, int) */
@Override public void _istore(int pc, int index) { // default behavior is to do nothing }
See Also:
  • _isub._isub(int)
/** * @see IBytecodeVisitor#_isub(int) */
@Override public void _isub(int pc) { // default behavior is to do nothing }
See Also:
  • _iushr._iushr(int)
/** * @see IBytecodeVisitor#_iushr(int) */
@Override public void _iushr(int pc) { // default behavior is to do nothing }
See Also:
  • _ixor._ixor(int)
/** * @see IBytecodeVisitor#_ixor(int) */
@Override public void _ixor(int pc) { // default behavior is to do nothing }
See Also:
  • _jsr_w._jsr_w(int, int)
/** * @see IBytecodeVisitor#_jsr_w(int, int) */
@Override public void _jsr_w(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _jsr._jsr(int, int)
/** * @see IBytecodeVisitor#_jsr(int, int) */
@Override public void _jsr(int pc, int branchOffset) { // default behavior is to do nothing }
See Also:
  • _l2d._l2d(int)
/** * @see IBytecodeVisitor#_l2d(int) */
@Override public void _l2d(int pc) { // default behavior is to do nothing }
See Also:
  • _l2f._l2f(int)
/** * @see IBytecodeVisitor#_l2f(int) */
@Override public void _l2f(int pc) { // default behavior is to do nothing }
See Also:
  • _l2i._l2i(int)
/** * @see IBytecodeVisitor#_l2i(int) */
@Override public void _l2i(int pc) { // default behavior is to do nothing }
See Also:
  • _ladd._ladd(int)
/** * @see IBytecodeVisitor#_ladd(int) */
@Override public void _ladd(int pc) { // default behavior is to do nothing }
See Also:
  • _laload._laload(int)
/** * @see IBytecodeVisitor#_laload(int) */
@Override public void _laload(int pc) { // default behavior is to do nothing }
See Also:
  • _land._land(int)
/** * @see IBytecodeVisitor#_land(int) */
@Override public void _land(int pc) { // default behavior is to do nothing }
See Also:
  • _lastore._lastore(int)
/** * @see IBytecodeVisitor#_lastore(int) */
@Override public void _lastore(int pc) { // default behavior is to do nothing }
See Also:
  • _lcmp._lcmp(int)
/** * @see IBytecodeVisitor#_lcmp(int) */
@Override public void _lcmp(int pc) { // default behavior is to do nothing }
See Also:
  • _lconst_0._lconst_0(int)
/** * @see IBytecodeVisitor#_lconst_0(int) */
@Override public void _lconst_0(int pc) { // default behavior is to do nothing }
See Also:
  • _lconst_1._lconst_1(int)
/** * @see IBytecodeVisitor#_lconst_1(int) */
@Override public void _lconst_1(int pc) { // default behavior is to do nothing }
See Also:
  • _ldc_w._ldc_w(int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_ldc_w(int, int, IConstantPoolEntry) */
@Override public void _ldc_w(int pc, int index, IConstantPoolEntry constantPoolEntry) { // default behavior is to do nothing }
See Also:
  • _ldc._ldc(int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_ldc(int, int, IConstantPoolEntry) */
@Override public void _ldc(int pc, int index, IConstantPoolEntry constantPoolEntry) { // default behavior is to do nothing }
See Also:
  • _ldc2_w._ldc2_w(int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_ldc2_w(int, int, IConstantPoolEntry) */
@Override public void _ldc2_w(int pc, int index, IConstantPoolEntry constantPoolEntry) { // default behavior is to do nothing }
See Also:
  • _ldiv._ldiv(int)
/** * @see IBytecodeVisitor#_ldiv(int) */
@Override public void _ldiv(int pc) { // default behavior is to do nothing }
See Also:
  • _lload_0._lload_0(int)
/** * @see IBytecodeVisitor#_lload_0(int) */
@Override public void _lload_0(int pc) { // default behavior is to do nothing }
See Also:
  • _lload_1._lload_1(int)
/** * @see IBytecodeVisitor#_lload_1(int) */
@Override public void _lload_1(int pc) { // default behavior is to do nothing }
See Also:
  • _lload_2._lload_2(int)
/** * @see IBytecodeVisitor#_lload_2(int) */
@Override public void _lload_2(int pc) { // default behavior is to do nothing }
See Also:
  • _lload_3._lload_3(int)
/** * @see IBytecodeVisitor#_lload_3(int) */
@Override public void _lload_3(int pc) { // default behavior is to do nothing }
See Also:
  • _lload._lload(int, int)
/** * @see IBytecodeVisitor#_lload(int, int) */
@Override public void _lload(int pc, int index) { // default behavior is to do nothing }
See Also:
  • _lmul._lmul(int)
/** * @see IBytecodeVisitor#_lmul(int) */
@Override public void _lmul(int pc) { // default behavior is to do nothing }
See Also:
  • _lneg._lneg(int)
/** * @see IBytecodeVisitor#_lneg(int) */
@Override public void _lneg(int pc) { // default behavior is to do nothing }
See Also:
  • _lookupswitch._lookupswitch(int, int, int, int[][])
/** * @see IBytecodeVisitor#_lookupswitch(int, int, int, int[][]) */
@Override public void _lookupswitch( int pc, int defaultoffset, int npairs, int[][] offset_pairs) { // default behavior is to do nothing }
See Also:
  • _lor._lor(int)
/** * @see IBytecodeVisitor#_lor(int) */
@Override public void _lor(int pc) { // default behavior is to do nothing }
See Also:
  • _lrem._lrem(int)
/** * @see IBytecodeVisitor#_lrem(int) */
@Override public void _lrem(int pc) { // default behavior is to do nothing }
See Also:
  • _lreturn._lreturn(int)
/** * @see IBytecodeVisitor#_lreturn(int) */
@Override public void _lreturn(int pc) { // default behavior is to do nothing }
See Also:
  • _lshl._lshl(int)
/** * @see IBytecodeVisitor#_lshl(int) */
@Override public void _lshl(int pc) { // default behavior is to do nothing }
See Also:
  • _lshr._lshr(int)
/** * @see IBytecodeVisitor#_lshr(int) */
@Override public void _lshr(int pc) { // default behavior is to do nothing }
See Also:
  • _lstore_0._lstore_0(int)
/** * @see IBytecodeVisitor#_lstore_0(int) */
@Override public void _lstore_0(int pc) { // default behavior is to do nothing }
See Also:
  • _lstore_1._lstore_1(int)
/** * @see IBytecodeVisitor#_lstore_1(int) */
@Override public void _lstore_1(int pc) { // default behavior is to do nothing }
See Also:
  • _lstore_2._lstore_2(int)
/** * @see IBytecodeVisitor#_lstore_2(int) */
@Override public void _lstore_2(int pc) { // default behavior is to do nothing }
See Also:
  • _lstore_3._lstore_3(int)
/** * @see IBytecodeVisitor#_lstore_3(int) */
@Override public void _lstore_3(int pc) { // default behavior is to do nothing }
See Also:
  • _lstore._lstore(int, int)
/** * @see IBytecodeVisitor#_lstore(int, int) */
@Override public void _lstore(int pc, int index) { // default behavior is to do nothing }
See Also:
  • _lsub._lsub(int)
/** * @see IBytecodeVisitor#_lsub(int) */
@Override public void _lsub(int pc) { // default behavior is to do nothing }
See Also:
  • _lushr._lushr(int)
/** * @see IBytecodeVisitor#_lushr(int) */
@Override public void _lushr(int pc) { // default behavior is to do nothing }
See Also:
  • _lxor._lxor(int)
/** * @see IBytecodeVisitor#_lxor(int) */
@Override public void _lxor(int pc) { // default behavior is to do nothing }
See Also:
  • _monitorenter._monitorenter(int)
/** * @see IBytecodeVisitor#_monitorenter(int) */
@Override public void _monitorenter(int pc) { // default behavior is to do nothing }
See Also:
  • _monitorexit._monitorexit(int)
/** * @see IBytecodeVisitor#_monitorexit(int) */
@Override public void _monitorexit(int pc) { // default behavior is to do nothing }
See Also:
  • _multianewarray._multianewarray(int, int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_multianewarray(int, int, int, IConstantPoolEntry) */
@Override public void _multianewarray( int pc, int index, int dimensions, IConstantPoolEntry constantClass) { // default behavior is to do nothing }
See Also:
  • _new._new(int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_new(int, int, IConstantPoolEntry) */
@Override public void _new(int pc, int index, IConstantPoolEntry constantClass) { // default behavior is to do nothing }
See Also:
  • _newarray._newarray(int, int)
/** * @see IBytecodeVisitor#_newarray(int, int) */
@Override public void _newarray(int pc, int atype) { // default behavior is to do nothing }
See Also:
  • _nop._nop(int)
/** * @see IBytecodeVisitor#_nop(int) */
@Override public void _nop(int pc) { // default behavior is to do nothing }
See Also:
  • _pop._pop(int)
/** * @see IBytecodeVisitor#_pop(int) */
@Override public void _pop(int pc) { // default behavior is to do nothing }
See Also:
  • _pop2._pop2(int)
/** * @see IBytecodeVisitor#_pop2(int) */
@Override public void _pop2(int pc) { // default behavior is to do nothing }
See Also:
  • _putfield._putfield(int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_putfield(int, int, IConstantPoolEntry) */
@Override public void _putfield(int pc, int index, IConstantPoolEntry constantFieldref) { // default behavior is to do nothing }
See Also:
  • _putstatic._putstatic(int, int, IConstantPoolEntry)
/** * @see IBytecodeVisitor#_putstatic(int, int, IConstantPoolEntry) */
@Override public void _putstatic( int pc, int index, IConstantPoolEntry constantFieldref) { // default behavior is to do nothing }
See Also:
  • _ret._ret(int, int)
/** * @see IBytecodeVisitor#_ret(int, int) */
@Override public void _ret(int pc, int index) { // default behavior is to do nothing }
See Also:
  • _return._return(int)
/** * @see IBytecodeVisitor#_return(int) */
@Override public void _return(int pc) { // default behavior is to do nothing }
See Also:
  • _saload._saload(int)
/** * @see IBytecodeVisitor#_saload(int) */
@Override public void _saload(int pc) { // default behavior is to do nothing }
See Also:
  • _sastore._sastore(int)
/** * @see IBytecodeVisitor#_sastore(int) */
@Override public void _sastore(int pc) { // default behavior is to do nothing }
See Also:
  • _sipush._sipush(int, short)
/** * @see IBytecodeVisitor#_sipush(int, short) */
@Override public void _sipush(int pc, short value) { // default behavior is to do nothing }
See Also:
  • _swap._swap(int)
/** * @see IBytecodeVisitor#_swap(int) */
@Override public void _swap(int pc) { // default behavior is to do nothing }
See Also:
  • _tableswitch._tableswitch(int, int, int, int, int[])
/** * @see IBytecodeVisitor#_tableswitch(int, int, int, int, int[]) */
@Override public void _tableswitch( int pc, int defaultoffset, int low, int high, int[] jump_offsets) { // default behavior is to do nothing }
See Also:
  • _wide._wide(int, int, int, int)
/** * @see IBytecodeVisitor#_wide(int, int, int, int) */
@Override public void _wide(int pc, int iincopcode, int index, int _const) { // default behavior is to do nothing }
See Also:
  • _wide._wide(int, int, int)
/** * @see IBytecodeVisitor#_wide(int, int, int) */
@Override public void _wide(int pc, int opcode, int index) { // default behavior is to do nothing }
See Also:
  • _breakpoint._breakpoint(int)
/** * @see IBytecodeVisitor#_breakpoint(int) */
@Override public void _breakpoint(int pc) { // default behavior is to do nothing }
See Also:
  • _impdep1._impdep1(int)
/** * @see IBytecodeVisitor#_impdep1(int) */
@Override public void _impdep1(int pc) { // default behavior is to do nothing }
See Also:
  • _impdep2._impdep2(int)
/** * @see IBytecodeVisitor#_impdep2(int) */
@Override public void _impdep2(int pc) { // default behavior is to do nothing } }