mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-24 19:15:48 +01:00
f1ee558e3a
- Switched from YamlConfiguration to BreezeConfiguration (from ChestShop 4) - Fixed getDouble() - Instead of checking for Admin Shops, we just pass in a new AdminShop Container - Created events for shop creation, protection checks and protection creation - Expanded string data value parsing, for example - you can use "Ocelot Monster" on the sign - Collected all external plugin wrappers in a single folder - Instead of using statics, now we use objects - Fixed enchantments for armour - Made config more readable - Added a setting for removing empty shops - Switched from System.out to logger - Also, switched from ugly file logging to Java's native one (FileHandler) - Added an option to tax transactions even when SERVER_ECONOMY_ACCOUNT is empty - Changed the Container interface
40 lines
891 B
Java
40 lines
891 B
Java
package com.Acrobot.ChestShop.Config;
|
|
|
|
/**
|
|
* @author Acrobot
|
|
*/
|
|
public class Value {
|
|
public final Object value;
|
|
public final String comment;
|
|
|
|
public Value(Object value, String comment) {
|
|
this.value = value;
|
|
this.comment = comment;
|
|
}
|
|
|
|
public Value(Object value) {
|
|
this(value, null);
|
|
}
|
|
|
|
/**
|
|
* Retrieves the value of that Value
|
|
*
|
|
* @return The value
|
|
*/
|
|
public String retrieveValue() {
|
|
StringBuilder toReturn = new StringBuilder(30);
|
|
|
|
if (value instanceof Number || value instanceof Boolean) {
|
|
toReturn.append(String.valueOf(value));
|
|
} else {
|
|
toReturn.append('\"').append(String.valueOf(value)).append('\"');
|
|
}
|
|
|
|
if (comment != null) {
|
|
toReturn.append('\n').append('#').append(comment);
|
|
}
|
|
|
|
return toReturn.toString();
|
|
}
|
|
}
|