Biblioteca Java - Blame information for rev 18

Subversion Repositories:
Rev:
Rev Author Line No. Line
18 mihai 1 package com.linkscreens.graphsin.model;
2  
3 public class Album {
4         String id;
5         String title;
6  
7         public Album(String id, String title) {
8                 super();
9                 this.id = id;
10                 this.title = title;
11         }
12  
13         public String getId() {
14                 return id;
15         }
16  
17         public void setId(String id) {
18                 this.id = id;
19         }
20  
21         public String getTitle() {
22                 return title;
23         }
24  
25         public void setTitle(String title) {
26                 this.title = title;
27         }
28  
29         @Override
30         public String toString() {
31                 return "Album ["+id+":"+title+"]";
32         }
33  
34 }