Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 406e0f65 authored by Alan Viverette's avatar Alan Viverette
Browse files

Migrate frameworks/base javadocs references to androidx

Does not remove Support Library artifacts from docs classpath (ApiDocs.bp)
because they are still used in development/samples, which is not as easy
to migrate as javadoc.

Bug: 158779503
Test: make docs
Exempt-From-Owner-Approval: Mass find/replace for androidx migration
Change-Id: Icf7f53ec36a0e970413352e2ebf40ce9d60ed17e
parent 61856605
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -140,7 +140,7 @@ import java.io.PrintWriter;
 *      embed}
 *
 * @deprecated Use the <a href="{@docRoot}tools/extras/support-library.html">Support Library</a>
 *      {@link android.support.v4.app.DialogFragment} for consistent behavior across all devices
 *      {@link androidx.fragment.app.DialogFragment} for consistent behavior across all devices
 *      and access to <a href="{@docRoot}topic/libraries/architecture/lifecycle.html">Lifecycle</a>.
 */
@Deprecated
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ import android.view.View;
 * Callbacks to a {@link Fragment}'s container.
 *
 * @deprecated Use the <a href="{@docRoot}tools/extras/support-library.html">Support Library</a>
 *      {@link android.support.v4.app.FragmentContainer}.
 *      {@link androidx.fragment.app.FragmentContainer}.
 */
@Deprecated
public abstract class FragmentContainer {
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ import java.util.List;
 * The methods provided by {@link FragmentController} are for that purpose.
 *
 * @deprecated Use the <a href="{@docRoot}tools/extras/support-library.html">Support Library</a>
 *      {@link android.support.v4.app.FragmentController}
 *      {@link androidx.fragment.app.FragmentController}
 */
@Deprecated
public class FragmentController {
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ import java.io.PrintWriter;
 * applicable to the host.
 *
 * @deprecated Use the <a href="{@docRoot}tools/extras/support-library.html">Support Library</a>
 *      {@link android.support.v4.app.FragmentHostCallback}
 *      {@link androidx.fragment.app.FragmentHostCallback}
 */
@Deprecated
public abstract class FragmentHostCallback<E> extends FragmentContainer {
+5 −5
Original line number Diff line number Diff line
@@ -72,12 +72,12 @@ import java.util.concurrent.CopyOnWriteArrayList;
 * While the FragmentManager API was introduced in
 * {@link android.os.Build.VERSION_CODES#HONEYCOMB}, a version of the API
 * at is also available for use on older platforms through
 * {@link android.support.v4.app.FragmentActivity}.  See the blog post
 * {@link androidx.fragment.app.FragmentActivity}.  See the blog post
 * <a href="http://android-developers.blogspot.com/2011/03/fragments-for-all.html">
 * Fragments For All</a> for more details.
 *
 * @deprecated Use the <a href="{@docRoot}tools/extras/support-library.html">Support Library</a>
 *      {@link android.support.v4.app.FragmentManager} for consistent behavior across all devices
 *      {@link androidx.fragment.app.FragmentManager} for consistent behavior across all devices
 *      and access to <a href="{@docRoot}topic/libraries/architecture/lifecycle.html">Lifecycle</a>.
 */
@Deprecated
@@ -94,7 +94,7 @@ public abstract class FragmentManager {
     * will be persisted across activity instances.
     *
     * @deprecated Use the <a href="{@docRoot}tools/extras/support-library.html">
     *      Support Library</a> {@link android.support.v4.app.FragmentManager.BackStackEntry}
     *      Support Library</a> {@link androidx.fragment.app.FragmentManager.BackStackEntry}
     */
    @Deprecated
    public interface BackStackEntry {
@@ -142,7 +142,7 @@ public abstract class FragmentManager {
     *
     * @deprecated Use the <a href="{@docRoot}tools/extras/support-library.html">
     *      Support Library</a>
     *      {@link android.support.v4.app.FragmentManager.OnBackStackChangedListener}
     *      {@link androidx.fragment.app.FragmentManager.OnBackStackChangedListener}
     */
    @Deprecated
    public interface OnBackStackChangedListener {
@@ -446,7 +446,7 @@ public abstract class FragmentManager {
     *
     * @deprecated Use the <a href="{@docRoot}tools/extras/support-library.html">
     *      Support Library</a>
     *      {@link android.support.v4.app.FragmentManager.FragmentLifecycleCallbacks}
     *      {@link androidx.fragment.app.FragmentManager.FragmentLifecycleCallbacks}
     */
    @Deprecated
    public abstract static class FragmentLifecycleCallbacks {
Loading