tcra.math
Interface MathType

All Known Implementing Classes:
MathInteger, MathString

public interface MathType

MathType is the mathematical representation of an Argument.


Method Summary
 java.lang.String toHTMLString()
          In case the toString() function includes character that would not properly display in HTML, this string returns an HTML compliant version.
 

Method Detail

toHTMLString

java.lang.String toHTMLString()
In case the toString() function includes character that would not properly display in HTML, this string returns an HTML compliant version. For example, '<' and '>' are not rendered in HTML since they represent opening and closing a tag. To show these as text, you must use < and >.

Returns:
HTML compliant version of the toString() string.