Newer
Older
AlgebraicDataflowArchitectureModel / AlgebraicDataflowArchitectureModel / src / experiment / pull / History.java
yoichiro on 2 May 2020 289 bytes paymentがおかしい
package experiment.pull;

import java.util.ArrayList;

public class History {
	private ArrayList<Integer> history = new ArrayList<Integer>();
	public void updatePayment(int payment) {
		history.add(payment);
	}
	public ArrayList<Integer> getHistory() {
		return history;
	}
}