{
// Wir checken, fuer welche Datentypen wir einen CSV-Treiber haben
List<IOFormat> formats = new ArrayList<IOFormat>();
try
{
BeanService service = Application.getBootLoader().getBootable(BeanService.class);
ClassFinder finder = Application.getPluginLoader().getManifest(HBCI.class).getClassLoader().getClassFinder();
Class<Format>[] classes = finder.findImplementors(Format.class);
for (Class<Format> c:classes)
{
try
{
Format f = service.get(c);
Class type = f.getType();
if (type == null)
{
Logger.warn("csv format " + c.getName() + " supports no type, skipping");
continue;