Interface IFutureTowns
-
- All Known Implementing Classes:
FutureTowns
public interface IFutureTowns- Author:
- Andi Hotz, (c) Sahits GmbH, 2015 Created on Jun 06, 2015
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ECityLabelAlignmentgetCityLabelAlignment()Alignemnt for the city label.javafx.geometry.Point2DgetCityLabelOffset()Offset for the city label.javafx.geometry.Point2DgetLocation()Retrieve future town location.java.lang.StringgetName()Retrieve the town namebooleanisRiver()check if the town is on a river.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Retrieve the town name- Returns:
- name of the city to be founded.
-
getLocation
javafx.geometry.Point2D getLocation()
Retrieve future town location.- Returns:
- coordinates of the citiy to be founded
-
isRiver
boolean isRiver()
check if the town is on a river.- Returns:
- true if the city to be founded lies on a river.
-
getCityLabelAlignment
ECityLabelAlignment getCityLabelAlignment()
Alignemnt for the city label.- Returns:
- alignemnt of the city label
-
getCityLabelOffset
javafx.geometry.Point2D getCityLabelOffset()
Offset for the city label.- Returns:
- offset of the city label
-
-