/**@class android.text.style.TtsSpan.TelephoneBuilder
@extends android.text.style.TtsSpan.SemioticClassBuilder

 A builder for TtsSpans of type {@link #TYPE_TELEPHONE}.
*/
var TelephoneBuilder = {

/**Sets the {@link #ARG_COUNTRY_CODE} argument.
@param {String} countryCode The country code can be a series of digits
 optionally prefixed with a "+".
@return {Object {android.text.style.TtsSpan.TelephoneBuilder}} This instance.
*/
setCountryCode : function(  ) {},

/**Sets the {@link #ARG_NUMBER_PARTS} argument.
@param {String} numberParts The main telephone number. Can be a series of
     digits and letters separated by spaces, "/", "-" or ".".
@return {Object {android.text.style.TtsSpan.TelephoneBuilder}} This instance.
*/
setNumberParts : function(  ) {},

/**Sets the {@link #ARG_EXTENSION} argument.
@param {String} extension The extension can be a series of digits.
@return {Object {android.text.style.TtsSpan.TelephoneBuilder}} This instance.
*/
setExtension : function(  ) {},


};