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: CONSTANT_literal_info.java,v 1.1.1.1 2004/05/09 16:57:49 vlad_r Exp $
8 */
9package com.vladium.jcd.cls.constant;
10
11// ----------------------------------------------------------------------------
12/**
13 * Abstract base for all CONSTANT_XXX_info structures representing literal values
14 * in the constant pool.
15 *
16 * @see CONSTANT_Integer_info
17 * @see CONSTANT_Long_info
18 * @see CONSTANT_Float_info
19 * @see CONSTANT_Double_info
20 * @see CONSTANT_String_info
21 *
22 * @author (C) 2001, Vlad Roubtsov
23 */
24public
25abstract class CONSTANT_literal_info extends CONSTANT_info
26{
27    // public: ................................................................
28
29    // Cloneable: inherited clone() is Ok
30
31    // protected: .............................................................
32
33
34    protected CONSTANT_literal_info ()
35    {
36    }
37
38    // package: ...............................................................
39
40    // private: ...............................................................
41
42} // end of class
43// ----------------------------------------------------------------------------
44