|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
/* |
|
* The Original Code is HAT. The Initial Developer of the |
|
* Original Code is Bill Foote, with contributions from others |
|
* at JavaSoft/Sun. |
|
*/ |
|
|
|
package com.sun.tools.hat.internal.model; |
|
|
|
|
|
|
|
|
|
*/ |
|
public interface ArrayTypeCodes { |
|
// Typecodes for array elements. |
|
|
|
public static final int T_BOOLEAN = 4; |
|
public static final int T_CHAR = 5; |
|
public static final int T_FLOAT = 6; |
|
public static final int T_DOUBLE = 7; |
|
public static final int T_BYTE = 8; |
|
public static final int T_SHORT = 9; |
|
public static final int T_INT = 10; |
|
public static final int T_LONG = 11; |
|
} |