|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
JavaNode.java | - | - | - | - |
|
1 | package net.sourceforge.pmd.ast; | |
2 | ||
3 | public interface JavaNode extends Node { | |
4 | ||
5 | /** | |
6 | * Accept the visitor. * | |
7 | */ | |
8 | public Object jjtAccept(JavaParserVisitor visitor, Object data); | |
9 | } |
|