123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package com.gmail.nossr50.config;
- import com.gmail.nossr50.mcMMO;
- import java.io.File;
- import java.util.List;
- /**
- * This class is used for config files that validate their entries
- */
- public abstract class ConfigValidated extends Config implements DefaultKeys {
- /**
- * @param parentFolderPath Path to the "parent" folder on disk
- * @param relativePath Path to the config relative to the "parent" folder, this should mirror internal structure of resource files
- * @param mergeNewKeys if true, the users config will add keys found in the internal file that are missing from the users file during load
- * @param copyDefaults if true, the users config file when it is first made will be a copy of an internal resource file of the same name and path
- */
- public ConfigValidated(String parentFolderPath, String relativePath, boolean mergeNewKeys, boolean copyDefaults, boolean removeOldKeys)
- {
- super(parentFolderPath, relativePath, mergeNewKeys, copyDefaults, removeOldKeys);
- validateEntries();
- }
- /**
- * @param parentFolderFile File for the "parent" folder on disk
- * @param relativePath Path to the config relative to the "parent" folder, this should mirror internal structure of resource files
- * @param mergeNewKeys if true, the users config will add keys found in the internal file that are missing from the users file during load
- * @param copyDefaults if true, the users config file when it is first made will be a copy of an internal resource file of the same name and path
- */
- public ConfigValidated(File parentFolderFile, String relativePath, boolean mergeNewKeys, boolean copyDefaults, boolean removeOldKeys)
- {
- super(parentFolderFile, relativePath, mergeNewKeys, copyDefaults, removeOldKeys);
- validateEntries();
- }
- /**
- * Prints all errors found when validating the config
- */
- private void validateEntries()
- {
- /*
- * Print Errors about Keys
- */
- List<String> validKeyErrors = validateKeys(); // Validate Keys
- if(validKeyErrors != null && validKeyErrors.size() > 0)
- {
- for(String error : validKeyErrors)
- {
- mcMMO.p.getLogger().severe(error);
- }
- }
- }
- }
|