package cdThing; /* * CD.java * * Created on September 18, 2003, 11:23 AM */ /** * * @author Ian Smith-Heisters */ public class CD { public int minutes, year; public String title, artist, label, comments; public CD (){ minutes = 0;year = 0; title = "none";artist = "none";label = "none";comments = "none"; } public CD (int m, int y, String t, String a, String l, String c){ minutes = m;year = y;title = t;artist = a;label = l;comments = c; } public String fileInfo(){ return("\""+minutes+"\" \""+year+"\" \""+title+"\" \""+artist+"\" \""+label+"\" \""+comments+"\""); } public String retFormattedInfo(){ return("Playing time:"+minutes+" minutes, recorded in "+year+"\nTitle:"+title+"| Artist:"+artist+"| Label:"+label+"\nComments:"+comments); } }