RLPark 1.0.0
Reinforcement Learning Framework in Java

LabelProvider.java

Go to the documentation of this file.
00001 package zephyr.plugin.core.api.monitoring.annotations;
00002 
00003 import java.lang.annotation.ElementType;
00004 import java.lang.annotation.Retention;
00005 import java.lang.annotation.RetentionPolicy;
00006 import java.lang.annotation.Target;
00007 
00008 @Retention(RetentionPolicy.RUNTIME)
00009 @Target({ ElementType.METHOD })
00010 public @interface LabelProvider {
00011   String[] ids();
00012 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark