ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/AE/installer2/src/net/oni2/aeinstaller/backend/depot/DepotConfig.java
Revision: 591
Committed: Fri Dec 28 20:12:33 2012 UTC (12 years, 11 months ago) by alloc
Content type: text/x-java
File size: 989 byte(s)
Log Message:
AEI2-import

File Contents

# Content
1 package net.oni2.aeinstaller.backend.depot;
2
3 /**
4 * @author Christian Illy
5 */
6 public class DepotConfig {
7 /**
8 * Type-value of nodes which contain Mods
9 */
10 public static final String NODETYPE_MOD = "mod";
11
12 /**
13 * Vocabulary name for platform field
14 */
15 public static final String PLATFORM_VOCAB = "Platform";
16 /**
17 * Vocabulary name for installtype field
18 */
19 public static final String INSTALLTYPE_VOCAB = "Install method";
20 /**
21 * Vocabulary name for modtype field
22 */
23 public static final String MODTYPE_VOCAB = "Mod type";
24
25 /**
26 * Taxonomy term name for platform value Win
27 */
28 public static final String PLATFORM_WIN = "Windows";
29 /**
30 * Taxonomy term name for platform value Mac
31 */
32 public static final String PLATFORM_MAC = "Mac OS";
33 /**
34 * Taxonomy term name for platform value Both
35 */
36 public static final String PLATFORM_BOTH = "Both";
37
38 /**
39 * Taxonomy term name for installtype Package
40 */
41 public static final String INSTALLTYPE_PACKAGE = "Package";
42 }