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 IExceptionAttribute extends IClassFileAttribute {
21:
22: /**
23: * Answer back the number of exceptions of the exception attribute.
24: *
25: * @return the number of exceptions of the exception attribute
26: */
27: int getExceptionsNumber();
28:
29: /**
30: * Answer back the exception names of the exception attribute. Answers an
31: * empty collection if none.
32: *
33: * @return the exception names of the exception attribute. Answers an
34: * empty collection if none
35: */
36: char[][] getExceptionNames();
37:
38: /**
39: * Answer back the exception indexes of the exception attribute. Answers an
40: * empty collection if none.
41: *
42: * @return the exception indexes of the exception attribute. Answers an
43: * empty collection if none
44: */
45: int[] getExceptionIndexes();
46: }
|