src/share/classes/com/sun/source/util/SimpleTreeVisitor.java

changeset 1521
71f35e4b93a5
parent 1436
f6f1fd261f57
child 1590
011cf7e0a148
equal deleted inserted replaced
1520:5c956be64b9e 1521:71f35e4b93a5
1 /* 1 /*
2 * Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
258 258
259 public R visitAnnotation(AnnotationTree node, P p) { 259 public R visitAnnotation(AnnotationTree node, P p) {
260 return defaultAction(node, p); 260 return defaultAction(node, p);
261 } 261 }
262 262
263 public R visitAnnotatedType(AnnotatedTypeTree node, P p) {
264 return defaultAction(node, p);
265 }
266
263 public R visitErroneous(ErroneousTree node, P p) { 267 public R visitErroneous(ErroneousTree node, P p) {
264 return defaultAction(node, p); 268 return defaultAction(node, p);
265 } 269 }
266 270
267 public R visitOther(Tree node, P p) { 271 public R visitOther(Tree node, P p) {

mercurial