Interface JavaImportsAnalyzer
-
public interface JavaImportsAnalyzerTheJavaImportsAnalyzerallows checking imports in generated HTL Java classes, in order to optimise dependencies.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default booleanallowImport(java.lang.String importedClass)Analyses the providedimportedClassand decides if this class should be an explicit import or not in the generated HTL Java class.
-
-
-
Method Detail
-
allowImport
default boolean allowImport(java.lang.String importedClass)
Analyses the providedimportedClassand decides if this class should be an explicit import or not in the generated HTL Java class.- Parameters:
importedClass- the import to analyse- Returns:
trueif the import should be declared,falseotherwise
-
-