Bukkit  1.4.7-R1.0
 All Classes Namespaces Files Functions Variables Enumerator Pages
VehicleCreateEvent.java
Go to the documentation of this file.
1 package org.bukkit.event.vehicle;
2 
3 import org.bukkit.entity.Vehicle;
4 import org.bukkit.event.HandlerList;
5 
9 public class VehicleCreateEvent extends VehicleEvent {
10  private static final HandlerList handlers = new HandlerList();
11 
13  super(vehicle);
14  }
15 
16  @Override
18  return handlers;
19  }
20 
21  public static HandlerList getHandlerList() {
22  return handlers;
23  }
24 }