return false ;
}
private String displayOpenType( OpenType otype ) {
if (otype instanceof SimpleType) {
SimpleType stype = (SimpleType)otype ;
return "SimpleType(" + stype.getTypeName() + ")" ;
} else if (otype instanceof ArrayType) {
ArrayType atype = (ArrayType)otype ;
return "ArrayType(" + displayOpenType( atype.getElementOpenType() )
+ "," + atype.getDimension() + ")" ;
} else if (otype instanceof CompositeType) {