~ubuntu-branches/ubuntu/maverick/tuxguitar/maverick

« back to all changes in this revision

Viewing changes to TuxGuitar-alsa/src/org/herac/tuxguitar/player/impl/midiport/alsa/MidiPortProviderPlugin.java

  • Committer: Bazaar Package Importer
  • Author(s): Philippe Coval
  • Date: 2009-04-25 19:49:27 UTC
  • mfrom: (1.1.3 upstream) (2.1.7 jaunty)
  • Revision ID: james.westby@ubuntu.com-20090425194927-pblqed0zxp0pmyeq
Tags: 1.1-1
* New Upstream Release (Closes: #489859) (LP: #366476)
* Merged patch : tuxguitar_1.0.dak-1ubuntu1.patch
* debian/README.txt
  - suggests to install tuxguitar-jsa

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package org.herac.tuxguitar.player.impl.midiport.alsa;
2
 
 
3
 
import org.herac.tuxguitar.gui.system.plugins.base.TGMidiPortProviderPlugin;
4
 
import org.herac.tuxguitar.player.base.MidiPortProvider;
5
 
 
6
 
public class MidiPortProviderPlugin extends TGMidiPortProviderPlugin{
7
 
        
8
 
        protected MidiPortProvider getProvider() {
9
 
                return new MidiPortProviderImpl();
10
 
        }
11
 
        
12
 
        public String getAuthor() {
13
 
                return "Julian Casadesus <julian@casadesus.com.ar>";
14
 
        }
15
 
        
16
 
        public String getDescription() {
17
 
                return "ALSA output plugin";
18
 
        }
19
 
        
20
 
        public String getName() {
21
 
                return "ALSA output plugin";
22
 
        }
23
 
        
24
 
        public String getVersion() {
25
 
                return "1.0";
26
 
        }
27
 
        
28
 
}