Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IHolo.java « holoeverywhere « org « src « library « HoloEverywhere « 3rd_party « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e341ab4bedbe05395fa109f24853eb968d31dfbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

package org.holoeverywhere;

import org.holoeverywhere.HoloEverywhere.PreferenceImpl;
import org.holoeverywhere.app.Application;
import org.holoeverywhere.preference.SharedPreferences;

public interface IHolo {
    public SharedPreferences getDefaultSharedPreferences();

    public SharedPreferences getDefaultSharedPreferences(PreferenceImpl impl);

    public LayoutInflater getLayoutInflater();

    public SharedPreferences getSharedPreferences(PreferenceImpl impl,
            String name, int mode);

    public SharedPreferences getSharedPreferences(String name, int mode);

    public Application getSupportApplication();
}