Add a global access mary constant class

This commit is contained in:
Sébastien Le Maguer 2015-02-19 15:39:47 +01:00
Родитель 973f0f9b23
Коммит 1f986ad0f3
1 изменённых файлов: 15 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,15 @@
package marytts;
/**
* All arbitrary constants used inside MaryTTS are declared here.
*
* (WORK IN PROGRESS)
*
* @author <a href="mailto:slemaguer@coli.uni-saarland.de">Sébastien Le Maguer</a>
*/
public class MaryConstants
{
/** Punction regular expression used to exclude punctuation of the phonetization stage */
public static final String PUNCT_POS_REGEXP = "^[^a-zA-Z]";
}