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

/frameworks/base/core/java/android/text/
H A DSpannable.java49 * Factory used by TextView to create new Spannables. You can subclass
52 public static class Factory { class in interface:Spannable
53 private static Spannable.Factory sInstance = new Spannable.Factory();
56 * Returns the standard Spannable Factory.
58 public static Spannable.Factory getInstance() {
H A DEditable.java120 * Factory used by TextView to create new Editables. You can subclass
123 public static class Factory { class in interface:Editable
124 private static Editable.Factory sInstance = new Editable.Factory();
127 * Returns the standard Editable Factory.
129 public static Editable.Factory getInstance() {
/frameworks/support/v4/donut/android/support/v4/app/
H A DRemoteInputCompatBase.java30 public interface Factory { interface in class:RemoteInputCompatBase.RemoteInput
H A DNotificationCompatBase.java31 public interface Factory { interface in class:NotificationCompatBase.Action
47 public interface Factory { interface in class:NotificationCompatBase.UnreadConversation
/frameworks/base/core/java/android/view/
H A DInputEventReceiver.java194 public static interface Factory { interface in class:InputEventReceiver
H A DLayoutInflater.java52 * To create a new LayoutInflater with an additional {@link Factory} for your
55 * Factory.
78 private Factory mFactory;
120 public interface Factory { interface in class:LayoutInflater
141 public interface Factory2 extends Factory {
160 private final Factory mF1, mF2;
163 FactoryMerger(Factory f1, Factory2 f12, Factory f2, Factory2 f22) {
250 * Return the current {@link Factory} (or null). This is called on each element
254 public final Factory getFactor
[all...]
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java51 private Factory<T> mFactory;
66 public interface Factory<T> { interface in class:GenericInflater
84 private static class FactoryMerger<T> implements Factory<T> {
85 private final Factory<T> mF1, mF2;
87 FactoryMerger(Factory<T> f1, Factory<T> f2) {
173 public final Factory<T> getFactory() {
178 * Attach a custom Factory interface for creating items while using this
191 public void setFactory(Factory<T> factory) {

Completed in 122 milliseconds