434445464748495051
protected static final String DELIMITER = ","; protected final int valueCount; public PropertiesExport(String name, int valueCount) { filename = name; properties = new SortedProperties(); this.valueCount = valueCount; header = null; }
119120121122123124125126127128129
protected String getComment() { return null; } protected void loadDefaults() { defaultOptions = new SortedProperties(); InputStream stream = getClass().getResourceAsStream(resourceLocation + "/" + filename); try { try { defaultOptions.load(stream);
70717273747576
return "Generated by SimpleServer\nDO NOT EDIT THIS FILE!"; } @Override protected void loadDefaults() { defaultOptions = new SortedProperties(); }