Last change
on this file was 1, checked in by Wouter Pasman, 6 years ago |
Initial import : Genius 9.0.0
|
File size:
403 bytes
|
Line | |
---|
1 | package agents.anac.y2014.AgentYK;
|
---|
2 |
|
---|
3 |
|
---|
4 | public class PairBidElementDetails {
|
---|
5 | private PairBidElement pairBidElement;
|
---|
6 | double time;
|
---|
7 |
|
---|
8 | public PairBidElementDetails(PairBidElement pairBidElement, double time) {
|
---|
9 | this.pairBidElement = pairBidElement;
|
---|
10 | this.time = time;
|
---|
11 | }
|
---|
12 |
|
---|
13 | public PairBidElement getPairBidElement() {
|
---|
14 | return this.pairBidElement;
|
---|
15 | }
|
---|
16 |
|
---|
17 | public double getTime() {
|
---|
18 | return this.time;
|
---|
19 | }
|
---|
20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.