blob: 6fd5cfac77ae9862cb3f5eb626d305da61343c16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/* *******************************************************************
* Copyright (c) 2004 IBM
* All rights reserved.
* This program and the accompanying materials are made available
* under the terms of the Eclipse Public License v1.0
* which accompanies this distribution and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Andy Clement - initial implementation {date}
* ******************************************************************/
package org.aspectj.apache.bcel.generic.annotation;
import java.io.DataOutputStream;
import java.io.IOException;
import org.aspectj.apache.bcel.classfile.ConstantUtf8;
import org.aspectj.apache.bcel.classfile.annotation.ClassElementValue;
import org.aspectj.apache.bcel.classfile.annotation.ElementValue;
import org.aspectj.apache.bcel.generic.ConstantPoolGen;
import org.aspectj.apache.bcel.generic.ObjectType;
public class ClassElementValueGen extends ElementValueGen {
// For primitive types and string type, this points to the value entry in the cpool
// For 'class' this points to the class entry in the cpool
private int idx;
protected ClassElementValueGen(int typeIdx,ConstantPoolGen cpool) {
super(ElementValueGen.CLASS,cpool);
this.idx = typeIdx;
}
public ClassElementValueGen(ObjectType t,ConstantPoolGen cpool) {
super(ElementValueGen.CLASS,cpool);
//this.idx = cpool.addClass(t);
idx = cpool.addUtf8(t.getSignature());
}
/**
* Return immutable variant of this ClassElementValueGen
*/
public ElementValue getElementValue() {
return new ClassElementValue(type,idx,cpGen.getConstantPool());
}
public ClassElementValueGen(ClassElementValue value, ConstantPoolGen cpool,boolean copyPoolEntries) {
super(CLASS,cpool);
if (copyPoolEntries) {
//idx = cpool.addClass(value.getClassString());
idx = cpool.addUtf8(value.getClassString());
} else {
idx = value.getIndex();
}
}
public int getIndex() {
return idx;
}
public String getClassString() {
ConstantUtf8 cu8 = (ConstantUtf8)getConstantPool().getConstant(idx);
return cu8.getBytes();
// ConstantClass c = (ConstantClass)getConstantPool().getConstant(idx);
// ConstantUtf8 utf8 = (ConstantUtf8)getConstantPool().getConstant(c.getNameIndex());
// return utf8.getBytes();
}
public String stringifyValue() {
return getClassString();
}
public void dump(DataOutputStream dos) throws IOException {
dos.writeByte(type); // u1 kind of value
dos.writeShort(idx);
}
}
|