blob: 97e251461e521433fa6e2bbb0866d7ed5d08f5b9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 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
*
* This is an implementation of an early-draft specification developed under the Java
* Community Process (JCP) and is made available for testing and evaluation purposes
* only. The code is not compatible with any specification of the JCP.
*
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.core.dom;
/**
* Abstract base class of AST nodes that represent module statements.
* There are many kinds of module statements.
*
* <pre>
* ModuleStatement: [ {@link ExportsStatement} |
* {@link RequiresStatement} |
* {@link UsesStatement} |
* {@link ProvidesStatement} ]
* </pre>
*
* @noextend This class is not intended to be subclassed by clients.
* @since 3.13 BETA_JAVA9
*/
public abstract class ModuleStatement extends ASTNode {
ModuleStatement(AST ast) {
super(ast);
unsupportedBelow9();
}
}