All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.as.text_understanding.representation.tree.TreeNode Maven / Gradle / Ivy

The newest version!
package com.as.text_understanding.representation.tree;

import java.util.List;

/**
 * Represents a tree-node in a constituency parse-tree.
 *
 * 
* Date: Feb 24, 2016 * @author Asher Stern * */ public class TreeNode { public TreeNode(TreeItem item, List children) { super(); this.item = item; this.children = children; } public TreeItem getItem() { return item; } public List getChildren() { return children; } private final TreeItem item; private final List children; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy