Settings.java :  » UnTagged » snooker-scoreboard » snooker » scoreboard » Android Open Source

Android Open Source » UnTagged » snooker scoreboard 
snooker scoreboard » snooker » scoreboard » Settings.java
package snooker.scoreboard;

public class Settings {

  private static Settings settings;

  private int maxReds;
  
  private Settings() {
    maxReds = 15;
  }
  
  public static Settings getInstance() {
    if (settings == null) {
      settings = new Settings();
    }
    return settings;
  }
  
  public int getMaxReds() {
    return maxReds;
  }
  
  public void setMaxReds(int maxReds) {
    this.maxReds = maxReds;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.