1 package org.musicontroller.gui.edit;
2
3 import java.io.Serializable;
4
5
6
7
8
9
10
11
12
13
14 public class SongBean implements Serializable {
15
16 private static final long serialVersionUID = -6454787648553892354L;
17
18 private long _songId;
19 private int _songIndex;
20 private String _bandname;
21 private long _bandId;
22 private String _songname;
23 private int _songlength;
24 private String _keywords;
25
26
27
28
29
30 public void setBandname(String bandname) {
31 _bandname = bandname;
32 }
33
34
35
36
37
38 public String getBandname() {
39 return _bandname;
40 }
41
42
43
44
45
46 public long getBandId() {
47 return _bandId;
48 }
49
50
51
52
53
54 public void setBandId(long bandId) {
55 _bandId = bandId;
56 }
57
58
59
60
61
62 public void setSongname(String songname) {
63 _songname = songname;
64 }
65
66
67
68
69
70 public String getSongname() {
71 return _songname;
72 }
73
74
75
76
77
78 public void setSonglength(int songlength) {
79 _songlength = songlength;
80 }
81
82
83
84
85
86 public int getSonglength() {
87 return _songlength;
88 }
89
90
91
92
93
94
95 public String getSongKeywords() {
96 return _keywords;
97 }
98
99
100
101
102
103
104 public void setSongKeywords(String keywords) {
105 _keywords = keywords;
106 }
107
108
109
110
111
112 public long getSongId() {
113 return _songId;
114 }
115
116
117
118
119
120 public void setSongId(long id) {
121 _songId = id;
122 }
123
124
125
126
127
128 public int getSongIndex() {
129 return _songIndex;
130 }
131
132
133
134
135
136 public void setSongIndex(int index) {
137 _songIndex = index;
138 }
139 }