Home | History | Annotate | Download | only in proxy

Lines Matching defs:sbuf

151         StringBuffer sbuf = new StringBuffer();
152 sbuf.append('(');
154 makeDesc(sbuf, params[i]);
156 sbuf.append(')');
157 makeDesc(sbuf, retType);
158 return sbuf.toString();
161 private static void makeDesc(StringBuffer sbuf, Class type) {
163 sbuf.append('[');
164 makeDesc(sbuf, type.getComponentType());
168 sbuf.append('V');
170 sbuf.append('I');
172 sbuf.append('B');
174 sbuf.append('J');
176 sbuf.append('D');
178 sbuf.append('F');
180 sbuf.append('C');
182 sbuf.append('S');
184 sbuf.append('Z');
189 sbuf.append('L').append(type.getName().replace('.', '/'))