#FORMAT java package nl.tue.id.dps.swing; import nl.tue.id.dps.*; /** *

Title:

*

Description:

*

Copyright: Copyright (c) 2003

*

Company:

* * @author not attributable * @created March 14, 2003 * @version 1.0 */ public class TPFactoryImpl extends TPFactoryBasicImpl { protected void setTPManifest() { addPresentation(new String[] {"temperature"}, TemperatureTimedPresentation.class, new String[] { "tmp" }); addPresentation(new String[] {"image", "img"}, ImageTimedPresentation.class, new String[] { "jpg","gif","png" }); addPresentation(new String[]{"jmfvideo", "video"}, VideoTimedPresentation.class, new String[] { "avi", "mvr","mpg","mov","swf", "spl" }); addPresentation(new String[]{"jmpaudio", "audio"}, AudioTimedPresentation.class, new String[] { "aif", "aiff","avi","gsm","mid","mp2","mp3","mov","au","wav" }); addPresentation(new String[]{"smil", "itml"}, ITMLTimedPresentation.class, new String[] { "smi","smil","itm","itml" }); addPresentation(new String[] {"html", "htm"}, HTMLTimedPresentation.class, new String[] { "htm","html" }); addPresentation(new String[] {"xul"}, ThinletTimedPresentation.class, new String[] { "xul" }); addPresentation(new String[] {"lirc"}, LIRCTimedPresentation.class, new String[] { "lirc" }); addPresentation(new String[] {"behavior"}, TonyTimedPresentation.class, new String[] { "bhv" }); } }