35 lines
731 B
Java
35 lines
731 B
Java
package org.bukkit.event.server;
|
|
|
|
import org.bukkit.event.HandlerList;
|
|
import org.bukkit.map.MapView;
|
|
|
|
/**
|
|
* Called when a map is initialized.
|
|
*/
|
|
public class MapInitializeEvent extends ServerEvent {
|
|
private static final HandlerList handlers = new HandlerList();
|
|
private final MapView mapView;
|
|
|
|
public MapInitializeEvent(final MapView mapView) {
|
|
this.mapView = mapView;
|
|
}
|
|
|
|
/**
|
|
* Gets the map initialized in this event.
|
|
*
|
|
* @return Map for this event
|
|
*/
|
|
public MapView getMap() {
|
|
return mapView;
|
|
}
|
|
|
|
@Override
|
|
public HandlerList getHandlers() {
|
|
return handlers;
|
|
}
|
|
|
|
public static HandlerList getHandlerList() {
|
|
return handlers;
|
|
}
|
|
}
|