blob: ebda6d8ce84b7bbf1ce8a6313c60e9cd8cb0c168 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017, 2019 IBM Corporation.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.core;
/**
* Represents a Java module descriptor. The module description could either come from source or binary.
* A simple module looks like the following:
* <pre>
* module my.module {
* exports my.pack1;
* exports my.pack2;
* requires java.sql;
* }
* </pre>
*
* @noimplement This interface is not intended to be implemented by clients.
* @since 3.14
*/
public interface IModuleDescription extends IMember, IAnnotatable {
/**
* Answer the names of all modules directly required from this module.
*
* @return a non-null array of module names
* @since 3.14
*/
String[] getRequiredModuleNames() throws JavaModelException;
/**
* Get provided service names for this module.
*
* @return a non-null array of provided service names
* @throws JavaModelException
* @since 3.18
*/
String[] getProvidedServiceNames() throws JavaModelException;
/**
* Get used service names for this module.
*
* @return a non-null array of used service names
* @throws JavaModelException
* @since 3.18
*/
String[] getUsedServiceNames() throws JavaModelException;
/**
*
* @return true if automatic module, else false
* @since 3.14
*/
default boolean isAutoModule() {
return false;
}
}