Line | |
---|
1 | package bargainingchips.outcomes;
|
---|
2 |
|
---|
3 | import bargainingchips.Bundle;
|
---|
4 | import bargainingchips.actions.Offer;
|
---|
5 | import bargainingchips.actions.OfferType;
|
---|
6 | /**
|
---|
7 | * An outcome is the final result of a negotiation.
|
---|
8 | * It is an {@link Offer} for convenience, so that Agents can easily pass it around.
|
---|
9 | * The offer type is always END.
|
---|
10 | */
|
---|
11 | public class Outcome extends Offer
|
---|
12 | {
|
---|
13 | public Outcome(Bundle outcome)
|
---|
14 | {
|
---|
15 | super(outcome, OfferType.END);
|
---|
16 | }
|
---|
17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.