Better control pannel

This commit is contained in:
7u83
2016-12-26 20:14:17 +01:00
parent b0f9fabf52
commit a55b983443
5 changed files with 37 additions and 7 deletions

View File

@ -8,7 +8,7 @@ import SeSim.Order.OrderStatus;
public class Exchange extends Thread {
/**
* Histrory of all quotes
* Histrory of quotes
*/
public ArrayList<Quote> quoteHistory;

View File

@ -2,7 +2,7 @@ package SeSim;
public abstract class Trader {
String name = null;
public String name = null;
public abstract void trade();
public Account account = new Account();