package org.fucam.gtm.nodus.plugins; /** * *
Title: Nodus 5.0
*Description: Convenience class used to keep track of "unique" nodes. This way, * two polylines which have a common end node can be considered as linked together. Nodus * will only keep one node for a given geographical location.
*Copyright : Copyright (c) 2004
*Société : FUCaM-GTM
* @author Bart Jourquin * @version 1.0 */ class NodeData { int num; boolean alreadyPresentInPreviousLayer = false; NodeData(int n) { num = n; } int getNum() { return num; } }