blob: dbb751ee096c4ce4300e8478a0b1737840d94dc6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 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.aspectj.org.eclipse.jdt.core.util;
/**
* Description of an exports/opens info as described in the JVM specifications 4.7.25
*
* @noimplement This interface is not intended to be implemented by clients.
* @since 3.14
*/
public interface IPackageVisibilityInfo {
/**
* Answer back the exports/opens index.
*
* @return the exports/opens index
*/
int getIndex();
/**
* Answer back the exports/opens package.
*
* @return the exports/opens package
*/
char[] getPackageName();
/**
* Answer back the exports/opens flags.
*
* @return the exports/opens flags
*/
int getFlags();
/**
* Answer back the number of targets, zero if none.
*
* @return the number of targets, zero if none.
*/
int getTargetsCount();
/**
* Answer back the array of target module indices.
*
* @return the array of target module indices.
*/
int[] getTargetModuleIndices();
/**
* Answer back the array of target module names.
*
* @return the array of target module names.
*/
char[][] getTargetModuleNames();
}