Home | History | Annotate | Download | only in constant
      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: ICONSTANTVisitor.java,v 1.1.1.1 2004/05/09 16:57:49 vlad_r Exp $
      8  */
      9 package com.vladium.jcd.cls.constant;
     10 
     11 // ----------------------------------------------------------------------------
     12 /**
     13  * @author (C) 2001, Vlad Roubtsov
     14  */
     15 public
     16 interface ICONSTANTVisitor
     17 {
     18     // public: ................................................................
     19 
     20     //Object visit (CONSTANT_info constant, Object ctx);
     21 
     22     Object visit (CONSTANT_Class_info constant, Object ctx);
     23 
     24     Object visit (CONSTANT_InterfaceMethodref_info constant, Object ctx);
     25     Object visit (CONSTANT_Methodref_info constant, Object ctx);
     26     Object visit (CONSTANT_Fieldref_info constant, Object ctx);
     27 
     28     Object visit (CONSTANT_Double_info constant, Object ctx);
     29     Object visit (CONSTANT_Float_info constant, Object ctx);
     30     Object visit (CONSTANT_Integer_info constant, Object ctx);
     31     Object visit (CONSTANT_Long_info constant, Object ctx);
     32     Object visit (CONSTANT_String_info constant, Object ctx);
     33 
     34     Object visit (CONSTANT_Utf8_info constant, Object ctx);
     35     Object visit (CONSTANT_NameAndType_info constant, Object ctx);
     36 
     37 } // end of interface
     38 // ----------------------------------------------------------------------------
     39