source: src/main/java/genius/core/actions/ActionWithBid.java

Last change on this file was 1, checked in by Wouter Pasman, 7 years ago

Initial import : Genius 9.0.0

File size: 315 bytes
Line 
1package genius.core.actions;
2
3import genius.core.Bid;
4
5/**
6 * Interface for actions that involve a {@link Bid}
7 *
8 * @author W.Pasman
9 *
10 */
11public interface ActionWithBid extends Action {
12 /**
13 * Returns the bid that is involved with this action.
14 *
15 * @return the involved Bid.
16 */
17
18 public Bid getBid();
19}
Note: See TracBrowser for help on using the repository browser.