Ignore:
Timestamp:
Jan 19, 2013, 4:35:35 PM (12 years ago)
Author:
alloc
Message:

AEI2 0.93:

  • Primarily another bunch of refactorings
Location:
AE/installer2/src/net/oni2/aeinstaller/backend/depot
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • AE/installer2/src/net/oni2/aeinstaller/backend/depot/DepotConfig.java

    r626 r636  
    2020         * @return Vocabulary name for platform field
    2121         */
    22         public static String getVocabularyName_Platform() {
     22        static String getVocabularyName_Platform() {
    2323                return "Platform";
    2424        }
     
    2727         * @return Vocabulary name for installtype field
    2828         */
    29         public static String getVocabularyName_InstallType() {
     29        static String getVocabularyName_InstallType() {
    3030                return "Install method";
    3131        }
     
    3434         * @return Vocabulary name for modtype field
    3535         */
    36         public static String getVocabularyName_ModType() {
     36        static String getVocabularyName_ModType() {
    3737                return "Mod type";
    3838        }
     
    6262         * @return Taxonomy term name for installtype Package
    6363         */
    64         public static String getTaxonomyName_InstallType_Package() {
     64        static String getTaxonomyName_InstallType_Package() {
    6565                return "Package";
    6666        }
     
    8787         * @return URL of Depot
    8888         */
    89         public static String getDepotUrl() {
     89        static String getDepotUrl() {
    9090                return Settings.getInstance().get("depot_url", "http://mods.oni2.net/");
    9191        }
     
    9494         * @return URL of Depot API
    9595         */
    96         public static String getDepotApiUrl() {
     96        static String getDepotApiUrl() {
    9797                return Settings.getInstance().get("depot_api_url",
    9898                                "http://mods.oni2.net/?q=api/");
  • AE/installer2/src/net/oni2/aeinstaller/backend/depot/model/TaxonomyTerm.java

    r591 r636  
    1313        private String description;
    1414        private String uri;
    15 
    16         /**
    17          * Manually create a taxonomy term for internal use
    18          *
    19          * @param tid
    20          *            ID
    21          * @param vid
    22          *            VocabID
    23          * @param name
    24          *            Term name
    25          */
    26         public TaxonomyTerm(int tid, int vid, String name) {
    27                 this.tid = tid;
    28                 this.vid = vid;
    29                 this.name = name;
    30                 this.description = "";
    31                 this.uri = "";
    32         }
    3315
    3416        /**
Note: See TracChangeset for help on using the changeset viewer.