1 5 package com.opensymphony.webwork.config; 6 7 import java.util.ArrayList ; 8 import java.util.Iterator ; 9 import java.util.List ; 10 11 12 18 public class TestConfiguration extends Configuration { 19 21 26 public Object getImpl(String aName) throws IllegalArgumentException { 27 return aName; 28 } 29 30 33 public Iterator listImpl() { 34 List testList = new ArrayList (); 35 testList.add("123"); 36 testList.add("testValue"); 37 38 return testList.iterator(); 39 } 40 } 41 | Popular Tags |