KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > puppycrawl > tools > checkstyle > bcel > generic > PUTSTATICReference


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.generic;
5
6 import org.apache.bcel.generic.ConstantPoolGen;
7 import org.apache.bcel.generic.PUTSTATIC;
8
9 /**
10  * Describe class GETSTATICReference
11  * @author Rick Giles
12  * @version 18-Jun-2003
13  */

14 public class PUTSTATICReference
15     extends FieldReference
16 {
17
18     /**
19      * @param aInstruction
20      * @param aPoolGen
21      */

22     public PUTSTATICReference(
23         PUTSTATIC aInstruction,
24         ConstantPoolGen aPoolGen)
25     {
26         super(aInstruction, aPoolGen);
27     }
28 }
29
Popular Tags