
org.fugerit.java.tool.ToolHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fj-tool Show documentation
Show all versions of fj-tool Show documentation
Fugerit Java Tool Library for JDK 1.8 and up
The newest version!
package org.fugerit.java.tool;
import java.util.Properties;
/**
* Interface for every tool in this project.
*
* @author Fugerit
*
*/
public interface ToolHandler {
/**
* Exit code for operations ended with no errors.
*/
public static final int EXIT_OK = 0;
/**
* Does the operation of this handler.
*
* @param params the params
* @return the result code of the operation
*/
public int handle( Properties params );
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy