public void saveBrightness(int brightness) { simpleSettingsDAO.saveBrightness(brightness); }
public int getBrightnes() { return simpleSettingsDAO.getBrightnes(); }
public void saveSoundVolume(int volume) { simpleSettingsDAO.saveSoundVolume(volume); }
public int getSoundVolume() { return simpleSettingsDAO.getSoundVolume(); }
public void saveVibrationState(boolean state) { simpleSettingsDAO.saveVibrationState(state); }
public boolean getVibrationState() { return simpleSettingsDAO.getVibrationState(); }
public void saveMobileDataState(boolean state) { simpleSettingsDAO.saveMobileDataState(state); }
public boolean getMobileDataState() { return simpleSettingsDAO.getMobileDataState(); }
public boolean getBluetoothState() { return simpleSettingsDAO.getBluetoothState(); }
public void saveBluetoothState(boolean state) { simpleSettingsDAO.saveBluetoothState(state); }
public boolean getWifiState() { return simpleSettingsDAO.getWifiState(); }
public void saveWifiState(boolean state) { simpleSettingsDAO.saveWifiState(state); }
public void setSectionName(String sectionName) { this.sectionName = sectionName; simpleSettingsDAO.setSectionName(sectionName); }