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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
/*
* Javassist, a Java-bytecode translator toolkit.
* Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. Alternatively, the contents of this file may be used under
* the terms of the GNU Lesser General Public License Version 2.1 or later,
* or the Apache License Version 2.0.
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*/
package javassist;
/**
* An instance of <code>CtPrimitiveType</code> represents a primitive type.
* It is obtained from <code>CtClass</code>.
*/
public final class CtPrimitiveType extends CtClass {
private char descriptor;
private String wrapperName;
private String getMethodName;
private String mDescriptor;
private int returnOp;
private int arrayType;
private int dataSize;
CtPrimitiveType(String name, char desc, String wrapper,
String methodName, String mDesc, int opcode, int atype,
int size) {
super(name);
descriptor = desc;
wrapperName = wrapper;
getMethodName = methodName;
mDescriptor = mDesc;
returnOp = opcode;
arrayType = atype;
dataSize = size;
}
/**
* Returns <code>true</code> if this object represents a primitive
* Java type: boolean, byte, char, short, int, long, float, double,
* or void.
*/
@Override
public boolean isPrimitive() { return true; }
/**
* Returns the modifiers for this type.
* For decoding, use <code>javassist.Modifier</code>.
*
* @see Modifier
*/
@Override
public int getModifiers() {
return Modifier.PUBLIC | Modifier.FINAL;
}
/**
* Returns the descriptor representing this type.
* For example, if the type is int, then the descriptor is I.
*/
public char getDescriptor() { return descriptor; }
/**
* Returns the name of the wrapper class.
* For example, if the type is int, then the wrapper class is
* <code>java.lang.Integer</code>.
*/
public String getWrapperName() { return wrapperName; }
/**
* Returns the name of the method for retrieving the value
* from the wrapper object.
* For example, if the type is int, then the method name is
* <code>intValue</code>.
*/
public String getGetMethodName() { return getMethodName; }
/**
* Returns the descriptor of the method for retrieving the value
* from the wrapper object.
* For example, if the type is int, then the method descriptor is
* <code>()I</code>.
*/
public String getGetMethodDescriptor() { return mDescriptor; }
/**
* Returns the opcode for returning a value of the type.
* For example, if the type is int, then the returned opcode is
* <code>javassit.bytecode.Opcode.IRETURN</code>.
*/
public int getReturnOp() { return returnOp; }
/**
* Returns the array-type code representing the type.
* It is used for the newarray instruction.
* For example, if the type is int, then this method returns
* <code>javassit.bytecode.Opcode.T_INT</code>.
*/
public int getArrayType() { return arrayType; }
/**
* Returns the data size of the primitive type.
* If the type is long or double, this method returns 2.
* Otherwise, it returns 1.
*/
public int getDataSize() { return dataSize; }
}
|