~ubuntu-branches/ubuntu/lucid/tuxguitar/lucid

« back to all changes in this revision

Viewing changes to TuxGuitar-lilypond/src/org/herac/tuxguitar/io/lilypond/LilypondPluginExporter.java

  • Committer: Bazaar Package Importer
  • Author(s): Philippe Coval
  • Date: 2008-06-19 00:30:30 UTC
  • mfrom: (1.1.1 upstream) (2.1.3 hardy)
  • Revision ID: james.westby@ubuntu.com-20080619003030-agens2gvd5m4dacu
New upstream release (Closes: #481728) also (LP: #176979, #212207)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.herac.tuxguitar.io.lilypond;
 
2
 
 
3
import org.herac.tuxguitar.gui.system.plugins.base.TGExporterPlugin;
 
4
import org.herac.tuxguitar.io.base.TGSongExporter;
 
5
 
 
6
public class LilypondPluginExporter extends TGExporterPlugin{
 
7
        
 
8
        protected TGSongExporter getExporter() {
 
9
                return new LilypondSongExporter();
 
10
        }
 
11
        
 
12
        public String getAuthor() {
 
13
                return "Julian Casadesus <julian@casadesus.com.ar>";
 
14
        }
 
15
        
 
16
        public String getDescription() {
 
17
                return "Lilypond 2.10.5 exporter plugin";
 
18
        }
 
19
        
 
20
        public String getName() {
 
21
                return "Lilypond exporter";
 
22
        }
 
23
        
 
24
        public String getVersion() {
 
25
                return "1.0";
 
26
        }
 
27
}