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

org.daisy.common.spi.CreateOnStart Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package org.daisy.common.spi;

/**
 * Tag interface for indicating that a component is to be created immediately
 * when the program starts.
 *
 * This can be accomplished by making the component available through
 * META-INF/services and executing the following code in the program's main
 * method:
 *
 * 
 * {@code
 * for (CreateOnStart c : ServiceLoader.load(CreateOnStart.class));
 * }
 * 
*/ public interface CreateOnStart {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy