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 
PTSongInfo()27 	public PTSongInfo(){
28 		super();
29 	}
30 
getAlbum()31 	public String getAlbum() {
32 		return this.album;
33 	}
34 
setAlbum(String album)35 	public void setAlbum(String album) {
36 		this.album = album;
37 	}
38 
getAlbumType()39 	public int getAlbumType() {
40 		return this.albumType;
41 	}
42 
setAlbumType(int albumType)43 	public void setAlbumType(int albumType) {
44 		this.albumType = albumType;
45 	}
46 
getArrenger()47 	public String getArrenger() {
48 		return this.arrenger;
49 	}
50 
setArrenger(String arrenger)51 	public void setArrenger(String arrenger) {
52 		this.arrenger = arrenger;
53 	}
54 
getAuthor()55 	public String getAuthor() {
56 		return this.author;
57 	}
58 
setAuthor(String author)59 	public void setAuthor(String author) {
60 		this.author = author;
61 	}
62 
getBassInstructions()63 	public String getBassInstructions() {
64 		return this.bassInstructions;
65 	}
66 
setBassInstructions(String bassInstructions)67 	public void setBassInstructions(String bassInstructions) {
68 		this.bassInstructions = bassInstructions;
69 	}
70 
getBassTranscriber()71 	public String getBassTranscriber() {
72 		return this.bassTranscriber;
73 	}
74 
setBassTranscriber(String bassTranscriber)75 	public void setBassTranscriber(String bassTranscriber) {
76 		this.bassTranscriber = bassTranscriber;
77 	}
78 
getClassification()79 	public int getClassification() {
80 		return this.classification;
81 	}
82 
setClassification(int classification)83 	public void setClassification(int classification) {
84 		this.classification = classification;
85 	}
86 
getCopyright()87 	public String getCopyright() {
88 		return this.copyright;
89 	}
90 
setCopyright(String copyright)91 	public void setCopyright(String copyright) {
92 		this.copyright = copyright;
93 	}
94 
getDay()95 	public int getDay() {
96 		return this.day;
97 	}
98 
setDay(int day)99 	public void setDay(int day) {
100 		this.day = day;
101 	}
102 
getGuitarInstructions()103 	public String getGuitarInstructions() {
104 		return this.guitarInstructions;
105 	}
106 
setGuitarInstructions(String guitarInstructions)107 	public void setGuitarInstructions(String guitarInstructions) {
108 		this.guitarInstructions = guitarInstructions;
109 	}
110 
getGuitarTranscriber()111 	public String getGuitarTranscriber() {
112 		return this.guitarTranscriber;
113 	}
114 
setGuitarTranscriber(String guitarTranscriber)115 	public void setGuitarTranscriber(String guitarTranscriber) {
116 		this.guitarTranscriber = guitarTranscriber;
117 	}
118 
getInstructions()119 	public String getInstructions() {
120 		return this.instructions;
121 	}
122 
setInstructions(String instructions)123 	public void setInstructions(String instructions) {
124 		this.instructions = instructions;
125 	}
126 
getInterpret()127 	public String getInterpret() {
128 		return this.interpret;
129 	}
130 
setInterpret(String interpret)131 	public void setInterpret(String interpret) {
132 		this.interpret = interpret;
133 	}
134 
getLevel()135 	public int getLevel() {
136 		return this.level;
137 	}
138 
setLevel(int level)139 	public void setLevel(int level) {
140 		this.level = level;
141 	}
142 
isLiveRecording()143 	public boolean isLiveRecording() {
144 		return this.liveRecording;
145 	}
146 
setLiveRecording(boolean liveRecording)147 	public void setLiveRecording(boolean liveRecording) {
148 		this.liveRecording = liveRecording;
149 	}
150 
getLyricist()151 	public String getLyricist() {
152 		return this.lyricist;
153 	}
154 
setLyricist(String lyricist)155 	public void setLyricist(String lyricist) {
156 		this.lyricist = lyricist;
157 	}
158 
getLyrics()159 	public String getLyrics() {
160 		return this.lyrics;
161 	}
162 
setLyrics(String lyrics)163 	public void setLyrics(String lyrics) {
164 		this.lyrics = lyrics;
165 	}
166 
getMonth()167 	public int getMonth() {
168 		return this.month;
169 	}
170 
setMonth(int month)171 	public void setMonth(int month) {
172 		this.month = month;
173 	}
174 
getName()175 	public String getName() {
176 		return this.name;
177 	}
178 
setName(String name)179 	public void setName(String name) {
180 		this.name = name;
181 	}
182 
getReleaseType()183 	public int getReleaseType() {
184 		return this.releaseType;
185 	}
186 
setReleaseType(int releaseType)187 	public void setReleaseType(int releaseType) {
188 		this.releaseType = releaseType;
189 	}
190 
getStyle()191 	public int getStyle() {
192 		return this.style;
193 	}
194 
setStyle(int style)195 	public void setStyle(int style) {
196 		this.style = style;
197 	}
198 
getYear()199 	public int getYear() {
200 		return this.year;
201 	}
202 
setYear(int year)203 	public void setYear(int year) {
204 		this.year = year;
205 	}
206 
copy( PTSongInfo info )207 	public void copy( PTSongInfo info ){
208 		info.setClassification(getClassification());
209 		info.setReleaseType(getReleaseType());
210 		info.setAlbumType(getAlbumType());
211 		info.setDay(getDay());
212 		info.setMonth(getMonth());
213 		info.setYear(getYear());
214 		info.setStyle(getStyle());
215 		info.setLevel(getLevel());
216 		info.setLiveRecording(isLiveRecording());
217 		info.setName(getName());
218 		info.setInterpret(getInterpret());
219 		info.setAlbum(getAlbum());
220 		info.setAuthor(getAuthor());
221 		info.setLyricist(getLyricist());
222 		info.setArrenger(getArrenger());
223 		info.setGuitarTranscriber(getGuitarTranscriber());
224 		info.setBassTranscriber(getBassTranscriber());
225 		info.setLyrics(getLyrics());
226 		info.setGuitarInstructions(getGuitarInstructions());
227 		info.setBassInstructions(getBassInstructions());
228 		info.setInstructions(getInstructions());
229 		info.setCopyright(getCopyright());
230 	}
231 }
232