Interface ProcessingState
-
- All Known Implementing Classes:
CdmHeaderProcessingState
,ErrorState
,HeaderProcessingState
,KvnStructureProcessingState
,XmlStructureProcessingState
public interface ProcessingState
Interface for processing parsing tokens for CCSDS NDM files.This interface is intended for use as the state in state design pattern, the
message parser
itself being used as the context that holds the active state.- Since:
- 11.0
- Author:
- Luc Maisonobe
- See Also:
MessageParser
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
processToken(ParseToken token)
Process one token.
-
-
-
Method Detail
-
processToken
boolean processToken(ParseToken token)
Process one token.- Parameters:
token
- token to process- Returns:
- true if token was processed, false otherwise
-
-