KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > puppycrawl > tools > checkstyle > bcel > EmptyGenericVisitor


1 //Tested with BCEL-5.1
2
//http://jakarta.apache.org/builds/jakarta-bcel/release/v5.1/
3

4 package com.puppycrawl.tools.checkstyle.bcel;
5
6 /**
7  * Default generic visitor
8  * @author Rick Giles
9  */

10 public class EmptyGenericVisitor
11     extends org.apache.bcel.generic.EmptyVisitor
12 {
13     /** Restrict client creation */
14     protected EmptyGenericVisitor()
15     {
16     }
17 }
18
19
Popular Tags