~ubuntu-branches/ubuntu/wily/parboiled/wily-proposed

« back to all changes in this revision

Viewing changes to parboiled-core/src/main/java/org/parboiled/trees/GraphNode.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2014-11-10 21:10:42 UTC
  • Revision ID: package-import@ubuntu.com-20141110211042-wcmfz25icr5ituj5
Tags: upstream-1.1.6
ImportĀ upstreamĀ versionĀ 1.1.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2009-2011 Mathias Doenitz
 
3
 *
 
4
 * Licensed under the Apache License, Version 2.0 (the "License");
 
5
 * you may not use this file except in compliance with the License.
 
6
 * You may obtain a copy of the License at
 
7
 *
 
8
 * http://www.apache.org/licenses/LICENSE-2.0
 
9
 *
 
10
 * Unless required by applicable law or agreed to in writing, software
 
11
 * distributed under the License is distributed on an "AS IS" BASIS,
 
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
 * See the License for the specific language governing permissions and
 
14
 * limitations under the License.
 
15
 */
 
16
 
 
17
package org.parboiled.trees;
 
18
 
 
19
import java.util.List;
 
20
 
 
21
/**
 
22
 * A node in a directed graph (that may have cycles).
 
23
 * The children list must not contain null entries.
 
24
 *
 
25
 * @param <T> the actual implementation type of this graph node
 
26
 */
 
27
public interface GraphNode<T extends GraphNode<T>> {
 
28
 
 
29
    /**
 
30
     * Returns the sub nodes of this node.
 
31
     *
 
32
     * @return the sub nodes
 
33
     */
 
34
    List<T> getChildren();
 
35
 
 
36
}