aboutsummaryrefslogtreecommitdiffstats
path: root/layoutlib_api/src/com/android/layoutlib/api/IXmlPullParser.java
diff options
context:
space:
mode:
Diffstat (limited to 'layoutlib_api/src/com/android/layoutlib/api/IXmlPullParser.java')
-rw-r--r--layoutlib_api/src/com/android/layoutlib/api/IXmlPullParser.java13
1 files changed, 1 insertions, 12 deletions
diff --git a/layoutlib_api/src/com/android/layoutlib/api/IXmlPullParser.java b/layoutlib_api/src/com/android/layoutlib/api/IXmlPullParser.java
index c3c738f..b4d10a2 100644
--- a/layoutlib_api/src/com/android/layoutlib/api/IXmlPullParser.java
+++ b/layoutlib_api/src/com/android/layoutlib/api/IXmlPullParser.java
@@ -19,8 +19,7 @@ package com.android.layoutlib.api;
import org.xmlpull.v1.XmlPullParser;
/**
- * Extended version of {@link XmlPullParser} to use with
- * {@link LayoutBridge#createScene(SceneParams)}
+ * @deprecated
*/
public interface IXmlPullParser extends XmlPullParser {
@@ -30,14 +29,4 @@ public interface IXmlPullParser extends XmlPullParser {
* of a particular XML node with its result from the layout computation.
*/
Object getViewKey();
-
- /**
- * Returns a custom parser for the layout of the given name.
- * @param layoutName the name of the layout.
- * @return returns a custom parser or null if no custom parsers are needed.
- *
- * @since 5
- */
- IXmlPullParser getParser(String layoutName);
}
-