View Single Post
  #4 (permalink)  
Old 12-05-2007, 01:30 AM
hardwired hardwired is offline
Senior Member
 
Join Date: Jul 2007
Posts: 1,189
hardwired is on a distinguished road
Send in an array of shapes or a list:
Code:
Shape[] shapes = new Shape[1]; shapes[0] = rect; List<Shape> list = new ArrayList<Shape>(); list.add(rect);
Reply With Quote