package xsbti.api;

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