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

com.g2forge.alexandria.command.IConstructorCommand Maven / Gradle / Ivy

There is a newer version: 0.0.18
Show newest version
package com.g2forge.alexandria.command;

import java.io.InputStream;
import java.io.PrintStream;

import com.g2forge.alexandria.command.exit.IExit;
import com.g2forge.alexandria.java.function.IFunction1;

@FunctionalInterface
public interface IConstructorCommand extends IStructuredCommand {
	public static void main(String[] args, IFunction1, ? extends IConstructorCommand> factory) throws Throwable {
		IStandardCommand.main(args, IStandardCommand.of(factory));
	}

	public IExit invoke() throws Throwable;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy