Uses of Class
com.thoughtworks.qdox.parser.ParseException
-
Packages that use ParseException Package Description com.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 exist -
-
Uses of ParseException in com.thoughtworks.qdox.library
Methods in com.thoughtworks.qdox.library with parameters of type ParseException Modifier and Type Method Description void
ErrorHandler. handle(ParseException parseException)
Methods in com.thoughtworks.qdox.library that throw ParseException Modifier and Type Method Description JavaSource
SourceLibrary. addSource(java.io.File file)
Add aFile
containing java code to this libraryJavaSource
SourceLibrary. addSource(java.io.InputStream stream)
Add anInputStream
containing java code to this libraryJavaSource
SourceLibrary. addSource(java.io.Reader reader)
Add aReader
containing java code to this libraryJavaSource
SourceLibrary. addSource(java.net.URL url)
Add aURL
containing java code to this libraryprivate Builder
SourceLibrary. parse(JavaLexer lexer, java.net.URL url)
(package private) Builder
SourceLibrary. parse(java.io.InputStream stream, java.net.URL url)
(package private) Builder
SourceLibrary. parse(java.io.Reader reader, java.net.URL url)
-