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

prism.framework.ModuleScope Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2014 Ink Applications, LLC.
 * Distributed under the MIT License (http://opensource.org/licenses/MIT)
 */
package prism.framework;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Defines which module a target class should be a part of when running
 * module injections.
 *
 * @author Maxwell Vandervelde ([email protected])
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ModuleScope
{
    /**
     * The Module class to include in the injection scope.
     */
    Class value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy