package xsbti.api;

import java.util.Arrays;
import java.util.List;
public class Var extends FieldLike 
{
	public Var(Type tpe, String name, Access access, Modifiers modifiers, Annotation[] annotations)
	{
		super(tpe, name, access, modifiers, annotations);
		
	}
	
	public String toString()
	{
		return "Var(" + "tpe: " + tpe() + ", " + "name: " + name() + ", " + "access: " + access() + ", " + "modifiers: " + modifiers() + ", " + "annotations: " + Arrays.toString(annotations())+ ")";
	}
}