Back to project page CMOV_Stock_Portfolio.
The source code is released under:
MIT License
If you think the Android project CMOV_Stock_Portfolio 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 common; /*from w w w.j av a 2 s. c o m*/ import java.io.Serializable; import java.util.ArrayList; public class Series implements Serializable{ private static final long serialVersionUID = -2847859096410742061L; private String first; private ArrayList<Double> second; public Series(String name) { first = name; second = new ArrayList<Double>(); } public void add(Double value) { second.add(value); } public String getFirst() { return first; } public ArrayList<Double> getSecond() { return second; } }