|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| IntegralType.java | - | 100% | 100% | 100% |
|
||||||||||||||
| 1 | package edu.rice.cs.dynamicjava.symbol.type; | |
| 2 | ||
| 3 | import edu.rice.cs.dynamicjava.symbol.*; | |
| 4 | ||
| 5 | /** | |
| 6 | * Class IntegralType, a component of the ASTGen-generated composite hierarchy. | |
| 7 | * Note: null is not allowed as a value for any field. | |
| 8 | * @version Generated automatically by ASTGen at Sat Jun 15 03:00:42 CDT 2013 | |
| 9 | */ | |
| 10 | @SuppressWarnings("unused") | |
| 11 | public abstract class IntegralType extends NumericType { | |
| 12 | ||
| 13 | /** | |
| 14 | * Constructs a IntegralType. | |
| 15 | * @throws java.lang.IllegalArgumentException If any parameter to the constructor is null. | |
| 16 | */ | |
| 17 | 10 | public IntegralType() { |
| 18 | 10 | super(); |
| 19 | } | |
| 20 | ||
| 21 | ||
| 22 | public abstract int generateHashCode(); | |
| 23 | } |
|
||||||||||