package xsbti.api;

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