Codota Logo
CheckClassAdapter.checkTypeArguments
Code IndexAdd Codota to your IDE (free)

How to use
checkTypeArguments
method
in
org.objectweb.asm.util.CheckClassAdapter

Best Java code snippets using org.objectweb.asm.util.CheckClassAdapter.checkTypeArguments (Showing top 3 results out of 315)

  • Common ways to obtain CheckClassAdapter
private void myMethod () {
CheckClassAdapter c =
  • Codota IconClassVisitor classVisitor;new CheckClassAdapter(classVisitor, false)
  • Codota IconClassVisitor classVisitor;new CheckClassAdapter(classVisitor)
  • Smart code suggestions by Codota
}
origin: org.apache.aries.spifly/org.apache.aries.spifly.dynamic.framework.extension

pos = checkTypeArguments(signature, pos);
 pos = checkTypeArguments(signature, pos);
origin: org.ow2.asm/asm-debug-all

/**
 * Checks a class type signature.
 * 
 * @param signature
 *            a string containing the signature that must be checked.
 * @param pos
 *            index of first character to be checked.
 * @return the index of the first character after the checked part.
 */
private static int checkClassTypeSignature(final String signature, int pos) {
  // ClassTypeSignature:
  // L Identifier ( / Identifier )* TypeArguments? ( . Identifier
  // TypeArguments? )* ;
  pos = checkChar('L', signature, pos);
  pos = checkIdentifier(signature, pos);
  while (getChar(signature, pos) == '/') {
    pos = checkIdentifier(signature, pos + 1);
  }
  if (getChar(signature, pos) == '<') {
    pos = checkTypeArguments(signature, pos);
  }
  while (getChar(signature, pos) == '.') {
    pos = checkIdentifier(signature, pos + 1);
    if (getChar(signature, pos) == '<') {
      pos = checkTypeArguments(signature, pos);
    }
  }
  return checkChar(';', signature, pos);
}
origin: org.apache.aries.spifly/org.apache.aries.spifly.dynamic.bundle

pos = checkTypeArguments(signature, pos);
 pos = checkTypeArguments(signature, pos);
org.objectweb.asm.utilCheckClassAdaptercheckTypeArguments

Javadoc

Checks the type arguments in a class type signature.

Popular methods of CheckClassAdapter

  • <init>
    Constructs a new CheckClassAdapter. Subclasses must not use this constructor. Instead, they must use
  • verify
    Checks the given class.
  • visitEnd
  • checkAccess
    Checks that the given access flags do not contain invalid flags. This method also checks that mutual
  • checkChar
    Checks a single character.
  • checkClassSignature
    Checks a class signature.
  • checkClassTypeSignature
    Checks a class type signature.
  • checkFieldSignature
    Checks a field signature.
  • checkMethodSignature
    Checks a method signature.
  • checkState
    Checks that the visit method has been called and that visitEnd has not been called.
  • checkTypeArgument
    Checks a type argument in a class type signature.
  • checkTypeVariableSignature
    Checks a type variable signature.
  • checkTypeArgument,
  • checkTypeVariableSignature,
  • getChar,
  • printAnalyzerResult,
  • visit,
  • visitMethod,
  • checkFullyQualifiedName,
  • checkJavaTypeSignature,
  • checkReferenceTypeSignature

Popular in Java

  • Finding current android device location
  • setContentView (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registery of org.quartz
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now