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 source 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 ISourceAttribute extends IClassFileAttribute {
21:
22: /**
23: * Answer back the source file index of this attribute.
24: *
25: * @return the source file index of this attribute
26: */
27: int getSourceFileIndex();
28:
29: /**
30: * Answer back the source file name of this attribute.
31: *
32: * @return the source file name of this attribute
33: */
34: char[] getSourceFileName();
35:
36: }
|