git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@888027
13f79535-47bb-0310-9956-
ffa450edef68
public static final byte T_SHORT = 9;
/** Int data type. */
public static final byte T_INT = 10;
-
- /** Object data type. */
- public static final byte T_OBJECT = 14;
+
/** Unknown data type. */
public static final byte T_UNKNOWN = 15;
private Constant[] constant_pool;
- /**
- * @param constant_pool Array of constants
- */
- public ConstantPool(Constant[] constant_pool) {
- setConstantPool(constant_pool);
- }
+
/**
}
-
-
-
- /**
- * @param constant_pool
- */
- public void setConstantPool( Constant[] constant_pool ) {
- this.constant_pool = constant_pool;
- constant_pool_count = (constant_pool == null) ? 0 : constant_pool.length;
- }
-
-
/**
* @return String representation.
*/
}
- /**
- * @param bytes Data
- */
- public ConstantUtf8(String bytes) {
- super(Constants.CONSTANT_Utf8);
- if (bytes == null) {
- throw new IllegalArgumentException("bytes must not be null!");
- }
- this.bytes = bytes;
- }
+
/**