Merge "Make Advanceable a public API." into jb-dev

This commit is contained in:
Michael Jurka
2012-04-25 15:14:51 -07:00
committed by Android (Google) Code Review
2 changed files with 6 additions and 2 deletions

View File

@@ -26608,7 +26608,7 @@ package android.widget {
method public abstract void onNothingSelected(android.widget.AdapterView<?>); method public abstract void onNothingSelected(android.widget.AdapterView<?>);
} }
public abstract class AdapterViewAnimator extends android.widget.AdapterView { public abstract class AdapterViewAnimator extends android.widget.AdapterView implements android.widget.Advanceable {
ctor public AdapterViewAnimator(android.content.Context); ctor public AdapterViewAnimator(android.content.Context);
ctor public AdapterViewAnimator(android.content.Context, android.util.AttributeSet); ctor public AdapterViewAnimator(android.content.Context, android.util.AttributeSet);
ctor public AdapterViewAnimator(android.content.Context, android.util.AttributeSet, int); ctor public AdapterViewAnimator(android.content.Context, android.util.AttributeSet, int);
@@ -26650,6 +26650,11 @@ package android.widget {
method public void stopFlipping(); method public void stopFlipping();
} }
public abstract interface Advanceable {
method public abstract void advance();
method public abstract void fyiWillBeAdvancedByHostKThx();
}
public class AlphabetIndexer extends android.database.DataSetObserver implements android.widget.SectionIndexer { public class AlphabetIndexer extends android.database.DataSetObserver implements android.widget.SectionIndexer {
ctor public AlphabetIndexer(android.database.Cursor, int, java.lang.CharSequence); ctor public AlphabetIndexer(android.database.Cursor, int, java.lang.CharSequence);
method protected int compare(java.lang.String, java.lang.String); method protected int compare(java.lang.String, java.lang.String);

View File

@@ -21,7 +21,6 @@ package android.widget;
* progressing through its set of children. The interface exists to give AppWidgetHosts a way of * progressing through its set of children. The interface exists to give AppWidgetHosts a way of
* taking responsibility for automatically advancing such collections. * taking responsibility for automatically advancing such collections.
* *
* @hide
*/ */
public interface Advanceable { public interface Advanceable {