View Javadoc

1   package org.kuali.mobility.bus.dao.helper;
2   
3   import java.util.List;
4   
5   import com.thoughtworks.xstream.annotations.XStreamAlias;
6   import com.thoughtworks.xstream.annotations.XStreamImplicit;
7   
8   @XStreamAlias("stopnames")
9   public class UMBusStopNames {
10  
11  	@XStreamImplicit
12  	private List<UMBusStopName> stopnames;
13  
14  	/**
15  	 * @return the stopnames
16  	 */
17  	public List<UMBusStopName> getStopnames() {
18  		return stopnames;
19  	}
20  
21  	/**
22  	 * @param stopnames the stopnames to set
23  	 */
24  	public void setStopnames(List<UMBusStopName> stopnames) {
25  		this.stopnames = stopnames;
26  	}
27  
28  	
29  	
30  }