1 |
/** XULU - This file is part of the eXtendable Unified Land Use Modelling Platform (XULU) |
2 |
|
3 |
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. |
4 |
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
5 |
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA |
6 |
|
7 |
Diese Bibliothek ist freie Software; Sie dürfen sie unter den Bedingungen der GNU Lesser General Public License, wie von der Free Software Foundation veröffentlicht, weiterverteilen und/oder modifizieren; entweder gemäß Version 2.1 der Lizenz oder (nach Ihrer Option) jeder späteren Version. |
8 |
Diese Bibliothek wird in der Hoffnung weiterverbreitet, daß sie nützlich sein wird, jedoch OHNE IRGENDEINE GARANTIE, auch ohne die implizierte Garantie der MARKTREIFE oder der VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK. Mehr Details finden Sie in der GNU Lesser General Public License. |
9 |
Sie sollten eine Kopie der GNU Lesser General Public License zusammen mit dieser Bibliothek erhalten haben; falls nicht, schreiben Sie an die Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA. |
10 |
**/ |
11 |
|
12 |
package edu.bonn.xulu.appl; |
13 |
|
14 |
import java.io.File; |
15 |
import javax.swing.ImageIcon; |
16 |
import java.util.Locale; |
17 |
|
18 |
import schmitzm.lang.ResourceProvider; |
19 |
import schmitzm.swing.SwingUtil; |
20 |
import edu.bonn.xulu.XuluModellingPlatform; |
21 |
|
22 |
// nur fuer Doku |
23 |
|
24 |
/** |
25 |
* Dieses Interface enthaelt Kostanten fuer die Xulu-Modelling-Platform. |
26 |
* @author <a href="mailto:[email protected]">Martin Schmitz</a> (University of Bonn/Germany) |
27 |
* @version 1.0 |
28 |
*/ |
29 |
public interface XuluConstants { |
30 |
/** Versionsnummer der Xulu-Modelling-Platform. **/ |
31 |
public static final String VERSION = "1.8"; |
32 |
/** Versionsdatum der Xulu-Modelling-Platform. **/ |
33 |
public static final String VERSION_DATE = "2009-08-31"; |
34 |
/** Verzeichnis, in dem Icons und Uebersetzungen hinterlegt sind. */ |
35 |
public static final String RESOURCE_DIR = "resource"; |
36 |
/** Verzeichnis, in dem Icons hinterlegt sind. */ |
37 |
public static final String ICONS_DIR = RESOURCE_DIR+File.separatorChar+"icons"; |
38 |
/** Icon, das fuer Xulu-Fenster verwendet wird. */ |
39 |
public static final ImageIcon XULU_ICON = new ImageIcon(ICONS_DIR+File.separatorChar+"xulu_icon.png"); |
40 |
/** Xulu-Logo, das auf dem Start-Fenster angezeigt wird. */ |
41 |
public static final ImageIcon XULU_INFOICON = new ImageIcon(ICONS_DIR+File.separatorChar+"xulu_info.png"); |
42 |
/** Xulu-Logo, das auf dem Info-Fenster angezeigt wird. */ |
43 |
public static final ImageIcon XULU_STARTICON = new ImageIcon(ICONS_DIR+File.separatorChar+"xulu_start.png"); |
44 |
|
45 |
/** Enthaelt eine Referenz auf die Standard-Swing-Ressourcen des Package |
46 |
* {@code schmitzm.swing}. |
47 |
* @see SwingUtil#RESOURCE */ |
48 |
public static final ResourceProvider SWING_RES = SwingUtil.RESOURCE; |
49 |
|
50 |
/** Enthaelt den Basis-Pfad (in Punkt-Notation, basierend auf dem Classpath) |
51 |
* der Xulu-spezifischen Ressourcen.<br> |
52 |
* Konstant: {@code locales} (Verzeichnis unterhalb von {@code <xulu_main>/resource)}*/ |
53 |
public static final String LOCALES_BASE = "locales"; |
54 |
|
55 |
/** Pfad (in Punkt-Notation), auf den die Bundles aus Standard-Paketen umgelenkt |
56 |
* werden. Konstant: {@code locales.StandardBundleExtension} |
57 |
* @see #LOCALES_BASE */ |
58 |
public static final String EXTENTION_BUNDLE = XuluConstants.LOCALES_BASE+".StandardBundleExtension"; |
59 |
|
60 |
/** Enthaelt eine Referenz auf die Xulu-spezifischen Ressourcen fuer |
61 |
* die Haupt-Applikation. */ |
62 |
public static final ResourceProvider XULUGUI_RES = XuluModellingPlatform.registerResourceProvider("XuluMainAppl",Locale.ENGLISH); |
63 |
|
64 |
/** Enthaelt eine Referenz auf die Xulu-spezifischen Ressourcen fuer |
65 |
* die Fehlermeldungen in der Haupt-Applikation. */ |
66 |
public static final ResourceProvider XULUERR_RES = XuluModellingPlatform.registerResourceProvider("XuluMainError",Locale.ENGLISH); |
67 |
|
68 |
/** Enthaelt eine Referenz auf die Xulu-spezifischen Ressourcen fuer |
69 |
* die Visualisierungs-Plugins. */ |
70 |
public static final ResourceProvider XULU_VIS_RES = XuluModellingPlatform.registerResourceProvider("XuluVisualisationTool",Locale.ENGLISH); |
71 |
} |