KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > puppycrawl > tools > checkstyle > bcel > checks > InheritLibrary


1 package com.puppycrawl.tools.checkstyle.bcel.checks;
2
3 import org.apache.bcel.classfile.AccessFlags ;
4 /**
5  * Test data for checking that fields with the same name as fields in
6  * superclasses work, when the superclass is inside an external library.
7  */

8 public abstract class InheritLibrary extends AccessFlags
9 {
10     protected int access_flags;
11 }
12
Popular Tags