Package org.teavm.diagnostics
Class DefaultProblemTextConsumer
- java.lang.Object
-
- org.teavm.diagnostics.DefaultProblemTextConsumer
-
- All Implemented Interfaces:
ProblemTextConsumer
public class DefaultProblemTextConsumer extends Object implements ProblemTextConsumer
-
-
Constructor Summary
Constructors Constructor Description DefaultProblemTextConsumer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidappend(String text)voidappendClass(String className)voidappendField(FieldReference field)voidappendLocation(TextLocation location)voidappendMethod(MethodReference method)voidappendType(ValueType type)voidclear()StringgetText()
-
-
-
Method Detail
-
clear
public void clear()
-
getText
public String getText()
-
append
public void append(String text)
- Specified by:
appendin interfaceProblemTextConsumer
-
appendClass
public void appendClass(String className)
- Specified by:
appendClassin interfaceProblemTextConsumer
-
appendMethod
public void appendMethod(MethodReference method)
- Specified by:
appendMethodin interfaceProblemTextConsumer
-
appendField
public void appendField(FieldReference field)
- Specified by:
appendFieldin interfaceProblemTextConsumer
-
appendLocation
public void appendLocation(TextLocation location)
- Specified by:
appendLocationin interfaceProblemTextConsumer
-
appendType
public void appendType(ValueType type)
- Specified by:
appendTypein interfaceProblemTextConsumer
-
-