File: MergerTarget.java

package info (click to toggle)
eclipse-emf 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 50,912 kB
  • ctags: 60,697
  • sloc: java: 407,889; xml: 7,165; sh: 200; makefile: 13
file content (21 lines) | stat: -rwxr-xr-x 362 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.castortech.CobolInterpreter.syntaxtree;

/**
 * Grammar production:
 * <pre>
 * f0 -> &lt;ALL&gt;
 * </pre>
 *
 * @generated
 * @unmodifiable
 */
public final class All extends BaseCodeNode implements IBaseCodeNode {
  /**
   * @generated
   */
  public All(final BaseCodeInterpreter interpreter) {
    super(interpreter);
  }
  
  //rest of class
}