net.osomahe.coinacrobat.api.strategy.entity.StrategyParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coinacrobat-api Show documentation
Show all versions of coinacrobat-api Show documentation
The project with APIs to be able to create own strategy
package net.osomahe.coinacrobat.api.strategy.entity;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation for describing strategy parameter in multiple languages.
*
* @author Antonin Stoklasek
*/
@Target(ElementType.METHOD)
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface StrategyParam {
LocalizedText[] name();
LocalizedText[] description();
int index();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy