KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > python > parser > ast > unaryopType


1 // Autogenerated AST node
2
package org.python.parser.ast;
3
4 public interface unaryopType {
5     public static final int Invert = 1;
6     public static final int Not = 2;
7     public static final int UAdd = 3;
8     public static final int USub = 4;
9
10     public static final String JavaDoc[] unaryopTypeNames = new String JavaDoc[] {
11         "<undef>",
12         "Invert",
13         "Not",
14         "UAdd",
15         "USub",
16     };
17 }
18
Popular Tags