Back to project page SerialPlot.
The source code is released under:
MIT License
If you think the Android project SerialPlot listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.SerialPlot; // ww w. jav a2 s . c o m public class Option implements Comparable<Option>{ private String name; private String data; private String path; public Option(String n, String d, String p) { name = n; data = d; path = p; } public String getName(){ return name; } public String getData(){ return data; } public String getPath(){ return path; } @Override public int compareTo(Option o) { if(this.name != null) return this.name.toLowerCase().compareTo(o.getName().toLowerCase()); else throw new IllegalArgumentException(); } }