blob: 2032b7ca4f0ef2440a1e13830565927155ab4901 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.core.util;
/**
* Description of nest members attribute as described in the JVM
* specifications.
*
* @since 3.16
*/
public interface INestMembersAttribute extends IClassFileAttribute {
/**
* Answer back the number of nest members as specified in
* the JVM specifications.
*
* @return the number of nest members as specified in
* the JVM specifications
*/
int getNumberOfNestMembers();
/**
* Answer back the array of nest member attribute entries as specified in
* the JVM specifications, or an empty array if none.
*
* @return the array of nest member attribute entries as specified in
* the JVM specifications, or an empty array if none
*/
INestMemberAttributeEntry[] getNestMemberAttributesEntries();
}