Adding the Call class (JavaDoc) description.

Change-Id: If0091135df5cfbf6396ddc20207d039e395cbf58
diff --git a/src/com/android/telecomm/Call.java b/src/com/android/telecomm/Call.java
index 3511b7e..a969158 100644
--- a/src/com/android/telecomm/Call.java
+++ b/src/com/android/telecomm/Call.java
@@ -18,6 +18,11 @@
 
 import java.util.Date;
 
+/**
+ *  Encapsulates all aspects of a given phone call throughout its lifecycle, starting
+ *  from the time the call intent was received by Telecomm (vs. the time the call was
+ *  connected etc).
+ */
 final class Call {
 
     /** The handle with which to establish this call. */
diff --git a/src/com/android/telecomm/Switchboard.java b/src/com/android/telecomm/Switchboard.java
index 060b5c1..65ac7f8 100644
--- a/src/com/android/telecomm/Switchboard.java
+++ b/src/com/android/telecomm/Switchboard.java
@@ -39,6 +39,7 @@
  *     that may need to be terminated, see mPendingOutgoingCalls.
  */
 final class Switchboard {
+
     /** Used to identify log entries by this class */
     private static final String TAG = Switchboard.class.getSimpleName();