Lucene.Net.QueryParsers.Flexible.Core.Nodes.QueryNodeImpl.GetChildren C# (CSharp) Method

GetChildren() public method

a List for QueryNode object. Returns null, for nodes that do not contain children. All leaf Nodes return null.
public GetChildren ( ) : IList
return IList
        public IList<IQueryNode> GetChildren()
        {
            if (IsLeaf || this.clauses == null)
            {
                return null;
            }
            return new List<IQueryNode>(this.clauses);
        }