1 package org.musicontroller.gui.edit;
2
3 import java.io.Serializable;
4
5
6
7
8
9
10
11 public class PlaylistMergeBean implements Serializable {
12
13 private static final long serialVersionUID = 2007072801L;
14
15
16
17
18 private long _playlistid;
19
20
21
22
23 private String _description;
24
25
26
27
28
29 private boolean _mergeIndicator;
30
31
32
33
34
35 public long getPlaylistId() {
36 return _playlistid;
37 }
38
39 public void setPlaylistId(long playlistId) {
40 _playlistid = playlistId;
41 }
42
43
44
45
46
47 public void setPlaylistDescription(String description) {
48 _description = description;
49 }
50
51
52
53
54
55 public Object getPlaylistDescription() {
56 return _description;
57 }
58
59
60
61
62
63 public void setMergeIndicator(boolean indicator) {
64 _mergeIndicator = indicator;
65 }
66
67
68
69
70
71 public boolean getMergeIndicator() {
72 return _mergeIndicator;
73 }
74 }