/* Last edited on 2011-08-25 00:39:25 by stolfilocal */ package tracking; public class TrackObjectPair { public TrackObject L; public TrackObject R; /* Creates a pair with given {L} and {R} elements. */ TrackObjectPair (TrackObject L, TrackObject R) { this.L = L; this.R = R; } }