package xsbti.api;

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