~ubuntu-branches/ubuntu/oneiric/tuxguitar/oneiric

« back to all changes in this revision

Viewing changes to TuxGuitar-ptb/src/org/herac/tuxguitar/io/ptb/base/PTSongInfo.java

  • Committer: Bazaar Package Importer
  • Author(s): Philippe Coval
  • Date: 2008-06-19 00:30:30 UTC
  • mto: (5.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20080619003030-h719szrhsngou7c6
Tags: upstream-1.0
ImportĀ upstreamĀ versionĀ 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.herac.tuxguitar.io.ptb.base;
 
2
 
 
3
public class PTSongInfo {
 
4
        private int classification;
 
5
        private int releaseType;
 
6
        private int albumType;
 
7
        private int day;
 
8
        private int month;
 
9
        private int year;
 
10
        private int style;
 
11
        private int level;
 
12
        private boolean liveRecording;
 
13
        private String name;
 
14
        private String interpret;
 
15
        private String album;
 
16
        private String author;
 
17
        private String lyricist;
 
18
        private String arrenger;
 
19
        private String guitarTranscriber;
 
20
        private String bassTranscriber;
 
21
        private String lyrics;
 
22
        private String guitarInstructions;
 
23
        private String bassInstructions;
 
24
        private String instructions;
 
25
        private String copyright;
 
26
        
 
27
        public PTSongInfo(){
 
28
                super();
 
29
        }
 
30
        
 
31
        public String getAlbum() {
 
32
                return this.album;
 
33
        }
 
34
        
 
35
        public void setAlbum(String album) {
 
36
                this.album = album;
 
37
        }
 
38
        
 
39
        public int getAlbumType() {
 
40
                return this.albumType;
 
41
        }
 
42
        
 
43
        public void setAlbumType(int albumType) {
 
44
                this.albumType = albumType;
 
45
        }
 
46
        
 
47
        public String getArrenger() {
 
48
                return this.arrenger;
 
49
        }
 
50
        
 
51
        public void setArrenger(String arrenger) {
 
52
                this.arrenger = arrenger;
 
53
        }
 
54
        
 
55
        public String getAuthor() {
 
56
                return this.author;
 
57
        }
 
58
        
 
59
        public void setAuthor(String author) {
 
60
                this.author = author;
 
61
        }
 
62
        
 
63
        public String getBassInstructions() {
 
64
                return this.bassInstructions;
 
65
        }
 
66
        
 
67
        public void setBassInstructions(String bassInstructions) {
 
68
                this.bassInstructions = bassInstructions;
 
69
        }
 
70
        
 
71
        public String getBassTranscriber() {
 
72
                return this.bassTranscriber;
 
73
        }
 
74
        
 
75
        public void setBassTranscriber(String bassTranscriber) {
 
76
                this.bassTranscriber = bassTranscriber;
 
77
        }
 
78
        
 
79
        public int getClassification() {
 
80
                return this.classification;
 
81
        }
 
82
        
 
83
        public void setClassification(int classification) {
 
84
                this.classification = classification;
 
85
        }
 
86
        
 
87
        public String getCopyright() {
 
88
                return this.copyright;
 
89
        }
 
90
        
 
91
        public void setCopyright(String copyright) {
 
92
                this.copyright = copyright;
 
93
        }
 
94
        
 
95
        public int getDay() {
 
96
                return this.day;
 
97
        }
 
98
        
 
99
        public void setDay(int day) {
 
100
                this.day = day;
 
101
        }
 
102
        
 
103
        public String getGuitarInstructions() {
 
104
                return this.guitarInstructions;
 
105
        }
 
106
        
 
107
        public void setGuitarInstructions(String guitarInstructions) {
 
108
                this.guitarInstructions = guitarInstructions;
 
109
        }
 
110
        
 
111
        public String getGuitarTranscriber() {
 
112
                return this.guitarTranscriber;
 
113
        }
 
114
        
 
115
        public void setGuitarTranscriber(String guitarTranscriber) {
 
116
                this.guitarTranscriber = guitarTranscriber;
 
117
        }
 
118
        
 
119
        public String getInstructions() {
 
120
                return this.instructions;
 
121
        }
 
122
        
 
123
        public void setInstructions(String instructions) {
 
124
                this.instructions = instructions;
 
125
        }
 
126
        
 
127
        public String getInterpret() {
 
128
                return this.interpret;
 
129
        }
 
130
        
 
131
        public void setInterpret(String interpret) {
 
132
                this.interpret = interpret;
 
133
        }
 
134
        
 
135
        public int getLevel() {
 
136
                return this.level;
 
137
        }
 
138
        
 
139
        public void setLevel(int level) {
 
140
                this.level = level;
 
141
        }
 
142
        
 
143
        public boolean isLiveRecording() {
 
144
                return this.liveRecording;
 
145
        }
 
146
        
 
147
        public void setLiveRecording(boolean liveRecording) {
 
148
                this.liveRecording = liveRecording;
 
149
        }
 
150
        
 
151
        public String getLyricist() {
 
152
                return this.lyricist;
 
153
        }
 
154
        
 
155
        public void setLyricist(String lyricist) {
 
156
                this.lyricist = lyricist;
 
157
        }
 
158
        
 
159
        public String getLyrics() {
 
160
                return this.lyrics;
 
161
        }
 
162
        
 
163
        public void setLyrics(String lyrics) {
 
164
                this.lyrics = lyrics;
 
165
        }
 
166
        
 
167
        public int getMonth() {
 
168
                return this.month;
 
169
        }
 
170
        
 
171
        public void setMonth(int month) {
 
172
                this.month = month;
 
173
        }
 
174
        
 
175
        public String getName() {
 
176
                return this.name;
 
177
        }
 
178
        
 
179
        public void setName(String name) {
 
180
                this.name = name;
 
181
        }
 
182
        
 
183
        public int getReleaseType() {
 
184
                return this.releaseType;
 
185
        }
 
186
        
 
187
        public void setReleaseType(int releaseType) {
 
188
                this.releaseType = releaseType;
 
189
        }
 
190
        
 
191
        public int getStyle() {
 
192
                return this.style;
 
193
        }
 
194
        
 
195
        public void setStyle(int style) {
 
196
                this.style = style;
 
197
        }
 
198
        
 
199
        public int getYear() {
 
200
                return this.year;
 
201
        }
 
202
        
 
203
        public void setYear(int year) {
 
204
                this.year = year;
 
205
        }
 
206
}