Searched defs:ShortcutPreference (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Settings/src/com/android/settings/quicklaunch/
H A DShortcutPreference.java31 public class ShortcutPreference extends Preference implements Comparable<Preference> { class in inherits:Preference,Comparable
35 // These static fields are used across all instances of ShortcutPreference.
36 // There will be many ShortcutPreference instances (~36 for US).
49 public ShortcutPreference(Context context, char shortcut) { method in class:ShortcutPreference
53 // Init statics. This should only happen for the first ShortcutPreference created,
142 if (!(another instanceof ShortcutPreference)) return super.compareTo(another);
145 char other = ((ShortcutPreference) another).mShortcut;

Completed in 55 milliseconds