/************************************************************************************ * 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.vehicular.routePlan.selfRouted; import java.io.Serializable; class Mark implements Serializable{ /** * */ //private static final long serialVersionUID = 1L; /** serialVersionUID */ private static final long serialVersionUID = -5883719321862303634L; public int pos, val; public int roadId, pointId; public Mark(int pos, int val, int rId, int pId) { this.pos = pos; this.val = val; this.roadId = rId; this.pointId = pId; } }