예제 #1
0
파일: IOFacade.java 프로젝트: elazarg/tvla
 /** Loads the different output converter implementations into ImplementationBundles. */
 private void initImplementations() {
   PropertiesEx props = new PropertiesEx("/tvla/io/tvla.io.properties");
   List implementations = props.getStringListProperty("implementations", Collections.EMPTY_LIST);
   for (Iterator i = implementations.iterator(); i.hasNext(); ) {
     String implementation = (String) i.next();
     this.implementations.put(implementation, new ImplementationsBundle(implementation));
   }
 }