am 662cc7a4: add javadoc for getView method

* commit '662cc7a46a44af782a1f697d16b0613498312e1f':
  add javadoc for getView method
This commit is contained in:
Scott Main
2011-01-17 15:09:43 -08:00
committed by Android Git Automerger

View File

@@ -912,6 +912,12 @@ public class Fragment implements ComponentCallbacks, OnCreateContextMenuListener
return null;
}
/**
* Get the root view for the fragment's layout (the one returned by {@link #onCreateView}),
* if provided.
*
* @return The fragment's root view, or null if it has no layout.
*/
public View getView() {
return mView;
}