Java Code Examples for org.springframework.asm.SpringAsmInfo#ASM_VERSION
The following examples show how to use
org.springframework.asm.SpringAsmInfo#ASM_VERSION .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MethodMetadataReadingVisitor.java From spring4-understanding with Apache License 2.0 | 5 votes |
public MethodMetadataReadingVisitor(String methodName, int access, String declaringClassName, String returnTypeName, ClassLoader classLoader, Set<MethodMetadata> methodMetadataSet) { super(SpringAsmInfo.ASM_VERSION); this.methodName = methodName; this.access = access; this.declaringClassName = declaringClassName; this.returnTypeName = returnTypeName; this.classLoader = classLoader; this.methodMetadataSet = methodMetadataSet; }
Example 2
Source File: MethodMetadataReadingVisitor.java From java-technology-stack with MIT License | 5 votes |
public MethodMetadataReadingVisitor(String methodName, int access, String declaringClassName, String returnTypeName, @Nullable ClassLoader classLoader, Set<MethodMetadata> methodMetadataSet) { super(SpringAsmInfo.ASM_VERSION); this.methodName = methodName; this.access = access; this.declaringClassName = declaringClassName; this.returnTypeName = returnTypeName; this.classLoader = classLoader; this.methodMetadataSet = methodMetadataSet; }
Example 3
Source File: LocalVariableTableParameterNameDiscoverer.java From lams with GNU General Public License v2.0 | 5 votes |
public LocalVariableTableVisitor(Class<?> clazz, Map<Member, String[]> map, String name, String desc, boolean isStatic) { super(SpringAsmInfo.ASM_VERSION); this.clazz = clazz; this.memberMap = map; this.name = name; this.args = Type.getArgumentTypes(desc); this.parameterNames = new String[this.args.length]; this.isStatic = isStatic; this.lvtSlotIndex = computeLvtSlotIndices(isStatic, this.args); }
Example 4
Source File: MethodMetadataReadingVisitor.java From spring-analysis-note with MIT License | 5 votes |
public MethodMetadataReadingVisitor(String methodName, int access, String declaringClassName, String returnTypeName, @Nullable ClassLoader classLoader, Set<MethodMetadata> methodMetadataSet) { super(SpringAsmInfo.ASM_VERSION); this.methodName = methodName; this.access = access; this.declaringClassName = declaringClassName; this.returnTypeName = returnTypeName; this.classLoader = classLoader; this.methodMetadataSet = methodMetadataSet; }
Example 5
Source File: ClassMetadataReadingVisitor.java From java-technology-stack with MIT License | 4 votes |
public EmptyFieldVisitor() { super(SpringAsmInfo.ASM_VERSION); }
Example 6
Source File: ClassMetadataReadingVisitor.java From spring4-understanding with Apache License 2.0 | 4 votes |
public EmptyMethodVisitor() { super(SpringAsmInfo.ASM_VERSION); }
Example 7
Source File: ClassMetadataReadingVisitor.java From java-technology-stack with MIT License | 4 votes |
public EmptyMethodVisitor() { super(SpringAsmInfo.ASM_VERSION); }
Example 8
Source File: ClassMetadataReadingVisitor.java From java-technology-stack with MIT License | 4 votes |
public EmptyAnnotationVisitor() { super(SpringAsmInfo.ASM_VERSION); }
Example 9
Source File: ClassMetadataReadingVisitor.java From java-technology-stack with MIT License | 4 votes |
public ClassMetadataReadingVisitor() { super(SpringAsmInfo.ASM_VERSION); }
Example 10
Source File: AbstractRecursiveAnnotationVisitor.java From java-technology-stack with MIT License | 4 votes |
public AbstractRecursiveAnnotationVisitor(@Nullable ClassLoader classLoader, AnnotationAttributes attributes) { super(SpringAsmInfo.ASM_VERSION); this.classLoader = classLoader; this.attributes = attributes; }
Example 11
Source File: ClassMetadataReadingVisitor.java From lams with GNU General Public License v2.0 | 4 votes |
public EmptyMethodVisitor() { super(SpringAsmInfo.ASM_VERSION); }
Example 12
Source File: ClassMetadataReadingVisitor.java From lams with GNU General Public License v2.0 | 4 votes |
public ClassMetadataReadingVisitor() { super(SpringAsmInfo.ASM_VERSION); }
Example 13
Source File: ClassMetadataReadingVisitor.java From lams with GNU General Public License v2.0 | 4 votes |
public EmptyFieldVisitor() { super(SpringAsmInfo.ASM_VERSION); }
Example 14
Source File: ClassMetadataReadingVisitor.java From lams with GNU General Public License v2.0 | 4 votes |
public EmptyAnnotationVisitor() { super(SpringAsmInfo.ASM_VERSION); }
Example 15
Source File: ClassMetadataReadingVisitor.java From spring-analysis-note with MIT License | 4 votes |
public EmptyMethodVisitor() { super(SpringAsmInfo.ASM_VERSION); }
Example 16
Source File: ClassMetadataReadingVisitor.java From spring-analysis-note with MIT License | 4 votes |
public EmptyAnnotationVisitor() { super(SpringAsmInfo.ASM_VERSION); }
Example 17
Source File: ClassMetadataReadingVisitor.java From spring-analysis-note with MIT License | 4 votes |
public ClassMetadataReadingVisitor() { super(SpringAsmInfo.ASM_VERSION); }
Example 18
Source File: ClassMetadataReadingVisitor.java From spring4-understanding with Apache License 2.0 | 4 votes |
public EmptyAnnotationVisitor() { super(SpringAsmInfo.ASM_VERSION); }
Example 19
Source File: AbstractRecursiveAnnotationVisitor.java From spring4-understanding with Apache License 2.0 | 4 votes |
public AbstractRecursiveAnnotationVisitor(ClassLoader classLoader, AnnotationAttributes attributes) { super(SpringAsmInfo.ASM_VERSION); this.classLoader = classLoader; this.attributes = attributes; }
Example 20
Source File: AbstractRecursiveAnnotationVisitor.java From lams with GNU General Public License v2.0 | 4 votes |
public AbstractRecursiveAnnotationVisitor(ClassLoader classLoader, AnnotationAttributes attributes) { super(SpringAsmInfo.ASM_VERSION); this.classLoader = classLoader; this.attributes = attributes; }