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

« back to all changes in this revision

Viewing changes to TuxGuitar-tef/src/org/herac/tuxguitar/io/tef/base/TEComponent.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.tef.base;
 
2
 
 
3
public abstract class TEComponent {
 
4
        
 
5
        private int position;
 
6
        
 
7
        private int measure;
 
8
        
 
9
        private int string;
 
10
        
 
11
        public TEComponent(int position,int measure, int string) {
 
12
                this.position = position;
 
13
                this.measure = measure;
 
14
                this.string = string;
 
15
        }
 
16
        
 
17
        public int getPosition() {
 
18
                return this.position;
 
19
        }
 
20
        
 
21
        public int getMeasure() {
 
22
                return this.measure;
 
23
        }
 
24
        
 
25
        public int getString() {
 
26
                return this.string;
 
27
        }
 
28
}