KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > vladium > jcd > opcodes > IOpcodeVisitor


1 /* Copyright (C) 2003 Vladimir Roubtsov. All rights reserved.
2  *
3  * This program and the accompanying materials are made available under
4  * the terms of the Common Public License v1.0 which accompanies this distribution,
5  * and is available at http://www.eclipse.org/legal/cpl-v10.html
6  *
7  * $Id: IOpcodeVisitor.java,v 1.1.1.1 2004/05/09 16:57:51 vlad_r Exp $
8  */

9 package com.vladium.jcd.opcodes;
10
11 // ----------------------------------------------------------------------------
12
/**
13  * @author Vlad Roubtsov, (C) 2003
14  */

15 public
16 interface IOpcodeVisitor
17 {
18     // public: ................................................................
19

20     void visit (int opcode, boolean wide, int offset, Object JavaDoc ctx);
21
22 } // end of interface
23
// ----------------------------------------------------------------------------
24
Popular Tags