com.dragome.compiler.annotations.AnnotationAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dragome-bytecode-js-compiler Show documentation
Show all versions of dragome-bytecode-js-compiler Show documentation
Dragome SDK module: bytecode to javascript compiler
package com.dragome.compiler.annotations;
import java.util.Map;
import org.apache.bcel.classfile.Attribute;
import org.apache.bcel.classfile.ConstantPool;
import org.apache.bcel.classfile.Visitor;
public class AnnotationAttribute extends Attribute
{
Map[] annotations;
protected AnnotationAttribute(byte tag, int nameIndex, int length, ConstantPool constantPool)
{
super(tag, nameIndex, length, constantPool);
}
@Override
public void accept(Visitor arg0)
{
}
@Override
public Attribute copy(ConstantPool arg0)
{
return null;
}
}