source: proiecte/ptvs/src/vnsim/core/events/CleanupEvent.java @ 31

Last change on this file since 31 was 31, checked in by (none), 14 years ago
File size: 582 bytes
Line 
1/************************************************************************************
2 * Copyright (C) 2008 by Politehnica University of Bucharest and Rutgers University
3 * All rights reserved.
4 * Refer to LICENSE for terms and conditions of use.
5 ***********************************************************************************/
6package vnsim.core.events;
7
8/**
9 * @author Victor Gradinescu
10 *
11 */
12public class CleanupEvent extends Event{
13
14        public CleanupEvent(int t){
15                super(t);
16        }
17       
18        public String toString() {
19                return "["+time+": Cleanup all cars]";
20        }
21}
Note: See TracBrowser for help on using the repository browser.