Clears all the dictionnary entries in the specified file or the default file

if none specified at instanciation Returns self allowing fluent programming

Property definitions

android $ SharedPreferences :: clear
	# Clears all the dictionnary entries in the specified file or the default file
	# if none specified at instanciation
	# Returns `self` allowing fluent programming
	fun clear: SharedPreferences
	do
		editor.clear
		commit_if_auto
		return self
	end
lib/android/shared_preferences/shared_preferences_api10.nit:278,2--286,4