Package org.overturetool.vdmj.types

Examples of org.overturetool.vdmj.types.SeqType


    {
      return "char";
    }
     else if (t instanceof SeqType)
     {
       SeqType t1 = (SeqType) t;
     return "seq of (" + getTypeName(t1.seqof) + ")";
     }
    else if (t instanceof ClassType)
    {
      ClassType ct = (ClassType) t;
View Full Code Here

TOP

Related Classes of org.overturetool.vdmj.types.SeqType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.