Package com.thoughtworks.qdox.model
Interface JavaModuleDescriptor.JavaRequires
-
- All Known Implementing Classes:
DefaultJavaModuleDescriptor.DefaultJavaRequires
- Enclosing interface:
- JavaModuleDescriptor
public static interface JavaModuleDescriptor.JavaRequires
Represents the following ModuleStatement:
requires [public] [static] NAME;
Where NAME matches a ModuleName
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<java.lang.String>
getModifiers()
JavaModule
getModule()
boolean
isStatic()
boolean
isTransitive()
-
-
-
Method Detail
-
getModule
JavaModule getModule()
-
isTransitive
boolean isTransitive()
-
isStatic
boolean isStatic()
-
getModifiers
java.util.Collection<java.lang.String> getModifiers()
-
-