equal
deleted
inserted
replaced
23 * questions. |
23 * questions. |
24 */ |
24 */ |
25 |
25 |
26 package com.sun.java.util.jar.pack; |
26 package com.sun.java.util.jar.pack; |
27 |
27 |
28 import java.io.*; |
28 import com.sun.java.util.jar.pack.ConstantPool.Entry; |
29 import java.util.*; |
29 import com.sun.java.util.jar.pack.ConstantPool.Index; |
30 import com.sun.java.util.jar.pack.ConstantPool.*; |
30 import java.io.ByteArrayOutputStream; |
|
31 import java.io.IOException; |
|
32 import java.util.ArrayList; |
|
33 import java.util.Arrays; |
|
34 import java.util.Collection; |
|
35 import java.util.Collections; |
|
36 import java.util.HashMap; |
|
37 import java.util.List; |
|
38 import java.util.Map; |
31 |
39 |
32 /** |
40 /** |
33 * Represents an attribute in a class-file. |
41 * Represents an attribute in a class-file. |
34 * Takes care to remember where constant pool indexes occur. |
42 * Takes care to remember where constant pool indexes occur. |
35 * Implements the "little language" of Pack200 for describing |
43 * Implements the "little language" of Pack200 for describing |