package net.t2code.t2codelib; import java.util.HashMap; import java.util.List; public interface T2CconfigItemLanguages { /** * Returns the path of the option for the config * * @return Config path of the option */ String getPath(); /** * Returns the default value of the option and, after reading the config, the value from the config * * @return Value of the option */ Object getValue(); HashMap getLanguage(); /** * Set the description of the option here, the '# ' is automatically set in front of it */ HashMap> getComments(); /** * This @void is used to reset the value of @getValue() */ default void setValue(Object newValue) { } }