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