コード例 #1
0
 public void speak(String text, SpeechType type) {
   if (delegate != null) {
     delegate.speak(text, type);
   }
 }
コード例 #2
0
 public void speak(String text, SpeechType type, boolean doFlush) {
   if (delegate != null) {
     delegate.speak(text, type, doFlush);
   }
 }