class intArray { private List elements = null; public intArray(int length) { elements = new ArrayList(length); } ...... } <p class="indent">