インタフェース実装

This commit is contained in:
ろむねこ 2023-12-14 10:16:07 +09:00
parent 21b0212de7
commit 779a07ff26
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -1,4 +1,13 @@
package one.nem.lacerta.utils.repository;
import android.content.SharedPreferences;
public interface SharedPrefUtils {
// Shared preferences editorの取得
SharedPreferences.Editor getEditor();
// TODO-rca: 名称をenumで管理する
SharedPreferences.Editor getEditor(String name);
}