001 package org.nanocontainer.testmodel;
002
003 import java.util.List;
004
005 /**
006 * Test for list support.
007 *
008 * @author Jeff Steward
009 */
010 public class ListSupport
011 {
012 private List aListOfEntityObjects;
013
014 public ListSupport(List aListOfEntityObjects)
015 {
016 this.aListOfEntityObjects = aListOfEntityObjects;
017 }
018
019 public List getAListOfEntityObjects()
020 {
021 return aListOfEntityObjects;
022 }
023 }