Bukkit  1.4.7-R1.0
 All Classes Namespaces Files Functions Variables Enumerator Pages
WorldSaveEvent.java
Go to the documentation of this file.
1 package org.bukkit.event.world;
2 
3 import org.bukkit.World;
4 import org.bukkit.event.HandlerList;
5 
6 public class WorldSaveEvent extends WorldEvent {
7  private static final HandlerList handlers = new HandlerList();
8 
9  public WorldSaveEvent(final World world) {
10  super(world);
11  }
12 
13  @Override
15  return handlers;
16  }
17 
18  public static HandlerList getHandlerList() {
19  return handlers;
20  }
21 }