DefaultBytecodeVisitor.returnClassName
Code IndexAdd Codota to your IDE (free)

Best Java code snippets using org.eclipse.jdt.internal.core.util.DefaultBytecodeVisitor.returnClassName (Showing top 20 results out of 315)

  • Common ways to obtain DefaultBytecodeVisitor
private void myMethod () {
DefaultBytecodeVisitor d =
  • ICodeAttribute codeAttribute;StringBuffer buffer;String lineSeparator;new DefaultBytecodeVisitor(codeAttribute, parameterNames, methodDescriptor, isStatic, buffer, lineSeparator, tabNumber, mode)
  • Smart code suggestions by Codota
}
origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

private String returnDeclaringClassName(IConstantPoolEntry constantRef) {
  final char[] className = constantRef.getClassName();
  return returnClassName(className);
}
origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

private String returnDeclaringClassName(IConstantPoolEntry constantRef) {
  final char[] className = constantRef.getClassName();
  return returnClassName(className);
}
origin: com.vaadin/vaadin-client-compiler-deps

private String returnDeclaringClassName(IConstantPoolEntry constantRef) {
  final char[] className = constantRef.getClassName();
  return returnClassName(className);
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

private String returnDeclaringClassName(IConstantPoolEntry constantRef) {
  final char[] className = constantRef.getClassName();
  return returnClassName(className);
}
origin: org.eclipse.jdt/org.eclipse.jdt.core

private String returnDeclaringClassName(IConstantPoolEntry constantRef) {
  final char[] className = constantRef.getClassName();
  return returnClassName(className);
}
origin: org.eclipse.tycho/org.eclipse.jdt.core

private String returnDeclaringClassName(IConstantPoolEntry constantRef) {
  final char[] className = constantRef.getClassName();
  return returnClassName(className);
}
origin: trylimits/Eclipse-Postfix-Code-Completion

private String returnDeclaringClassName(IConstantPoolEntry constantRef) {
  final char[] className = constantRef.getClassName();
  return returnClassName(className);
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

private String returnConstantClassName(IConstantPoolEntry constantClass) {
  char[] className = constantClass.getClassInfoName();
  if (className.length == 0) {
    return EMPTY_CLASS_NAME;
  }
  switch(className[0]) {
    case '[' :
      StringBuffer classNameBuffer = new StringBuffer();
      Util.appendTypeSignature(className, 0, classNameBuffer, isCompact());
      return classNameBuffer.toString();
    default:
      return returnClassName(className);
  }
}
private String returnClassName(char[] classInfoName) {
origin: org.eclipse.jdt/org.eclipse.jdt.core

private StringBuffer appendConstantDynamic(StringBuffer s, String messageKind, int opcode,
    int index, IConstantPoolEntry entry) {
  return s.append(Messages.bind(messageKind, new String[] {
      OpcodeStringValues.BYTECODE_NAMES[opcode],
      Integer.toString(index),
      Integer.toString(((IConstantPoolEntry2) entry).getBootstrapMethodAttributeIndex()),
      new String(entry.getFieldName()),
      returnClassName(Signature.toCharArray(entry.getFieldDescriptor()))
    }));
}
/**
origin: com.vaadin/vaadin-client-compiler-deps

/**
 * @see IBytecodeVisitor#_getfield(int, int, IConstantPoolEntry)
 */
public void _getfield(int pc, int index, IConstantPoolEntry constantFieldref) {
  dumpPcNumber(pc);
  this.buffer.append(Messages.bind(Messages.classformat_getfield, new String[] {
    OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.GETFIELD],
    Integer.toString(index),
    returnDeclaringClassName(constantFieldref),
    new String(constantFieldref.getFieldName()),
    returnClassName(Signature.toCharArray(constantFieldref.getFieldDescriptor()))
  }));
  writeNewLine();
}
origin: org.eclipse.jdt/org.eclipse.jdt.core

/**
 * @see IBytecodeVisitor#_getstatic(int, int, IConstantPoolEntry)
 */
@Override
public void _getstatic(int pc, int index, IConstantPoolEntry constantFieldref) {
  dumpPcNumber(pc);
  this.buffer.append(Messages.bind(Messages.classformat_getstatic, new String[] {
      OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.GETSTATIC],
      Integer.toString(index),
      returnDeclaringClassName(constantFieldref),
      new String(constantFieldref.getFieldName()),
      returnClassName(Signature.toCharArray(constantFieldref.getFieldDescriptor()))
    }));
  writeNewLine();
}
origin: org.eclipse.jdt/org.eclipse.jdt.core

/**
 * @see IBytecodeVisitor#_putstatic(int, int, IConstantPoolEntry)
 */
@Override
public void _putstatic(int pc, int index, IConstantPoolEntry constantFieldref) {
  dumpPcNumber(pc);
  this.buffer.append(Messages.bind(Messages.classformat_putstatic, new String[] {
    OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.PUTSTATIC],
    Integer.toString(index),
    returnDeclaringClassName(constantFieldref),
    new String(constantFieldref.getFieldName()),
    returnClassName(Signature.toCharArray(constantFieldref.getFieldDescriptor()))
  }));
  writeNewLine();
}
origin: trylimits/Eclipse-Postfix-Code-Completion

/**
 * @see IBytecodeVisitor#_putfield(int, int, IConstantPoolEntry)
 */
public void _putfield(int pc, int index, IConstantPoolEntry constantFieldref) {
  dumpPcNumber(pc);
  this.buffer.append(Messages.bind(Messages.classformat_putfield, new String[] {
    OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.PUTFIELD],
    Integer.toString(index),
    returnDeclaringClassName(constantFieldref),
    new String(constantFieldref.getFieldName()),
    returnClassName(Signature.toCharArray(constantFieldref.getFieldDescriptor()))
  }));
  writeNewLine();
}
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

/**
 * @see IBytecodeVisitor#_getfield(int, int, IConstantPoolEntry)
 */
public void _getfield(int pc, int index, IConstantPoolEntry constantFieldref) {
  dumpPcNumber(pc);
  this.buffer.append(Messages.bind(Messages.classformat_getfield, new String[] {
    OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.GETFIELD],
    Integer.toString(index),
    returnDeclaringClassName(constantFieldref),
    new String(constantFieldref.getFieldName()),
    returnClassName(Signature.toCharArray(constantFieldref.getFieldDescriptor()))
  }));
  writeNewLine();
}
origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

/**
 * @see IBytecodeVisitor#_putstatic(int, int, IConstantPoolEntry)
 */
public void _putstatic(int pc, int index, IConstantPoolEntry constantFieldref) {
  dumpPcNumber(pc);
  this.buffer.append(Messages.bind(Messages.classformat_putstatic, new String[] {
    OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.PUTSTATIC],
    Integer.toString(index),
    returnDeclaringClassName(constantFieldref),
    new String(constantFieldref.getFieldName()),
    returnClassName(Signature.toCharArray(constantFieldref.getFieldDescriptor()))
  }));
  writeNewLine();
}
origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

/**
 * @see IBytecodeVisitor#_getstatic(int, int, IConstantPoolEntry)
 */
public void _getstatic(int pc, int index, IConstantPoolEntry constantFieldref) {
  dumpPcNumber(pc);
  this.buffer.append(Messages.bind(Messages.classformat_getstatic, new String[] {
      OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.GETSTATIC],
      Integer.toString(index),
      returnDeclaringClassName(constantFieldref),
      new String(constantFieldref.getFieldName()),
      returnClassName(Signature.toCharArray(constantFieldref.getFieldDescriptor()))
    }));
  writeNewLine();
}
origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

/**
 * @see IBytecodeVisitor#_getstatic(int, int, IConstantPoolEntry)
 */
public void _getstatic(int pc, int index, IConstantPoolEntry constantFieldref) {
  dumpPcNumber(pc);
  this.buffer.append(Messages.bind(Messages.classformat_getstatic, new String[] {
      OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.GETSTATIC],
      Integer.toString(index),
      returnDeclaringClassName(constantFieldref),
      new String(constantFieldref.getFieldName()),
      returnClassName(Signature.toCharArray(constantFieldref.getFieldDescriptor()))
    }));
  writeNewLine();
}
origin: com.vaadin/vaadin-client-compiler-deps

/**
 * @see IBytecodeVisitor#_getstatic(int, int, IConstantPoolEntry)
 */
public void _getstatic(int pc, int index, IConstantPoolEntry constantFieldref) {
  dumpPcNumber(pc);
  this.buffer.append(Messages.bind(Messages.classformat_getstatic, new String[] {
      OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.GETSTATIC],
      Integer.toString(index),
      returnDeclaringClassName(constantFieldref),
      new String(constantFieldref.getFieldName()),
      returnClassName(Signature.toCharArray(constantFieldref.getFieldDescriptor()))
    }));
  writeNewLine();
}
origin: org.eclipse.tycho/org.eclipse.jdt.core

/**
 * @see IBytecodeVisitor#_getstatic(int, int, IConstantPoolEntry)
 */
public void _getstatic(int pc, int index, IConstantPoolEntry constantFieldref) {
  dumpPcNumber(pc);
  this.buffer.append(Messages.bind(Messages.classformat_getstatic, new String[] {
      OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.GETSTATIC],
      Integer.toString(index),
      returnDeclaringClassName(constantFieldref),
      new String(constantFieldref.getFieldName()),
      returnClassName(Signature.toCharArray(constantFieldref.getFieldDescriptor()))
    }));
  writeNewLine();
}
origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

/**
 * @see IBytecodeVisitor#_putfield(int, int, IConstantPoolEntry)
 */
public void _putfield(int pc, int index, IConstantPoolEntry constantFieldref) {
  dumpPcNumber(pc);
  this.buffer.append(Messages.bind(Messages.classformat_putfield, new String[] {
    OpcodeStringValues.BYTECODE_NAMES[IOpcodeMnemonics.PUTFIELD],
    Integer.toString(index),
    returnDeclaringClassName(constantFieldref),
    new String(constantFieldref.getFieldName()),
    returnClassName(Signature.toCharArray(constantFieldref.getFieldDescriptor()))
  }));
  writeNewLine();
}
org.eclipse.jdt.internal.core.utilDefaultBytecodeVisitorreturnClassName

Popular methods of DefaultBytecodeVisitor

  • <init>
  • _aload
  • _astore
  • _dload
  • _dstore
  • _fload
  • _fstore
  • _iinc
  • _iload
  • _istore
  • _lload
  • _lstore
  • _lload,
  • _lstore,
  • _ret,
  • dumpPcNumber,
  • getLocalVariableName,
  • isCompact,
  • returnConstantClassName,
  • returnDeclaringClassName,
  • returnMethodSignature

Popular in Java

  • Reactive rest calls using spring rest template
  • addToBackStack (FragmentTransaction)
  • findViewById (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • BoxLayout (javax.swing)
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin

For IntelliJ IDEA,
Android Studio or Eclipse

  • Search for JavaScript code betaCodota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutBlogContact Us
  • Plugin user guideTerms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)