object Project
- Alphabetic
- By Inheritance
- Project
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- type HandleInconsistentProject = (LogContext, InconsistentProjectException) => Unit
The type of the function that is called if an inconsistent project is detected.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def JavaClassFileReader(implicit theLogContext: LogContext = GlobalLogContext, theConfig: Config = BaseConfig): Java17FrameworkWithDynamicRewritingAndCaching
- lazy val JavaLibraryClassFileReader: Java17LibraryFramework.type
- def apply[Source](projectClassFilesWithSources: Iterable[(ClassFile, Source)], libraryClassFilesWithSources: Iterable[(ClassFile, Source)], libraryClassFilesAreInterfacesOnly: Boolean, virtualClassFiles: Iterable[ClassFile], handleInconsistentProject: HandleInconsistentProject, config: Config, logContext: LogContext): Project[Source]
- def apply[Source](projectClassFilesWithSources: Iterable[(ClassFile, Source)], libraryClassFilesWithSources: Iterable[(ClassFile, Source)], libraryClassFilesAreInterfacesOnly: Boolean, virtualClassFiles: Iterable[ClassFile] = Iterable.empty, handleInconsistentProject: HandleInconsistentProject = defaultHandlerForInconsistentProjects)(implicit config: Config = BaseConfig, projectLogger: OPALLogger = OPALLogger.globalLogger()): Project[Source]
Creates a new Project.
Creates a new Project.
- projectClassFilesWithSources
The list of class files of this project that are considered to belong to the application/library that will be analyzed. [Thread Safety] The underlying data structure has to support concurrent access.
- libraryClassFilesWithSources
The list of class files of this project that make up the libraries used by the project that will be analyzed. [Thread Safety] The underlying data structure has to support concurrent access.
- libraryClassFilesAreInterfacesOnly
If
true
then only the non-private interface of of the classes belonging to the library was loaded. I.e., this setting just reflects the way how the class files were loaded; it does not change the classes!- virtualClassFiles
A list of virtual class files that have no direct representation in the project. Such declarations are created, e.g., to handle
invokedynamic
instructions. In general, such class files should be added usingprojectClassFilesWithSources
and theSource
should be the file that was the reason for the creation of this additionalClassFile
. [Thread Safety] The underlying data structure has to support concurrent access.- handleInconsistentProject
A function that is called back if the project is not consistent. The default behavior (defaultHandlerForInconsistentProjects) is to write a warning message to the console. Alternatively it is possible to throw the given exception to cancel the loading of the project (which is the only meaningful option for several advanced analyses.)
- def apply[Source](projectClassFilesWithSources: Iterable[(ClassFile, Source)], libraryClassFilesWithSources: Iterable[(ClassFile, Source)], libraryClassFilesAreInterfacesOnly: Boolean): Project[Source]
- def apply(projectFiles: Array[File], libraryFiles: Array[File]): Project[URL]
- def apply(projectFile: File, libraryFile: File): Project[URL]
- def apply[Source](projectClassFilesWithSources: Iterable[(ClassFile, Source)], projectLogger: OPALLogger): Project[Source]
- def apply[Source](projectClassFilesWithSources: Iterable[(ClassFile, Source)]): Project[Source]
- def apply(projectFiles: Array[File], libraryFiles: Array[File], logContext: LogContext, config: Config): Project[URL]
- def apply(file: File, logContext: LogContext, config: Config): Project[URL]
- def apply(file: File, projectLogger: OPALLogger): Project[URL]
- def apply(file: File): Project[URL]
Given a reference to a class file, jar file or a folder containing jar and class files, all class files will be loaded and a project will be returned.
Given a reference to a class file, jar file or a folder containing jar and class files, all class files will be loaded and a project will be returned.
The global logger will be used for logging messages.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- def defaultHandlerForInconsistentProjects(logContext: LogContext, ex: InconsistentProjectException): Unit
This default handler just "logs" inconsistent project exceptions at the org.opalj.log.Warn level.
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def extend[Source](project: Project[Source], projectClassFilesWithSources: Iterable[(ClassFile, Source)]): Project[Source]
Creates a new
Project
that consists of the class files of the previous project and the newly given class files. - def extend(project: Project[URL], file: File): Project[URL]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def instanceMethods(classHierarchy: ClassHierarchy, objectTypeToClassFile: (ObjectType) => Option[ClassFile])(implicit logContext: LogContext): Map[ObjectType, ArraySeq[MethodDeclarationContext]]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def overridingMethods(classHierarchy: ClassHierarchy, virtualMethodsCount: Int, objectTypeToClassFile: Map[ObjectType, ClassFile])(implicit theLogContext: LogContext): Map[Method, Set[Method]]
Returns for a given virtual method the set of all non-abstract virtual methods which override it.
Returns for a given virtual method the set of all non-abstract virtual methods which override it.
This method takes the visibility of the methods and the defining context into consideration.
- Note
The map only contains those methods which have at least one concrete implementation.
- See also
Method
.isVirtualMethodDeclaration
for further details.
- def recreate[Source](project: Project[Source], config: Config = ConfigFactory.empty(), useOldConfigAsFallback: Boolean = true): Project[Source]
Creates a new
Project
that consists of the source files of the previous project and uses the (new) configuration.Creates a new
Project
that consists of the source files of the previous project and uses the (new) configuration. The old project configuration is — by default – used as a fallback, so not all values have to be updated.If you just want to clear the derived data, using
Project.recreate
is more efficient. - final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated