diff options
author | Nancy Chen <nancychen@google.com> | 2014-09-10 21:33:01 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-09-10 21:33:02 +0000 |
commit | 23a7a394f56a11ae53f1a79eb87f19ca5087c121 (patch) | |
tree | 7479af05cf49ad720cc42e41a4b0dacf0773679c /telecomm | |
parent | 4245e161c6ad2afaff5465fc533fd31207e63921 (diff) | |
parent | 56fc25deec15a32ea5f37d7c8c82f16d1bf9d275 (diff) | |
download | frameworks_base-23a7a394f56a11ae53f1a79eb87f19ca5087c121.zip frameworks_base-23a7a394f56a11ae53f1a79eb87f19ca5087c121.tar.gz frameworks_base-23a7a394f56a11ae53f1a79eb87f19ca5087c121.tar.bz2 |
Merge "Add docs to Conference object." into lmp-dev
Diffstat (limited to 'telecomm')
-rw-r--r-- | telecomm/java/android/telecomm/Conference.java | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/telecomm/java/android/telecomm/Conference.java b/telecomm/java/android/telecomm/Conference.java index f9c3ac3..a4f9c2c 100644 --- a/telecomm/java/android/telecomm/Conference.java +++ b/telecomm/java/android/telecomm/Conference.java @@ -50,22 +50,47 @@ public abstract class Conference { private int mCapabilities; private String mDisconnectMessage; + /** + * Constructs a new Conference with a mandatory {@link PhoneAccountHandle} + * + * @param phoneAccount The {@code PhoneAccountHandle} associated with the conference. + */ public Conference(PhoneAccountHandle phoneAccount) { mPhoneAccount = phoneAccount; } + /** + * Returns the {@link PhoneAccountHandle} the conference call is being placed through. + * + * @return A {@code PhoneAccountHandle} object representing the PhoneAccount of the conference. + */ public final PhoneAccountHandle getPhoneAccountHandle() { return mPhoneAccount; } + /** + * Returns the list of connections currently associated with the conference call. + * + * @return A list of {@code Connection} objects which represent the children of the conference. + */ public final List<Connection> getConnections() { return mUnmodifiableChildConnections; } + /** + * Gets the state of the conference call. See {@link Connection} for valid values. + * + * @return A constant representing the state the conference call is currently in. + */ public final int getState() { return mState; } + /** + * Returns the capabilities of a conference. See {@link PhoneCapabilities} for valid values. + * + * @return A bitmask of the {@code PhoneCapabilities} of the conference call. + */ public final int getCapabilities() { return mCapabilities; } @@ -135,7 +160,9 @@ public abstract class Conference { } /** - * Sets the capabilities of a conference. + * Sets the capabilities of a conference. See {@link PhoneCapabilities} for valid values. + * + * @param capabilities A bitmask of the {@code PhoneCapabilities} of the conference call. */ public final void setCapabilities(int capabilities) { if (capabilities != mCapabilities) { @@ -170,7 +197,6 @@ public abstract class Conference { * Removes the specified connection as a child of this conference. * * @param connection The connection to remove. - * @return True if the connection was successfully removed. */ public final void removeConnection(Connection connection) { Log.d(this, "removing %s from %s", connection, mChildConnections); |