Package miscellaneous

Examples of miscellaneous.CSVList.subList()


  public Dim(String csvString)
  {
    CSVList csv = new CSVList(csvString);
    this.dimName = csv.get(0);
    this.dimValues = new Vector<String>();
    this.dimValues.addAll(csv.subList(1, csv.size()));
    this.updateDimValueSet();
  }
 
  public Dim(String name, int max)
  {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.