javadoc
This commit is contained in:
@@ -18,8 +18,16 @@ package org.springframework.binding.expression.support;
|
||||
import org.springframework.binding.expression.ExpressionVariable;
|
||||
import org.springframework.binding.expression.ParserContext;
|
||||
|
||||
/**
|
||||
* A null object implementation of ParserContext. Mainly used internally by expression parser implementations when
|
||||
* <code>null</code> is passed in as a parser context value.
|
||||
* @author Keith Donad
|
||||
*/
|
||||
public final class NullParserContext implements ParserContext {
|
||||
|
||||
/**
|
||||
* The null parser context object instance; a singleton.
|
||||
*/
|
||||
public static final ParserContext INSTANCE = new NullParserContext();
|
||||
|
||||
private NullParserContext() {
|
||||
|
||||
Reference in New Issue
Block a user