01: /*******************************************************************************
02: * Copyright (c) 2000, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.jdt.core.util;
11:
12: /**
13: * Description of a constant value attribute as described in the JVM
14: * specifications.
15: *
16: * This interface may be implemented by clients.
17: *
18: * @since 2.0
19: */
20: public interface IConstantValueAttribute extends IClassFileAttribute {
21:
22: /**
23: * Answer back the constant value index.
24: *
25: * @return the constant value index
26: */
27: int getConstantValueIndex();
28:
29: /**
30: * Answer back the constant pool entry that represents the constant
31: * value of this attribute.
32: *
33: * @return the constant pool entry that represents the constant
34: * value of this attribute
35: */
36: IConstantPoolEntry getConstantValue();
37: }
|