package Cartesian; import Cartesian.*; /** The VertexCoordinateList class provides a container for a list of C_Points. * @author John H. Young * @version 1.0.0 */ public class VertexCoordinateList extends C_Shape { int Loc []; public VertexCoordinateList (int Length) { Loc = new int [Length]; } public void Put (int Selector, int Item) { Loc [Selector] = Item; } public int Get (int Selector) { return Loc [Selector]; } }