public final class WeatherChangeEvent extends Event implements Cancellable
Constructor and Description |
---|
WeatherChangeEvent(Weather currentWeather,
Weather nextWeather,
boolean completed) |
Modifier and Type | Method and Description |
---|---|
Weather |
getCurrentWeather()
Gets the current weather.
|
Weather |
getNextWeather()
Gets the next, target weather.
|
boolean |
isCancelled()
Determines if the event is cancelled.
|
boolean |
isTransitionCompleted()
Gets weather or not the transition is completed.
|
void |
setCancelled(boolean cancel)
Cancels this event.
|
void |
setNextWeather(Weather weather)
Changes the next weather.
|
public Weather getCurrentWeather()
public Weather getNextWeather()
public void setNextWeather(Weather weather)
isTransitionCompleted()
).weather
- the next weather.public boolean isTransitionCompleted()
WeatherChangeEvent
will be called twice, once the transition begins, and once it is completed. If the
transition is completed, this function returns true, otherwise it returns false.public boolean isCancelled()
Cancellable
isCancelled
in interface Cancellable
public void setCancelled(boolean cancel)
Cancellable
setCancelled
in interface Cancellable
cancel
- set to true if you want to cancel this event.