Package org.apache.tapestry5.internal
Class EmptyEventContext
- java.lang.Object
 - 
- org.apache.tapestry5.internal.EmptyEventContext
 
 
- 
- All Implemented Interfaces:
 EventContext
public class EmptyEventContext extends Object implements EventContext
Placeholder used when no context is available. 
- 
- 
Constructor Summary
Constructors Constructor Description EmptyEventContext() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> Tget(Class<T> desiredType, int index)This should never be called because the count is always zero.intgetCount()Always returns zero.String[]toStrings()Extracts the value of each context value as a string. 
 - 
 
- 
- 
Constructor Detail
- 
EmptyEventContext
public EmptyEventContext()
 
 - 
 
- 
Method Detail
- 
getCount
public int getCount()
Always returns zero.- Specified by:
 getCountin interfaceEventContext
 
- 
get
public <T> T get(Class<T> desiredType, int index)
This should never be called because the count is always zero.- Specified by:
 getin interfaceEventContext- Parameters:
 desiredType- the type of value requiredindex- identifies which parameter value to extract- Returns:
 - the value extracted and converted or coerced
 
 
- 
toStrings
public String[] toStrings()
Description copied from interface:EventContextExtracts the value of each context value as a string.- Specified by:
 toStringsin interfaceEventContext- Returns:
 - context values
 
 
 - 
 
 -