blob: 40902ae53f9aca61a966445d7b525f63b6b22838 [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 {
Charles Chen78c9d0d2009-07-13 16:22:41 -070024 void utteranceCompleted(String utteranceId);
Jean-Michel Trivi2c0c2af2009-05-21 18:46:10 -070025}