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";
11 }
12
13 public String getFileAuthorsPath() {
14 return "AUTHORS";
15 }
16
17 public String getFileDocumentorPath() {
18 return null;
19 }
20
21 public String getFileTranslatorsPath() {
22 return "TRANSLATORS";
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";
31 }
32
33 public String getApplicationNameString() {
34 return "glxinfo-gui";
35 }
36
37 public String getApplicationVersionString() {
38 return "0.0.9";
39 }
40
41 public String getApplicationImagePath() {
42 return GlxInfoWindowImpl.APP_ICON;
43 }
44
45 public String getApplicationDescritionString() {
46
47 return null;
48 }
49 }