Exemplo n.º 1
0
 public void saveBrightness(int brightness) {
   simpleSettingsDAO.saveBrightness(brightness);
 }
Exemplo n.º 2
0
 public int getBrightnes() {
   return simpleSettingsDAO.getBrightnes();
 }
Exemplo n.º 3
0
 public void saveSoundVolume(int volume) {
   simpleSettingsDAO.saveSoundVolume(volume);
 }
Exemplo n.º 4
0
 public int getSoundVolume() {
   return simpleSettingsDAO.getSoundVolume();
 }
Exemplo n.º 5
0
 public void saveVibrationState(boolean state) {
   simpleSettingsDAO.saveVibrationState(state);
 }
Exemplo n.º 6
0
 public boolean getVibrationState() {
   return simpleSettingsDAO.getVibrationState();
 }
Exemplo n.º 7
0
 public void saveMobileDataState(boolean state) {
   simpleSettingsDAO.saveMobileDataState(state);
 }
Exemplo n.º 8
0
 public boolean getMobileDataState() {
   return simpleSettingsDAO.getMobileDataState();
 }
Exemplo n.º 9
0
 public boolean getBluetoothState() {
   return simpleSettingsDAO.getBluetoothState();
 }
Exemplo n.º 10
0
 public void saveBluetoothState(boolean state) {
   simpleSettingsDAO.saveBluetoothState(state);
 }
Exemplo n.º 11
0
 public boolean getWifiState() {
   return simpleSettingsDAO.getWifiState();
 }
Exemplo n.º 12
0
 public void saveWifiState(boolean state) {
   simpleSettingsDAO.saveWifiState(state);
 }
Exemplo n.º 13
0
 public void setSectionName(String sectionName) {
   this.sectionName = sectionName;
   simpleSettingsDAO.setSectionName(sectionName);
 }