Each class has to communicate and pass information to other classes
within the system. The following is a breakup of communication methods
for the system, complete with method names, parameters, return values and
who (what class) it communicates with.
DataFeedManager
- setStock(string name);// more parameters [UI]
- string getStock(); [UI]
DataFeedInterpreter:
- double getCurrentPrice();[3PB]
3PB Controller
UserInterface:
- updateCurrentPrice(double) [Data Feed Interpreter call on new TOS]
- setNewBreak(int)
- setLongShort(int)
- setClosingPrice(double)
- setFibonacciPricePoint(double)
Alarm:
- setTimeInterval(int) [UI]
Maintained by Team C.
02/25/2002.