Home | History | Annotate | Download | only in printer

Lines Matching defs:arrayType

319     public void visit(final ArrayType n, final Void arg) {
320 final List<ArrayType> arrayTypeBuffer = new LinkedList<>();
322 while (type instanceof ArrayType) {
323 final ArrayType arrayType = (ArrayType) type;
324 arrayTypeBuffer.add(arrayType);
325 type = arrayType.getComponentType();
329 for (ArrayType arrayType : arrayTypeBuffer) {
330 printAnnotations(arrayType.getAnnotations(), true, arg);
427 ArrayType arrayType = null;
430 if (arrayType == null) {
431 arrayType = (ArrayType) type;
433 arrayType = (ArrayType) arrayType.getComponentType();
435 printAnnotations(arrayType.getAnnotations(), true, arg);