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

« back to all changes in this revision

Viewing changes to TuxGuitar-browser-ftp/src/org/herac/tuxguitar/gui/tools/browser/ftp/TGBrowserPluginImpl.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.gui.tools.browser.ftp;
 
2
 
 
3
import org.herac.tuxguitar.gui.system.plugins.base.TGBrowserPlugin;
 
4
import org.herac.tuxguitar.gui.tools.browser.base.TGBrowserFactory;
 
5
 
 
6
public class TGBrowserPluginImpl extends TGBrowserPlugin {
 
7
        
 
8
        protected TGBrowserFactory getFactory() {
 
9
                return new TGBrowserFactoryImpl();
 
10
        }
 
11
        
 
12
        public String getName() {
 
13
                return "FTP Plugin for TGBrowser";
 
14
        }
 
15
        
 
16
        public String getAuthor() {
 
17
                return "Julian Casadesus <julian@casadesus.com.ar>";
 
18
        }
 
19
        
 
20
        public String getDescription() {
 
21
                return "FTP Plugin for TGBrowser";
 
22
        }
 
23
        
 
24
        public String getVersion() {
 
25
                return "1.0";
 
26
        }
 
27
}