1 39 40 package com.sun.japex; 41 42 import java.util.*; 43 44 public class TestCaseArrayList extends ArrayList { 45 46 public TestCaseArrayList() { 47 } 48 49 public Object clone() { 50 TestCaseArrayList result = new TestCaseArrayList(); 51 Iterator it = iterator(); 52 while (it.hasNext()) { 53 result.add(((TestCase) it.next()).clone()); 54 } 55 return result; 56 } 57 58 } 59 | Popular Tags |