| Package | Description |
|---|---|
| com.github.javaparser | |
| com.github.javaparser.ast.modules |
| Modifier and Type | Field and Description |
|---|---|
static ParseStart<ModuleStmt> |
ParseStart.MODULE_DIRECTIVE |
| Modifier and Type | Method and Description |
|---|---|
static ModuleStmt |
JavaParser.parseModuleDirective(String moduleDirective)
Parses a module directive and returns it as a ModuleStmt.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ModuleExportsStmt
An exports directive in module-info.java.
|
class |
ModuleOpensStmt
An opens directive in module-info.java.
|
class |
ModuleProvidesStmt
A provides directive in module-info.java.
|
class |
ModuleRequiresStmt
A require directive in module-info.java.
|
class |
ModuleUsesStmt
A uses directive in module-info.java.
|
| Modifier and Type | Method and Description |
|---|---|
ModuleStmt |
ModuleStmt.clone() |
| Modifier and Type | Method and Description |
|---|---|
NodeList<ModuleStmt> |
ModuleDeclaration.getModuleStmts() |
| Modifier and Type | Method and Description |
|---|---|
ModuleDeclaration |
ModuleDeclaration.addDirective(ModuleStmt directive) |
| Modifier and Type | Method and Description |
|---|---|
ModuleDeclaration |
ModuleDeclaration.setModuleStmts(NodeList<ModuleStmt> moduleStmts) |
| Constructor and Description |
|---|
ModuleDeclaration(NodeList<AnnotationExpr> annotations,
Name name,
boolean isOpen,
NodeList<ModuleStmt> moduleStmts) |
ModuleDeclaration(TokenRange tokenRange,
NodeList<AnnotationExpr> annotations,
Name name,
boolean isOpen,
NodeList<ModuleStmt> moduleStmts)
This constructor is used by the parser and is considered private.
|
Copyright © 2007–2018. All rights reserved.