/************************************************************************************ * Copyright (C) 2008 by Politehnica University of Bucharest and Rutgers University * All rights reserved. * Refer to LICENSE for terms and conditions of use. ***********************************************************************************/ package vnsim.core.events; /** * @author Victor Gradinescu * */ public class GPSEvent extends Event{ public GPSEvent(int t){ super(t); } public String toString() { return "["+time+": GPS all cars]"; } }