mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-04 02:36:23 +02:00
21 lines
1.1 KiB
Java
21 lines
1.1 KiB
Java
package com.gmail.nossr50.config;
|
|
|
|
|
|
import java.io.File;
|
|
|
|
/**
|
|
* This class is used for config files that validate their entries
|
|
*/
|
|
public abstract class ConfigValidated extends Config implements UnsafeValueValidation {
|
|
/**
|
|
* @param pathToParentFolder 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(String fileName, File pathToParentFolder, String relativePath, boolean generateDefaults, boolean mergeNewKeys, boolean copyDefaults, boolean removeOldKeys) {
|
|
super(fileName, pathToParentFolder, relativePath, generateDefaults, mergeNewKeys, copyDefaults, removeOldKeys);
|
|
validateEntries();
|
|
}
|
|
}
|