SeqType t1 = (SeqType) t;
return "seq of (" + getTypeName(t1.seqof) + ")";
}
else if (t instanceof ClassType)
{
ClassType ct = (ClassType) t;
if(ct.classdef instanceof CPUClassDefinition)
{
return CPU_TYPE_NAME;
}else if(ct.classdef instanceof BUSClassDefinition)
{
return BUS_TYPE_NAME;
}
return ct.getName();// "Class";
} else if (t instanceof OptionalType)
{
return getTypeName(((OptionalType) t).type);
}