01: /*******************************************************************************
02: * Copyright (c) 2004, 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 signature attribute as described in the JVM specifications
14: * (added in J2SE 1.5).
15: *
16: * This interface may be implemented by clients.
17: *
18: * @since 3.0
19: */
20: public interface ISignatureAttribute extends IClassFileAttribute {
21:
22: /**
23: * Answer back the signature index as described in the JVM specifications.
24: *
25: * @return the signature index as described in the JVM specifications
26: */
27: int getSignatureIndex();
28:
29: /**
30: * Answer back the signature as described in the JVM specifications.
31: *
32: * @return the signature as described in the JVM specifications
33: */
34: char[] getSignature();
35:
36: }
|