source: proiecte/ptvs/src/vnsim/vehicular/routePlan/selfRouted/Mark.java @ 31

Last change on this file since 31 was 31, checked in by (none), 14 years ago
File size: 840 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.vehicular.routePlan.selfRouted;
7
8import java.io.Serializable;
9
10class Mark implements Serializable{
11        /**
12         *
13         */
14        //private static final long serialVersionUID = 1L;
15       
16        /** <code>serialVersionUID</code> */
17        private static final long serialVersionUID = -5883719321862303634L;
18
19        public int pos, val;
20
21        public int roadId, pointId;
22
23        public Mark(int pos, int val, int rId, int pId) {
24                this.pos = pos;
25                this.val = val;
26                this.roadId = rId;
27                this.pointId = pId;
28        }
29
30}
Note: See TracBrowser for help on using the repository browser.