001    package org.bukkit.event.world;
002    
003    import org.bukkit.World;
004    import org.bukkit.event.HandlerList;
005    
006    /**
007     * Called when a World is loaded
008     */
009    public class WorldLoadEvent extends WorldEvent {
010        private static final HandlerList handlers = new HandlerList();
011    
012        public WorldLoadEvent(final World world) {
013            super(world);
014        }
015    
016        @Override
017        public HandlerList getHandlers() {
018            return handlers;
019        }
020    
021        public static HandlerList getHandlerList() {
022            return handlers;
023        }
024    }