fixing TODOs

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@62 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Andy Clement
2008-08-16 01:57:13 +00:00
parent 83432fc14d
commit 4a4acb7038
2 changed files with 3 additions and 5 deletions
@@ -15,7 +15,6 @@
*/
package org.springframework.expression;
// TODO (asc) This class needs a better name? I might have used EvaluationException if it wasn't also used for parsing issues
/**
* Base class for exceptions occurring during expression parsing and evaluation.
*
@@ -1,6 +1,5 @@
package org.springframework.expression;
/**
* By default the mathematical operators {@link Operation} support simple types like numbers. By providing an
* implementation of OperatorOverloader, a user of the expression language can support these operations on other types.
@@ -9,9 +8,9 @@ package org.springframework.expression;
*/
public interface OperatorOverloader {
// TODO (asc) does this need a better type name?
// TODO (asc) needs some testing!
// TODO does type OperatorOverloader need a better name?
// TODO Operator overloading needs some testing!
/**
* Return true if the operator overloader supports the specified operation between the two operands and so should be
* invoked to handle it.