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 JavaModuleJavaProjectBuilder. 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 JavaModuleBuilder. 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 JavaModuleModelBuilder. getModuleInfo() -
Uses of JavaModule in com.thoughtworks.qdox.library
Methods in com.thoughtworks.qdox.library that return JavaModule Modifier and Type Method Description JavaModuleClassLibraryBuilder. addSourceFolder(java.io.File sourceFolder)JavaModuleOrderedClassLibraryBuilder. addSourceFolder(java.io.File sourceFolder)JavaModuleSortedClassLibraryBuilder. addSourceFolder(java.io.File sourceFolder)JavaModuleSourceFolderLibrary. addSourceFolder(java.io.File sourceFolder)private JavaModuleSourceFolderLibrary. 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 JavaModuleJavaModuleDescriptor.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 classDefaultJavaModuleFields in com.thoughtworks.qdox.model.impl declared as JavaModule Modifier and Type Field Description private JavaModuleDefaultJavaModuleDescriptor.DefaultJavaRequires. moduleFields in com.thoughtworks.qdox.model.impl with type parameters of type JavaModule Modifier and Type Field Description private java.util.Collection<JavaModule>DefaultJavaModuleDescriptor.DefaultJavaExports. targetsprivate java.util.Collection<JavaModule>DefaultJavaModuleDescriptor.DefaultJavaOpens. targetsMethods in com.thoughtworks.qdox.model.impl that return JavaModule Modifier and Type Method Description JavaModuleDefaultJavaModuleDescriptor.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)
-