Package org.overturetool.vdmj.values

Examples of org.overturetool.vdmj.values.SeqValue


      value = ((TransactionValue) value).deref();
    }

    if (value instanceof SeqValue)
    {
      SeqValue seqValue = (SeqValue) value;
      result = getDoubleListFromSeq(seqValue);
      return result;
    }

    if (value.isNumeric())
View Full Code Here


  {
    List<Integer> result = new Vector<Integer>();

    if (value instanceof SeqValue)
    {
      SeqValue seqValue = (SeqValue) value;
      result.add(seqValue.values.size());
      if (seqValue.values.size() > 0)
      {
        if (seqValue.values.get(0) instanceof SeqValue)
        {
View Full Code Here

TOP

Related Classes of org.overturetool.vdmj.values.SeqValue

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.