Example usage for org.objectweb.asm.signature SignatureVisitor subclass-usage

List of usage examples for org.objectweb.asm.signature SignatureVisitor subclass-usage

Introduction

In this page you can find the example usage for org.objectweb.asm.signature SignatureVisitor subclass-usage.

Usage

From source file com.android.mkstubs.sourcer.SignatureSourcer.java

/**
 * A signature visitor that can be used to generate Java source corresponding to
 * various types of signatures.
 * <p/>
 * Terminology: a "signature" is a type descriptor for generics. There are different types
 * of signatures depending on the context where they are used, e.g. method declarations,

From source file com.facebook.buck.jvm.java.abi.SignatureVisitorWrapper.java

/**
 * A {@link SignatureVisitor} that chains to another one. Most of the other visitors in ASM can
 * already do this; {@link SignatureVisitor} is an exception for some reason.
 */
class SignatureVisitorWrapper extends SignatureVisitor {
    private final SignatureVisitor sv;

From source file com.github.trohovsky.just.visitor.SignatureDependenciesVisitor.java

/**
 * Visitor for collecting of signature dependencies.
 * 
 * @author Tomas Rohovsky
 */
public class SignatureDependenciesVisitor extends SignatureVisitor {

From source file com.google.gwt.dev.javac.asm.EmptySignatureVisitor.java

/**
 * Signature visitor that does nothing.
 *
 * Unlike the ASM-provided EmptyVisitor (which does not implement
 * SignatureVisitor), this class does not pass itself to unimplemented
 * sub-visitors, so that a subclass doesn't have to worry about calls for

From source file de.cubeisland.engine.modularity.asm.visitor.MethodSignatureVisitor.java

/**
 * Visits a Signature and provides a TypeReference with GenericType Information
 */
public class MethodSignatureVisitor extends SignatureVisitor {
    private boolean nextType = false;
    private TypeReference type;

From source file de.cubeisland.engine.modularity.asm.visitor.ModuleSignatureVisitor.java

/**
 * Visits a Signature and provides a TypeReference with GenericType Information
 */
public class ModuleSignatureVisitor extends SignatureVisitor {
    private boolean nextType = false;
    private TypeReference type;

From source file org.codehaus.groovy.ast.decompiled.FormalParameterParser.java

abstract class FormalParameterParser extends SignatureVisitor {
    private final AsmReferenceResolver resolver;
    private String currentTypeParameter;
    private final List<ClassNode> parameterBounds = new ArrayList<ClassNode>();
    private final List<GenericsType> typeParameters = new ArrayList<GenericsType>();

From source file org.codehaus.groovy.ast.decompiled.TypeSignatureParser.java

abstract class TypeSignatureParser extends SignatureVisitor {
    private final AsmReferenceResolver resolver;

    public TypeSignatureParser(AsmReferenceResolver resolver) {
        super(CompilerConfiguration.ASM_API_VERSION);
        this.resolver = resolver;

From source file org.eclipse.pde.api.tools.internal.comparator.SignatureDecoder.java

/**
 * This class is used to decode a generic signature for class or method
 */
final class SignatureDecoder extends SignatureVisitor {
    static final int CLASS_BOUND = 1;
    static final int DEFAULT = 0;

From source file org.evosuite.seeding.CollectParameterTypesVisitor.java

/**
 * @author Gordon Fraser
 * 
 */
public class CollectParameterTypesVisitor extends SignatureVisitor {