Package miscellaneous

Examples of miscellaneous.SSVList


  public DimTable(String csvString)
  {
    this();
    if(csvString != null && !csvString.equals(""))
    {
      SSVList ssvDim = new SSVList(csvString);
      for (String dimStr : ssvDim)
      {
        Dim dim = new Dim(dimStr);
        this.add(dim);
      }
View Full Code Here


  /**
   * Return a parsable string representation of the dimtable
   */
  public String toCSVString()
  {
    SSVList simSSV = new SSVList();
    for (Dim dim : this)
    {
      simSSV.add(dim.toCSVString());
    }
    return simSSV.toString();
  }
View Full Code Here

TOP

Related Classes of miscellaneous.SSVList

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.