Bukkit  1.4.7-R1.0
 All Classes Namespaces Files Functions Variables Enumerator Pages
ConfigurationOptions.java
Go to the documentation of this file.
1 package org.bukkit.configuration;
2 
6 public class ConfigurationOptions {
7  private char pathSeparator = '.';
8  private boolean copyDefaults = false;
9  private final Configuration configuration;
10 
12  this.configuration = configuration;
13  }
14 
21  return configuration;
22  }
23 
32  public char pathSeparator() {
33  return pathSeparator;
34  }
35 
45  public ConfigurationOptions pathSeparator(char value) {
46  this.pathSeparator = value;
47  return this;
48  }
49 
61  public boolean copyDefaults() {
62  return copyDefaults;
63  }
64 
77  public ConfigurationOptions copyDefaults(boolean value) {
78  this.copyDefaults = value;
79  return this;
80  }
81 }