1 package com.atlassian.maven.plugins.amps.codegen.annotations;
2
3 import java.lang.annotation.*;
4
5 /**
6 * @since 3.6
7 */
8 @Documented
9 @Target(ElementType.TYPE)
10 @Retention(RetentionPolicy.RUNTIME)
11 @Inherited
12 public @interface ModuleCreatorClass
13 {
14 public Class value();
15 }