RLPark 1.0.0
Reinforcement Learning Framework in Java

CodeParsers.java

Go to the documentation of this file.
00001 package zephyr.plugin.core.api.internal.codeparser;
00002 
00003 import zephyr.plugin.core.api.internal.codeparser.interfaces.FieldParser;
00004 import zephyr.plugin.core.api.internal.codeparser.parsers.CodeTreeParser;
00005 import zephyr.plugin.core.api.monitoring.abstracts.LabeledCollection;
00006 
00007 public class CodeParsers {
00008 
00009   static public void registerLabeledCollection(LabeledCollection labeledCollection, String... ids) {
00010     CodeTreeParser.registerLabeledCollection(labeledCollection, ids);
00011   }
00012 
00013   static public void registerParser(FieldParser parser) {
00014     CodeTreeParser.registerParser(parser);
00015   }
00016 
00017 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark