All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.plantuml.flashcode.FlashCodeFactory Maven / Gradle / Ivy

There is a newer version: 1.2024.8
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.flashcode;

public class FlashCodeFactory {
	// ::remove folder when __CORE__

	public static FlashCodeUtils getFlashCodeUtils() {
		final String name = "net.sourceforge.plantuml.flashcode.FlashCodeUtilsZxing";
		try {
			final Class cl = Class.forName(name);
			return (FlashCodeUtils) cl.newInstance();
		} catch (ClassNotFoundException e) {
			return new FlashCodeUtilsNone();
		} catch (InstantiationException e) {
			return new FlashCodeUtilsNone();
		} catch (IllegalAccessException e) {
			return new FlashCodeUtilsNone();
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy