public interface ReadStamps
| Modifier and Type | Method and Description |
|---|---|
java.util.Map<VirtualFileRef,Stamp> |
getAllLibraryStamps()
Returns a map of all the stamps associated with binary files.
|
java.util.Map<VirtualFileRef,Stamp> |
getAllProductStamps()
Returns a map of all the stamps associated with product files.
|
java.util.Map<VirtualFileRef,Stamp> |
getAllSourceStamps()
Returns a map of all the stamps associated with source files.
|
Stamp |
library(VirtualFileRef libraryFile)
Retrieves the stamp associated with a binary dependency (class file).
|
Stamp |
product(VirtualFileRef compilationProduct)
Retrieves the stamp associated with a given class file.
|
Stamp |
source(VirtualFile internalSource)
Retrieves the stamp associated with a given internal source.
|
Stamp product(VirtualFileRef compilationProduct)
compilationProduct - The product produced by the current compilation run of a source file.Stamp source(VirtualFile internalSource)
Note that the internal source has to be a source under compilation.
internalSource - The source file under compilation.Stamp library(VirtualFileRef libraryFile)
libraryFile - A class file that represents an external or internal dependency.java.util.Map<VirtualFileRef,Stamp> getAllLibraryStamps()
java.util.Map<VirtualFileRef,Stamp> getAllSourceStamps()
java.util.Map<VirtualFileRef,Stamp> getAllProductStamps()
Note that the returned map can be empty if no compilation has happened yet.