[260230] Documentation for visualization components
diff --git a/plugins/org.eclipse.actf.ai.voice/src/org/eclipse/actf/ai/tts/ISAPIEngine.java b/plugins/org.eclipse.actf.ai.voice/src/org/eclipse/actf/ai/tts/ISAPIEngine.java
index 73ba5d4..7ac30a3 100644
--- a/plugins/org.eclipse.actf.ai.voice/src/org/eclipse/actf/ai/tts/ISAPIEngine.java
+++ b/plugins/org.eclipse.actf.ai.voice/src/org/eclipse/actf/ai/tts/ISAPIEngine.java
@@ -6,11 +6,16 @@
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
- * kentarou - initial API and implementation
+ * Kentarou FUKUDA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.ai.tts;
+/**
+ * ISAPIEngine interface defines text synthesis interface to be
+ * implemented by SAPI5 text-to-speech engine
+ * @see ITTSEngine
+ */
public interface ISAPIEngine extends ITTSEngine {
public static final int SVSFDefault = 0, SVSFlagsAsync = 1,
diff --git a/plugins/org.eclipse.actf.ai.voice/src/org/eclipse/actf/ai/tts/package-info.java b/plugins/org.eclipse.actf.ai.voice/src/org/eclipse/actf/ai/tts/package-info.java
new file mode 100644
index 0000000..acba8a3
--- /dev/null
+++ b/plugins/org.eclipse.actf.ai.voice/src/org/eclipse/actf/ai/tts/package-info.java
@@ -0,0 +1,16 @@
+/*******************************************************************************
+ * Copyright (c) 2009 IBM Corporation and Others
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Kentarou FUKUDA - initial API and implementation
+ *******************************************************************************/
+
+/**
+ * This package contains interfaces and utilities for low level text synthesis.
+ *
+ */
+package org.eclipse.actf.ai.tts;
\ No newline at end of file
diff --git a/plugins/org.eclipse.actf.ai.voice/src/org/eclipse/actf/ai/voice/IVoice.java b/plugins/org.eclipse.actf.ai.voice/src/org/eclipse/actf/ai/voice/IVoice.java
index cb0b143..345acc0 100644
--- a/plugins/org.eclipse.actf.ai.voice/src/org/eclipse/actf/ai/voice/IVoice.java
+++ b/plugins/org.eclipse.actf.ai.voice/src/org/eclipse/actf/ai/voice/IVoice.java
@@ -62,7 +62,7 @@
* Get current speaking speed
*
* @return speaking speed in range between 0 and 100
- * @see setSpeed
+ * @see #setSpeed(int)
*/
public int getSpeed();