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: * This class represents a stack map table attribute.
14: *
15: * This interface may be implemented by clients.
16: *
17: * @since 3.2
18: */
19: public interface IStackMapTableAttribute extends IClassFileAttribute {
20:
21: /**
22: * Answer back the number of stack map frames of this atribute as specified in
23: * the JVM specifications.
24: *
25: * @return the number of stack map frames of this atribute as specified in
26: * the JVM specifications
27: */
28: int getNumberOfEntries();
29:
30: /**
31: * Answer back the stack map frames for this attribute as specified
32: * in the JVM specifications.
33: *
34: * @return the stack map frames for this attribute as specified
35: * in the JVM specifications
36: */
37: IStackMapFrame[] getStackMapFrame();
38: }
|