From ff92807b83f7dc4791cc751d89f784cc0571c003 Mon Sep 17 00:00:00 2001 From: Till Schnell Date: Sat, 10 Apr 2021 10:33:46 +0200 Subject: [PATCH] Add JavaDoc --- .../JavaTXCompilerWildcards.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/main/java/de/dhbwstuttgart/inferWildcards/JavaTXCompilerWildcards.java b/src/main/java/de/dhbwstuttgart/inferWildcards/JavaTXCompilerWildcards.java index bb7a3dbd..0239d97d 100644 --- a/src/main/java/de/dhbwstuttgart/inferWildcards/JavaTXCompilerWildcards.java +++ b/src/main/java/de/dhbwstuttgart/inferWildcards/JavaTXCompilerWildcards.java @@ -11,10 +11,28 @@ import de.dhbwstuttgart.syntaxtree.type.TypePlaceholder; import de.dhbwstuttgart.typeinference.constraints.ConstraintSet; import de.dhbwstuttgart.typeinference.constraints.Pair; +/** + * Extension of the JavaTX Compiler providing the capabilities to inference + * wildcard types. + *

+ * + *

+ * + * + * @author Till Schnell + * @version 1.0 + */ public class JavaTXCompilerWildcards extends JavaTXCompiler { + /** + * Generated Type placeholder and the implementation type represented. + */ private final Map tphMap; public JavaTXCompilerWildcards (File... sourceFile) throws IOException, ClassNotFoundException {