1 21 package oracle.toplink.essentials.internal.parsing; 23 24 32 public class CollectionMemberDeclNode extends IdentificationVariableDeclNode { 33 34 private Node path; 35 36 37 public Node getPath() { 38 return path; 39 } 40 41 42 public void setPath(Node node) { 43 path = node; 44 } 45 46 50 public void validate(ParseTreeContext context) { 51 super.validate(context); 52 if (path != null) { 53 path.validate(context); 54 setType(path.getType()); 55 } 56 } 57 } 58 | Popular Tags |