|
From: Thies <tg...@us...> - 2007-05-17 19:58:55
|
Update of /cvsroot/tail/Tail/src/java/net/sf/tail In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv25202/src/java/net/sf/tail Modified Files: Tick.java Log Message: Novo construtor com os parâmetros openPrice, closePrice, maxPrice e minPrice Index: Tick.java =================================================================== RCS file: /cvsroot/tail/Tail/src/java/net/sf/tail/Tick.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Tick.java 12 May 2007 13:21:14 -0000 1.3 --- Tick.java 17 May 2007 19:58:52 -0000 1.4 *************** *** 35,38 **** --- 35,47 ---- this.trades = trades; } + + public Tick(double openPrice, double closePrice, double maxPrice, double minPrice) + { + super(); + this.openPrice = openPrice; + this.closePrice = closePrice; + this.maxPrice = maxPrice; + this.minPrice = minPrice; + } |