List of usage examples for org.objectweb.asm Opcodes ASM5
int ASM5
To view the source code for org.objectweb.asm Opcodes ASM5.
Click Source Link
From source file:org.apache.felix.ipojo.manipulator.metadata.annotation.model.discovery.HandlerBindingDiscovery.java
License:Apache License
/** * Constructs a new {@link org.objectweb.asm.AnnotationVisitor}. */ public HandlerBindingDiscovery() { super(Opcodes.ASM5); }
From source file:org.apache.felix.ipojo.manipulator.metadata.annotation.model.parser.AnnotationTypeVisitor.java
License:Apache License
public AnnotationTypeVisitor() { super(Opcodes.ASM5); }
From source file:org.apache.felix.ipojo.manipulator.metadata.annotation.model.parser.replay.AnnotationRecorder.java
License:Apache License
public AnnotationRecorder() { super(Opcodes.ASM5); }
From source file:org.apache.felix.ipojo.manipulator.metadata.annotation.visitor.bind.AbstractBindVisitor.java
License:Apache License
public AbstractBindVisitor(ComponentWorkbench workbench, Action action) { super(Opcodes.ASM5); this.workbench = workbench; this.action = action; }
From source file:org.apache.felix.ipojo.manipulator.metadata.annotation.visitor.ComponentVisitor.java
License:Apache License
public ComponentVisitor(ComponentWorkbench workbench, Reporter reporter) { super(Opcodes.ASM5); this.workbench = workbench; this.reporter = reporter; }
From source file:org.apache.felix.ipojo.manipulator.metadata.annotation.visitor.ControllerVisitor.java
License:Apache License
public ControllerVisitor(ComponentWorkbench workbench, String field) { super(Opcodes.ASM5); this.workbench = workbench; this.field = field; }
From source file:org.apache.felix.ipojo.manipulator.metadata.annotation.visitor.FieldPropertyVisitor.java
License:Apache License
/** * Constructor.//from w w w . jav a 2 s .c o m * @param parent : element element. * @param field : field name. */ public FieldPropertyVisitor(String field, Element parent) { super(Opcodes.ASM5); m_parent = parent; m_field = field; }
From source file:org.apache.felix.ipojo.manipulator.metadata.annotation.visitor.generic.GenericVisitor.java
License:Apache License
public GenericVisitor(Element element) { super(Opcodes.ASM5); this.element = element; }
From source file:org.apache.felix.ipojo.manipulator.metadata.annotation.visitor.generic.SubArrayVisitor.java
License:Apache License
/** * Constructor./*from ww w .j a va2 s. c o m*/ * * @param elem : element element. * @param name : attribute name. */ public SubArrayVisitor(Element elem, String name) { super(Opcodes.ASM5); m_elem = elem; m_name = name; }
From source file:org.apache.felix.ipojo.manipulator.metadata.annotation.visitor.HandlerDeclarationVisitor.java
License:Apache License
public HandlerDeclarationVisitor(ComponentWorkbench workbench, DocumentBuilder builder, Reporter reporter) { super(Opcodes.ASM5); this.workbench = workbench; this.builder = builder; this.reporter = reporter; }