本文整理汇总了Java中org.apache.xbean.asm5.Opcodes.ASM5属性的典型用法代码示例。如果您正苦于以下问题:Java Opcodes.ASM5属性的具体用法?Java Opcodes.ASM5怎么用?Java Opcodes.ASM5使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.apache.xbean.asm5.Opcodes
的用法示例。
在下文中一共展示了Opcodes.ASM5属性的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: FieldNode
public FieldNode(int access, String name, String desc, String signature, Object value)
{
super(Opcodes.ASM5, access, name, desc, signature, value);
}
示例2: MethodNode
public MethodNode(int access, String name, String desc, String signature, String[] exceptions)
{
super(Opcodes.ASM5, access, name, desc, signature, exceptions);
}
示例3: ClassNodeType
public ClassNodeType()
{
super(Opcodes.ASM5);
}
示例4: BaseSignatureVisitor
public BaseSignatureVisitor()
{
super(Opcodes.ASM5);
}
示例5: PersistenceContextVisitor
public PersistenceContextVisitor(final String className, final String memberName, final Map<String, AsmPersistenceContext> contexts) {
super(Opcodes.ASM5);
this.contexts = contexts;
persistenceContext.name = className + "/" + memberName;
}
示例6: MoveAnnotationsVisitor
public MoveAnnotationsVisitor(final MethodVisitor movedMethod, final MethodVisitor newMethod) {
super(Opcodes.ASM5, movedMethod);
this.newMethod = newMethod;
}
示例7: CopyClassAnnotations
public CopyClassAnnotations(final ClassVisitor newClass) {
super(Opcodes.ASM5);
this.newClass = newClass;
}
示例8: CopyMethodAnnotations
public CopyMethodAnnotations(final Map<String, MethodVisitor> visitors) {
super(Opcodes.ASM5);
this.visitors = visitors;
}
示例9: SignatureAdapter
public SignatureAdapter(final DependencyVisitor dependencyVisitor) {
super(Opcodes.ASM5);
delegate = dependencyVisitor;
}
示例10: FieldAdderClassVisitor
public FieldAdderClassVisitor(final ClassVisitor classVisitor) {
super(Opcodes.ASM5, classVisitor);
}