We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b26522d commit b72e2d0Copy full SHA for b72e2d0
src/gir2java/ConvertedType.java
@@ -92,6 +92,16 @@ public void setJType(JType jType) {
92
this.jType = jType;
93
}
94
95
+ public String getQualifiedType() {
96
+ StringBuilder sb = new StringBuilder();
97
+ if (getNamespace() != null) {
98
+ sb.append(getNamespace());
99
+ sb.append('.');
100
+ }
101
+ sb.append(getType());
102
+ return sb.toString();
103
104
+
105
public ConvertedType pointerTypeTo() {
106
ConvertedType ret = new ConvertedType(this);
107
ret.setCtype(this.getCtype() + "*");
0 commit comments