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

org.bitbucket.gkutiel.at.CmdLoader Maven / Gradle / Ivy

package org.bitbucket.gkutiel.at;

import static java.lang.Class.forName;

public class CmdLoader {
	static Cmd loadCmd(final At at) {
		try {
			final Cmd cmd = (Cmd) forName("cmd.$" + at.type).newInstance();
			cmd.args = at.args;
			return cmd;
		} catch (final Exception e) {
			throw new RuntimeException(e);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy