source: AE/installer2/src/net/oni2/aeinstaller/backend/depot/DepotConfig.java@ 597

Last change on this file since 597 was 592, checked in by alloc, 12 years ago

AEI - Current state

File size: 1.2 KB
Line 
1package net.oni2.aeinstaller.backend.depot;
2
3/**
4 * @author Christian Illy
5 */
6public class DepotConfig {
7
8 /**
9 * @return Type-value of nodes which contain Mods
10 */
11 public static String getNodeType_Mod() {
12 return "mod";
13 }
14
15 /**
16 * @return Vocabulary name for platform field
17 */
18 public static String getVocabularyName_Platform() {
19 return "Platform";
20 }
21
22 /**
23 * @return Vocabulary name for installtype field
24 */
25 public static String getVocabularyName_InstallType() {
26 return "Install method";
27 }
28
29 /**
30 * @return Vocabulary name for modtype field
31 */
32 public static String getVocabularyName_ModType() {
33 return "Mod type";
34 }
35
36 /**
37 * @return Taxonomy term name for platform value Win
38 */
39 public static String getTaxonomyName_Platform_Win() {
40 return "Windows";
41 }
42
43 /**
44 * @return Taxonomy term name for platform value Mac
45 */
46 public static String getTaxonomyName_Platform_Mac() {
47 return "Mac OS";
48 }
49
50 /**
51 * @return Taxonomy term name for platform value Both
52 */
53 public static String getTaxonomyName_Platform_Both() {
54 return "Both";
55 }
56
57 /**
58 * @return Taxonomy term name for installtype Package
59 */
60 public static String getTaxonomyName_InstallType_Package() {
61 return "Package";
62 }
63}
Note: See TracBrowser for help on using the repository browser.