View Javadoc

1   package nl.tudelft.goal.emohawk.util;
2   
3   import nl.tudelft.goal.emohawk.translators.EmoticonTypeTranslator;
4   import cz.cuni.amis.pogamut.emohawk.agent.module.sensomotoric.EmoticonType;
5   
6   public class PrintEmoticonTypes {
7   
8   	/**
9   	 * @param args
10  	 */
11  	public static void main(String[] args) {
12  		EmoticonTypeTranslator t = new EmoticonTypeTranslator();
13  		System.out.println(t.getValidValues());
14  
15  	}
16  
17  }