RLPark 1.0.0
Reinforcement Learning Framework in Java

ParentNode.java

Go to the documentation of this file.
00001 package zephyr.plugin.core.api.internal.codeparser.interfaces;
00002 
00003 public interface ParentNode extends CodeNode {
00004   CodeNode getChild(int index);
00005 
00006   CodeNode getChild(String id);
00007 
00008   int nbChildren();
00009 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark