diff options
author | Xavier Ducrohet <xav@android.com> | 2012-10-02 17:37:28 -0700 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2012-10-02 17:37:28 -0700 |
commit | bdb9903224d688b264b6a9b4c7aa3fa8e0142996 (patch) | |
tree | 6f80d17a615c1798bda4b4925f1bc42e88d568f4 /layoutlib_api/src/com/android/layoutlib/api | |
parent | d19ce5efa561089937102f19a373ac5324311a03 (diff) | |
download | sdk-bdb9903224d688b264b6a9b4c7aa3fa8e0142996.zip sdk-bdb9903224d688b264b6a9b4c7aa3fa8e0142996.tar.gz sdk-bdb9903224d688b264b6a9b4c7aa3fa8e0142996.tar.bz2 |
Fix javadoc here and there.
Change-Id: If02d0b97c294d9821a1c914547782a08b1d256fb
Diffstat (limited to 'layoutlib_api/src/com/android/layoutlib/api')
3 files changed, 11 insertions, 7 deletions
diff --git a/layoutlib_api/src/com/android/layoutlib/api/ILayoutBridge.java b/layoutlib_api/src/com/android/layoutlib/api/ILayoutBridge.java index 56d2e36..f849cdd 100644 --- a/layoutlib_api/src/com/android/layoutlib/api/ILayoutBridge.java +++ b/layoutlib_api/src/com/android/layoutlib/api/ILayoutBridge.java @@ -104,7 +104,7 @@ public interface ILayoutBridge { * the project. * @param logger the object responsible for displaying warning/errors to the user. * @return a new {@link ILayoutResult} object that contains the result of the layout. - * @deprecated use {@link Bridge#createScene(SceneParams)} + * @deprecated use {@link Bridge#createSession(com.android.ide.common.rendering.api.SessionParams)} * @since 4 */ @Deprecated @@ -141,7 +141,7 @@ public interface ILayoutBridge { * the project. * @param logger the object responsible for displaying warning/errors to the user. * @return a new {@link ILayoutResult} object that contains the result of the layout. - * @deprecated use {@link Bridge#createScene(SceneParams)} + * @deprecated use {@link Bridge#createSession(com.android.ide.common.rendering.api.SessionParams)} * @since 3 */ @Deprecated @@ -174,7 +174,7 @@ public interface ILayoutBridge { * the project. * @param logger the object responsible for displaying warning/errors to the user. * @return a new {@link ILayoutResult} object that contains the result of the layout. - * @deprecated use {@link Bridge#createScene(SceneParams)} + * @deprecated use {@link Bridge#createSession(com.android.ide.common.rendering.api.SessionParams)} * @since 2 */ @Deprecated @@ -206,7 +206,7 @@ public interface ILayoutBridge { * the project. * @param logger the object responsible for displaying warning/errors to the user. * @return a new {@link ILayoutResult} object that contains the result of the layout. - * @deprecated use {@link Bridge#createScene(SceneParams)} + * @deprecated use {@link Bridge#createSession(com.android.ide.common.rendering.api.SessionParams)} * @since 1 */ @Deprecated diff --git a/layoutlib_api/src/com/android/layoutlib/api/ILayoutResult.java b/layoutlib_api/src/com/android/layoutlib/api/ILayoutResult.java index 46255c4..6aeaf9f 100644 --- a/layoutlib_api/src/com/android/layoutlib/api/ILayoutResult.java +++ b/layoutlib_api/src/com/android/layoutlib/api/ILayoutResult.java @@ -25,8 +25,9 @@ import java.awt.image.BufferedImage; * The result of a layout computation through {@link ILayoutBridge}. * * @since 1 - * @deprecated use {@link RenderSession} as returned by {@link Bridge#createScene(SceneParams)} + * @deprecated use {@link RenderSession} as returned by {@link Bridge#createSession(com.android.ide.common.rendering.api.SessionParams)} */ +@Deprecated public interface ILayoutResult { /** * Success return code @@ -66,6 +67,7 @@ public interface ILayoutResult { * Layout information for a specific view. * @deprecated */ + @Deprecated public interface ILayoutViewInfo { /** diff --git a/layoutlib_api/src/com/android/layoutlib/api/IXmlPullParser.java b/layoutlib_api/src/com/android/layoutlib/api/IXmlPullParser.java index b4d10a2..e0a98a6 100644 --- a/layoutlib_api/src/com/android/layoutlib/api/IXmlPullParser.java +++ b/layoutlib_api/src/com/android/layoutlib/api/IXmlPullParser.java @@ -21,12 +21,14 @@ import org.xmlpull.v1.XmlPullParser; /** * @deprecated */ +@Deprecated public interface IXmlPullParser extends XmlPullParser { /** * Returns a key for the current XML node. - * <p/>This key will be passed back in the {@link ViewInfo} objects, allowing association - * of a particular XML node with its result from the layout computation. + * <p/>This key will be passed back in the {@link com.android.ide.common.rendering.api.ViewInfo} + * objects, allowing association of a particular XML node with its result from the + * layout computation. */ Object getViewKey(); } |