class TypeEntry {

    public TypeEntry(Type type) {
	type_ = type;
    }

    public Type type() {
	return type_;
    }

    public void settype(Type type) {
	type_ = type;
    }

    private Type type_;

}