public interface CompilationErrorsIndex
Modifier and Type | Method and Description |
---|---|
void |
add(String typeSourceName,
String fileName,
List<String> typeReferences,
List<String> compilationErrors)
Records the filename, names of referenced types, and known compilation errors for a given type.
|
Set<String> |
getCompileErrors(String typeSourceName)
Returns the compile error strings previously recorded for a given type.
|
String |
getFileName(String typeSourceName)
Returns the file name previously recorded for a given type.
|
Set<String> |
getTypeReferences(String typeSourceName)
Returns the type reference strings previously recorded for a given type.
|
boolean |
hasCompileErrors(String typeSourceName)
Returns whether a given type has any recorded compile errors.
|
boolean |
hasTypeReferences(String typeSourceName)
Returns whether a given type has any recorded type references.
|
void add(String typeSourceName, String fileName, List<String> typeReferences, List<String> compilationErrors)
Set<String> getCompileErrors(String typeSourceName)
String getFileName(String typeSourceName)
Set<String> getTypeReferences(String typeSourceName)
boolean hasCompileErrors(String typeSourceName)
boolean hasTypeReferences(String typeSourceName)
Copyright © 2018. All rights reserved.