summaryrefslogtreecommitdiff
path: root/core/java/android/view/ViewParent.java
diff options
context:
space:
mode:
authorAdam Powell <adamp@google.com>2013-07-11 15:25:59 -0700
committerAdam Powell <adamp@google.com>2013-07-11 15:25:59 -0700
commit504a10f2f5c7343c863d31490700620109deb7ae (patch)
tree99dd19fb38b47da8b31c473a3b7ddf0b32e83440 /core/java/android/view/ViewParent.java
parent713412fd54aba940ff67ab804292a2033681df89 (diff)
Un-hide all ViewParent methods
Make it possible for code outside the framework to implement the ViewParent interface. Change-Id: Ic1b4eb15a4b3da1d16c92b59e039d89861d893e4
Diffstat (limited to 'core/java/android/view/ViewParent.java')
-rw-r--r--core/java/android/view/ViewParent.java24
1 files changed, 1 insertions, 23 deletions
diff --git a/core/java/android/view/ViewParent.java b/core/java/android/view/ViewParent.java
index 2ebc1a19ed54..8ae69967810c 100644
--- a/core/java/android/view/ViewParent.java
+++ b/core/java/android/view/ViewParent.java
@@ -271,8 +271,6 @@ public interface ViewParent {
*
* @param child Child view whose state has changed
* @param hasTransientState true if this child has transient state
- *
- * @hide
*/
public void childHasTransientStateChanged(View child, boolean hasTransientState);
@@ -295,9 +293,7 @@ public interface ViewParent {
* A child notifies its parent that the accessibility state of a subtree rooted
* at a given node changed. That is the structure of the subtree is different.
*
- * @param The root of the changed subtree.
- *
- * @hide
+ * @param root The root of the changed subtree.
*/
public void childAccessibilityStateChanged(View root);
@@ -306,8 +302,6 @@ public interface ViewParent {
* See {@link View#setLayoutDirection(int)}
*
* @return True if this view parent can resolve the layout direction.
- *
- * @hide
*/
public boolean canResolveLayoutDirection();
@@ -316,8 +310,6 @@ public interface ViewParent {
* See {@link View#setLayoutDirection(int)}
*
* @return True if this view parent layout direction is resolved.
- *
- * @hide
*/
public boolean isLayoutDirectionResolved();
@@ -326,8 +318,6 @@ public interface ViewParent {
*
* @return {@link View#LAYOUT_DIRECTION_RTL} if the layout direction is RTL or returns
* {@link View#LAYOUT_DIRECTION_LTR} if the layout direction is not RTL.
- *
- * @hide
*/
public int getLayoutDirection();
@@ -336,8 +326,6 @@ public interface ViewParent {
* See {@link View#setTextDirection(int)}
*
* @return True if this view parent can resolve the text direction.
- *
- * @hide
*/
public boolean canResolveTextDirection();
@@ -346,8 +334,6 @@ public interface ViewParent {
* See {@link View#setTextDirection(int)}
*
* @return True if this view parent text direction is resolved.
- *
- * @hide
*/
public boolean isTextDirectionResolved();
@@ -361,8 +347,6 @@ public interface ViewParent {
* {@link View#TEXT_DIRECTION_LTR},
* {@link View#TEXT_DIRECTION_RTL},
* {@link View#TEXT_DIRECTION_LOCALE}
- *
- * @hide
*/
public int getTextDirection();
@@ -371,8 +355,6 @@ public interface ViewParent {
* See {@link View#setTextAlignment(int)}
*
* @return True if this view parent can resolve the text alignment.
- *
- * @hide
*/
public boolean canResolveTextAlignment();
@@ -381,8 +363,6 @@ public interface ViewParent {
* See {@link View#setTextAlignment(int)}
*
* @return True if this view parent text alignment is resolved.
- *
- * @hide
*/
public boolean isTextAlignmentResolved();
@@ -397,8 +377,6 @@ public interface ViewParent {
* {@link View#TEXT_ALIGNMENT_TEXT_END},
* {@link View#TEXT_ALIGNMENT_VIEW_START},
* {@link View#TEXT_ALIGNMENT_VIEW_END}
- *
- * @hide
*/
public int getTextAlignment();
}