RLPark 1.0.0
Reinforcement Learning Framework in Java

ObjectCollectionNode.java

Go to the documentation of this file.
00001 package zephyr.plugin.core.api.internal.codeparser.codetree;
00002 
00003 import java.lang.reflect.Field;
00004 
00005 import zephyr.plugin.core.api.internal.codeparser.interfaces.ParentNode;
00006 
00007 
00008 public class ObjectCollectionNode extends ClassNode {
00009   public ObjectCollectionNode(String label, ParentNode parent, Object instance, Field parentField) {
00010     super(label, parent, instance, parentField);
00011   }
00012 
00013   public Object children() {
00014     return null;
00015   }
00016 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark