KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > vladium > jcd > cls > attribute > IAttributeVisitor


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

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

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

20     Object JavaDoc visit (GenericAttribute_info attribute, Object JavaDoc ctx);
21     
22     Object JavaDoc visit (CodeAttribute_info attribute, Object JavaDoc ctx);
23     Object JavaDoc visit (ConstantValueAttribute_info attribute, Object JavaDoc ctx);
24     Object JavaDoc visit (ExceptionsAttribute_info attribute, Object JavaDoc ctx);
25     Object JavaDoc visit (LineNumberTableAttribute_info attribute, Object JavaDoc ctx);
26     Object JavaDoc visit (SourceFileAttribute_info attribute, Object JavaDoc ctx);
27     Object JavaDoc visit (SyntheticAttribute_info attribute, Object JavaDoc ctx);
28     Object JavaDoc visit (BridgeAttribute_info attribute, Object JavaDoc ctx);
29     Object JavaDoc visit (InnerClassesAttribute_info attribute, Object JavaDoc ctx);
30
31 } // end of interface
32
// ----------------------------------------------------------------------------
33
Popular Tags