Uses of Interface
com.thoughtworks.qdox.model.JavaModule
-
Packages that use JavaModule Package Description com.thoughtworks.qdox Provides classes to start constructing a java projectcom.thoughtworks.qdox.builder Provides classes which transform the structs from the JavaParser to the Java model elementscom.thoughtworks.qdox.builder.impl Provides the default implementation of the classes which transform the structs from the JavaParser to the Java model elementscom.thoughtworks.qdox.library Provides classes to construct a classloader-like structure of libraries There are two types of ClassLibraryBuilders:SortedClassLibraryBuilder
, which bundles the libraries by typeOrderedClassLibraryBuilder
, which respects the order of added libraries There are four types of ClassLibraries:ClassLoaderLibrary
, which uses the classpath to search for sources or binariesSourceLibrary
, which uses a specific sourcefileSourceFolderLibrary
, which tries to locate sourcefiles by translating the package to foldersClassNameLibrary
, which generates an anonymous class, as if it would existcom.thoughtworks.qdox.model Provides classes reflecting the Java model elements.com.thoughtworks.qdox.model.impl Provides the default implementation of the classes reflecting the Java model elements. -
-
Uses of JavaModule in com.thoughtworks.qdox
Methods in com.thoughtworks.qdox that return JavaModule Modifier and Type Method Description JavaModule
JavaProjectBuilder. addSourceFolder(java.io.File sourceFolder)
Add a sourcefolder to this javaprojectbuilder, but don't parse any file.Methods in com.thoughtworks.qdox that return types with arguments of type JavaModule Modifier and Type Method Description java.util.Collection<JavaModule>
JavaProjectBuilder. getModules()
-
Uses of JavaModule in com.thoughtworks.qdox.builder
Methods in com.thoughtworks.qdox.builder that return JavaModule Modifier and Type Method Description JavaModule
Builder. getModuleInfo()
-
Uses of JavaModule in com.thoughtworks.qdox.builder.impl
Methods in com.thoughtworks.qdox.builder.impl that return JavaModule Modifier and Type Method Description JavaModule
ModelBuilder. getModuleInfo()
-
Uses of JavaModule in com.thoughtworks.qdox.library
Methods in com.thoughtworks.qdox.library that return JavaModule Modifier and Type Method Description JavaModule
ClassLibraryBuilder. addSourceFolder(java.io.File sourceFolder)
JavaModule
OrderedClassLibraryBuilder. addSourceFolder(java.io.File sourceFolder)
JavaModule
SortedClassLibraryBuilder. addSourceFolder(java.io.File sourceFolder)
JavaModule
SourceFolderLibrary. addSourceFolder(java.io.File sourceFolder)
private JavaModule
SourceFolderLibrary. resolveJavaModule(java.io.File sourceFolder)
Methods in com.thoughtworks.qdox.library that return types with arguments of type JavaModule Modifier and Type Method Description java.util.Collection<JavaModule>
AbstractClassLibrary. getJavaModules()
java.util.Collection<JavaModule>
ClassLibrary. getJavaModules()
java.util.Collection<JavaModule>
SourceFolderLibrary. getJavaModules()
private java.util.Collection<JavaModule>
SourceFolderLibrary. resolveJavaModules()
-
Uses of JavaModule in com.thoughtworks.qdox.model
Methods in com.thoughtworks.qdox.model that return JavaModule Modifier and Type Method Description JavaModule
JavaModuleDescriptor.JavaRequires. getModule()
Methods in com.thoughtworks.qdox.model that return types with arguments of type JavaModule Modifier and Type Method Description java.util.Collection<JavaModule>
JavaModuleDescriptor.JavaExports. getTargets()
java.util.Collection<JavaModule>
JavaModuleDescriptor.JavaOpens. getTargets()
-
Uses of JavaModule in com.thoughtworks.qdox.model.impl
Classes in com.thoughtworks.qdox.model.impl that implement JavaModule Modifier and Type Class Description class
DefaultJavaModule
Fields in com.thoughtworks.qdox.model.impl declared as JavaModule Modifier and Type Field Description private JavaModule
DefaultJavaModuleDescriptor.DefaultJavaRequires. module
Fields in com.thoughtworks.qdox.model.impl with type parameters of type JavaModule Modifier and Type Field Description private java.util.Collection<JavaModule>
DefaultJavaModuleDescriptor.DefaultJavaExports. targets
private java.util.Collection<JavaModule>
DefaultJavaModuleDescriptor.DefaultJavaOpens. targets
Methods in com.thoughtworks.qdox.model.impl that return JavaModule Modifier and Type Method Description JavaModule
DefaultJavaModuleDescriptor.DefaultJavaRequires. getModule()
Methods in com.thoughtworks.qdox.model.impl that return types with arguments of type JavaModule Modifier and Type Method Description java.util.Collection<JavaModule>
DefaultJavaModuleDescriptor.DefaultJavaExports. getTargets()
java.util.Collection<JavaModule>
DefaultJavaModuleDescriptor.DefaultJavaOpens. getTargets()
Constructors in com.thoughtworks.qdox.model.impl with parameters of type JavaModule Constructor Description DefaultJavaRequires(JavaModule module, java.util.Collection<java.lang.String> modifiers)
Constructor parameters in com.thoughtworks.qdox.model.impl with type arguments of type JavaModule Constructor Description DefaultJavaExports(JavaPackage source, java.util.Collection<JavaModule> targets)
DefaultJavaOpens(JavaPackage source, java.util.Collection<JavaModule> targets)
-