KickJava   Java API By Example, From Geeks To Geeks.

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


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 classfile visitor.
8  * @author Rick Giles
9  */

10 public class EmptyClassFileVisitor
11     extends org.apache.bcel.classfile.EmptyVisitor
12 {
13     /** restrict client creation */
14     protected EmptyClassFileVisitor()
15     {
16     }
17 }
Popular Tags