CD Class
كود:
public class CD
{
private String title;
private String artist;
private boolean rented;
private String comment;
public CD(String title, String artist, boolean rented, String comment)
{
this.title = title;
this.artist = artist;
this.rented = rented;
this.comment = comment;
}
public String getTitle(){return title;}
public void setTitle(String title){this.title = title;}
public String getArtist(){return artist;}
public void setArtist(String artist){this.artist = artist;}
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" +
"Artist: " + artist + "\n" +
"Is it rented? " + (rented?"yes":"no") + "\n" +
"Comment: " + comment;
}
}