forked from tushartushar/DesigniteJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTypeInfo.java
More file actions
77 lines (59 loc) · 1.84 KB
/
TypeInfo.java
File metadata and controls
77 lines (59 loc) · 1.84 KB
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
package Designite.SourceModel;
import java.util.ArrayList;
import java.util.List;
public class TypeInfo {
private SM_Type typeObj;
private boolean primitiveType;
private String objPrimitiveType;
private boolean parametrizedType;
private List<SM_Type> nonPrimitiveTypeParameters = new ArrayList<>();
public SM_Type getTypeObj() {
return typeObj;
}
public void setTypeObj(SM_Type typeObj) {
this.typeObj = typeObj;
}
public boolean isPrimitiveType() {
return primitiveType;
}
public void setPrimitiveType(boolean primitiveType) {
this.primitiveType = primitiveType;
}
public String getObjPrimitiveType() {
return objPrimitiveType;
}
public void setObjPrimitiveType(String objType) {
this.objPrimitiveType = objType;
}
public boolean isParametrizedType() {
return parametrizedType;
}
public void setParametrizedType(boolean parametrizedType) {
this.parametrizedType = parametrizedType;
}
public List<SM_Type> getNonPrimitiveTypeParameters() {
return nonPrimitiveTypeParameters;
}
public String getStringOfNonPrimitiveParameters() {
String output = "[";
for (SM_Type type : nonPrimitiveTypeParameters) {
output += type.getName() + ", ";
}
return removeLastComma(output) + "]";
}
private String removeLastComma(String str) {
return (str.length() > 2) ? str.substring(0, str.length() - 2) : str;
}
public int getNumOfNonPrimitiveParameters() {
return getNonPrimitiveTypeParameters().size();
}
public void addNonPrimitiveTypeParameter(SM_Type element) {
nonPrimitiveTypeParameters.add(element);
}
@Override
public String toString() {
return "TypeInfo [typeObj=" + typeObj + ", primitiveType=" + primitiveType + ", objPrimitiveType=" + objPrimitiveType
+ ", parametrizedType=" + parametrizedType + ", nonPrimitiveTypeParameters="
+ getStringOfNonPrimitiveParameters() + "]";
}
}