KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > vladium > jcd > cls > IClassDefVisitor


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: IClassDefVisitor.java,v 1.1.1.1 2004/05/09 16:57:46 vlad_r Exp $
8  */

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

15 public interface IClassDefVisitor
16 {
17     // public: ................................................................
18

19     Object JavaDoc visit (ClassDef cls, Object JavaDoc ctx);
20     
21     Object JavaDoc visit (IConstantCollection constants, Object JavaDoc ctx);
22     Object JavaDoc visit (IInterfaceCollection interfaces, Object JavaDoc ctx);
23     Object JavaDoc visit (IFieldCollection fields, Object JavaDoc ctx);
24     Object JavaDoc visit (IMethodCollection methods, Object JavaDoc ctx);
25     Object JavaDoc visit (IAttributeCollection attributes, Object JavaDoc ctx);
26
27 } // end of interface
28
// ----------------------------------------------------------------------------
29
Popular Tags