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