DVD Class
كود:
public class DVD
{
private String title;
private String director;
private boolean rented;
private String comment;
public DVD(String title, String director, boolean rented, String comment)
{
this.title = title;
this.director = director;
this.rented = rented;
this.comment = comment;
}
public String getTitle(){return title;}
public void setTitle(String title){this.title = title;}
public String getDirector(){return director;}
public void setDirector(String director){this.director = director;}
public String getComment(){return comment;}
public void setComment(String comment){this.comment = comment;}
public boolean getRented(){return rented;}
public void setRented(boolean rented){this.rented = rented;}
@Override
public String toString()
{
return "Title: " + title + "\n" +
"Director: " + director + "\n" +
"Is it rented? " + (rented?"yes":"no") + "\n" +
"Comment: " + comment;
}
}