Package org.eclipse.jdt.core.util

Examples of org.eclipse.jdt.core.util.IConstantPoolEntry2


    int pc,
    int index,
    IConstantPoolEntry invokeDynamicEntry) {

    dumpPcNumber(pc);
    IConstantPoolEntry2 entry = (IConstantPoolEntry2) invokeDynamicEntry;
    this.buffer.append(Messages.bind(Messages.classformat_invokedynamic,
      new String[] {
        OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.INVOKEDYNAMIC],
        Integer.toString(index),
        Integer.toString(entry.getBootstrapMethodAttributeIndex()),
        Util.toString(
          null,
          entry.getMethodName(),
          entry.getMethodDescriptor(),
          true,
          isCompact())
      }));
    writeNewLine();
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.core.util.IConstantPoolEntry2

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.