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

com.martiansoftware.nailgun.NonStaticNail Maven / Gradle / Ivy

The newest version!
package com.martiansoftware.nailgun;

/** Allows providing a instance (non-static) main method.
 *  Potentially helpful for users of JVM languages other than Java.
 * 
 *  Implementations of this interface MUST provide a public, no-args constructor. */
public interface NonStaticNail {
    
    public void nailMain(String[] args);
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy