All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.debugthug.xo.booking.SeatInfo Maven / Gradle / Ivy

package com.github.debugthug.xo.booking;

import java.util.ArrayList;
import java.util.List;

import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;

@XStreamAlias("SeatInfo")
public class SeatInfo {
	
	@XStreamImplicit
	private List seatList=new ArrayList();

	public List getSeatList() {
		return seatList;
	}

	public void addSeat(Seat seat) {
		seatList.add(seat);
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy