Package com.thoughtworks.qdox.model
Interface JavaModuleDescriptor
-
- All Known Implementing Classes:
DefaultJavaModuleDescriptor
public interface JavaModuleDescriptor
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
JavaModuleDescriptor.JavaExports
Represents the following ModuleStatement:
exports SOURCE [to TARGET{, TARGET}];
where SOURCE matches a PackageName and TARGET matches a ModuleNamestatic interface
JavaModuleDescriptor.JavaOpens
Represents the following ModuleStatement:
opens SOURCE [to TARGET{, TARGET}];
where SOURCE matches a PackageName and TARGET matches a ModuleNamestatic interface
JavaModuleDescriptor.JavaProvides
Represents the following ModuleStatement:
provides SERVICE with PROVIDER;
where SERVICE matches a TypeName and TARGET matches a TypeNamestatic interface
JavaModuleDescriptor.JavaRequires
Represents the following ModuleStatement:
requires [public] [static] NAME;
Where NAME matches a ModuleNamestatic interface
JavaModuleDescriptor.JavaUses
Represents the following ModuleStatement:
uses NAME;
Where NAME matches a TypeName
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<JavaModuleDescriptor.JavaExports>
getExports()
java.lang.String
getName()
java.util.Collection<JavaModuleDescriptor.JavaOpens>
getOpens()
java.util.Collection<JavaModuleDescriptor.JavaProvides>
getProvides()
java.util.Collection<JavaModuleDescriptor.JavaRequires>
getRequires()
java.util.Collection<JavaModuleDescriptor.JavaUses>
getUses()
boolean
isOpen()
-
-
-
Method Detail
-
isOpen
boolean isOpen()
-
getName
java.lang.String getName()
-
getExports
java.util.Collection<JavaModuleDescriptor.JavaExports> getExports()
-
getOpens
java.util.Collection<JavaModuleDescriptor.JavaOpens> getOpens()
-
getProvides
java.util.Collection<JavaModuleDescriptor.JavaProvides> getProvides()
-
getRequires
java.util.Collection<JavaModuleDescriptor.JavaRequires> getRequires()
-
getUses
java.util.Collection<JavaModuleDescriptor.JavaUses> getUses()
-
-