import java.util.*;
class ArrayLists
{
public static void main(
String args[])
{
ArrayList<DvdInfo> dvdList = new ArrayList<DvdInfo>();
//i want to pass the string value("Caddy Shack/comedy/Murray, Bill")
//dvdList("Caddy Shack/comedy/Murray, Bill");
System.out.println(dvdList);
}
}
class DvdInfo
{
String title,genre,actors;
DvdInfo(String title,String genre,String actors)
{
this.title = title;
this.genre = genre;
this.actors = actors;
}
public String toString()
{
return title+ " " +genre+ " " +actors;
}
}