object Project
Definition of factory methods to create Projects.
- Alphabetic
- By Inheritance
- Project
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
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): Java9FrameworkWithInvokedynamicSupportAndCaching
- lazy val JavaLibraryClassFileReader: Java9LibraryFramework.type
- def apply[Source](projectClassFilesWithSources: Traversable[(ClassFile, Source)], libraryClassFilesWithSources: Traversable[(ClassFile, Source)], libraryClassFilesAreInterfacesOnly: Boolean, virtualClassFiles: Traversable[ClassFile], handleInconsistentProject: HandleInconsistentProject, config: Config, logContext: LogContext): Project[Source]
-
def
apply[Source](projectClassFilesWithSources: Traversable[(ClassFile, Source)], libraryClassFilesWithSources: Traversable[(ClassFile, Source)], libraryClassFilesAreInterfacesOnly: Boolean, virtualClassFiles: Traversable[ClassFile] = Traversable.empty, handleInconsistentProject: HandleInconsistentProject = ...)(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
truethen 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
invokedynamicinstructions. In general, such class files should be added usingprojectClassFilesWithSourcesand theSourceshould 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: Traversable[(ClassFile, Source)], libraryClassFilesWithSources: Traversable[(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: Traversable[(ClassFile, Source)], projectLogger: OPALLogger): Project[Source]
- def apply[Source](projectClassFilesWithSources: Traversable[(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[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
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: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
extend[Source](project: Project[Source], projectClassFilesWithSources: Iterable[(ClassFile, Source)]): Project[Source]
Creates a new
Projectthat consists of the class files of the previous project and the newly given class files. - def extend(project: Project[URL], file: File): Project[URL]
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def instanceMethods(classHierarchy: ClassHierarchy, objectTypeToClassFile: (ObjectType) ⇒ Option[ClassFile])(implicit logContext: LogContext): Map[ObjectType, ConstArray[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()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
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 overrides it.
Returns for a given virtual method the set of all non-abstract virtual methods which overrides 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
.isVirtualMethodDeclarationfor further details.
-
def
recreate[Source](project: Project[Source], config: Config = ConfigFactory.empty(), useOldConfigAsFallback: Boolean = true): Project[Source]
Creates a new
Projectthat consists of the source files of the previous project and uses the (new) configuration.Creates a new
Projectthat 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.recreateis more efficient. -
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )