source:
anac2020/AzarAgent/src/main/java/geniusweb/exampleparties/simpleshaop/MyBidDetails.java@
1
Last change on this file since 1 was 1, checked in by , 4 years ago | |
---|---|
File size: 353 bytes |
Line | |
---|---|
1 | package geniusweb.exampleparties.simpleshaop; |
2 | |
3 | import geniusweb.issuevalue.Bid; |
4 | |
5 | public class MyBidDetails { |
6 | |
7 | |
8 | private double Eu; |
9 | private Bid bid; |
10 | |
11 | public MyBidDetails(Bid bid, double Eu) { |
12 | |
13 | this.bid = bid; |
14 | this.Eu = Eu; |
15 | |
16 | } |
17 | |
18 | public Bid getBid() { |
19 | return bid; |
20 | } |
21 | |
22 | public double getEu() { |
23 | return Eu; |
24 | } |
25 | |
26 | } |
Note:
See TracBrowser
for help on using the repository browser.