You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
421 B
20 lines
421 B
11 years ago
|
package mightypork.utils.annotations;
|
||
11 years ago
|
|
||
11 years ago
|
import java.lang.annotation.Documented;
|
||
11 years ago
|
import java.lang.annotation.ElementType;
|
||
11 years ago
|
import java.lang.annotation.Retention;
|
||
|
import java.lang.annotation.RetentionPolicy;
|
||
11 years ago
|
import java.lang.annotation.Target;
|
||
|
|
||
11 years ago
|
/**
|
||
11 years ago
|
* Marks a static factory method
|
||
11 years ago
|
*
|
||
|
* @author MightyPork
|
||
|
*/
|
||
11 years ago
|
@Retention(RetentionPolicy.SOURCE)
|
||
11 years ago
|
@Target(ElementType.METHOD)
|
||
|
@Documented
|
||
|
public @interface FactoryMethod {
|
||
|
|
||
11 years ago
|
}
|