View Javadoc

1   package net.sf.glxdesktop.gui.glxinfo.dialog;
2   
3   import net.sf.glxdesktop.gui.about.AboutCommonsDialog;
4   import net.sf.glxdesktop.gui.glxinfo.GlxInfoWindowImpl;
5   
6   
7   public class AboutGlxinfoDialog extends AboutCommonsDialog{
8   
9   	public String getFileLicensePath() {
10  		return "LICENSE"; //$NON-NLS-1$
11  	}
12  
13  	public String getFileAuthorsPath() {
14  		return "AUTHORS"; //$NON-NLS-1$
15  	}
16  
17  	public String getFileDocumentorPath() {
18  		return null;
19  	}
20  
21  	public String getFileTranslatorsPath() {
22  		return "TRANSLATORS"; //$NON-NLS-1$
23  	}
24  
25  	public String getWebsiteString() {
26  		return "http://glxdesktop.sf.net"; //$NON-NLS-1$
27  	}
28  
29  	public String getCopyrightString() {
30  		return "(c) Alphonse Van Assche"; //$NON-NLS-1$
31  	}
32  
33  	public String getApplicationNameString() {
34  		return "glxinfo-gui"; //$NON-NLS-1$
35  	}
36  
37  	public String getApplicationVersionString() {
38  		return "0.0.9"; //$NON-NLS-1$
39  	}
40  
41  	public String getApplicationImagePath() {
42  		return GlxInfoWindowImpl.APP_ICON; //$NON-NLS-1$
43  	}
44  
45  	public String getApplicationDescritionString() {
46  		// TODO Auto-generated method stub
47  		return null;
48  	}
49  }