Interface IShipDueDate
-
- All Known Implementing Classes:
ShipDueDate
public interface IShipDueDateSimple abstraction of a due date for a ship. This can be used for ship building or repairs.- Author:
- Andi Hotz, (c) Sahits GmbH, 2013 Created on Mar 9, 2013
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.time.LocalDateTimegetDueDate()Retrieve the due date of the ship.IShipgetShip()Retrieve the ship that is due.
-
-
-
Method Detail
-
getShip
IShip getShip()
Retrieve the ship that is due.- Returns:
- ship
-
getDueDate
java.time.LocalDateTime getDueDate()
Retrieve the due date of the ship.- Returns:
- date time.
-
-