All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dragome.compiler.annotations.AnnotationAttribute Maven / Gradle / Ivy

There is a newer version: 0.96-beta4
Show newest version
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy