animationevent.java

来自「一个非常有意思,并且带图像的语音项目,能读出相应的英文,并有口型」· Java 代码 · 共 24 行

JAVA
24
字号
package com.sun.speech.freetts.relp;

/**
 * @author Berthold Daum
 *
 * Creation date: 01.10.2003
 * 
 */
public class AnimationEvent {

	public int endTime;
	public String phone;

	/**
	 * Constructor
	 * @param endTime - the end time of the phoneme in msec
	 * @param phone - the phoneme string
	 */
	public AnimationEvent(int endTime, String phone) {
		this.endTime = endTime;
		this.phone = phone;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?