blob: f0287d4a3b0acb95234000d6446043c70e41c8b2 [file] [log] [blame]
Jean-Michel Trivi2c0c2af2009-05-21 18:46:10 -07001/*
Bjorn Bringert50e657b2011-03-08 16:00:40 +00002 * Copyright (C) 2011 The Android Open Source Project
Jean-Michel Trivi2c0c2af2009-05-21 18:46:10 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Charles Chenf85aa5a2009-06-10 10:39:55 -070016package android.speech.tts;
Jean-Michel Trivi2c0c2af2009-05-21 18:46:10 -070017
18/**
Bjorn Bringert50e657b2011-03-08 16:00:40 +000019 * Interface for callbacks from TextToSpeechService
Jean-Michel Trivi2c0c2af2009-05-21 18:46:10 -070020 *
21 * {@hide}
22 */
Bjorn Bringert50e657b2011-03-08 16:00:40 +000023oneway interface ITextToSpeechCallback {
Narayan Kamath754c72e2011-11-09 14:22:32 +000024 void onStart(String utteranceId);
25 void onDone(String utteranceId);
26 void onError(String utteranceId);
Jean-Michel Trivi2c0c2af2009-05-21 18:46:10 -070027}