org.dbmaintain.script.parser.parsingstate.impl
Class InLineCommentParsingState
java.lang.Object
org.dbmaintain.script.parser.parsingstate.impl.InLineCommentParsingState
- All Implemented Interfaces:
- ParsingState
public class InLineCommentParsingState
- extends Object
- implements ParsingState
A state for parsing an in-line comment (-- comment) part of a script.
- Author:
- Tim Ducheyne, Filip Neven
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
stayInLineCommentResult
protected HandleNextCharacterResult stayInLineCommentResult
backToNormalResult
protected HandleNextCharacterResult backToNormalResult
InLineCommentParsingState
public InLineCommentParsingState()
linkParsingStates
public void linkParsingStates(ParsingState normalParsingState)
- Initializes the state with the normal parsing state, that should be returned when the comment end is reached..
- Parameters:
normalParsingState
- The normal state, not null
getNextParsingState
public HandleNextCharacterResult getNextParsingState(Character previousChar,
Character currentChar,
Character nextChar,
StatementBuilder statementBuilder)
- Determines whether the end of the line comment is reached.
If that is the case, the normal parsing state is returned.
- Specified by:
getNextParsingState
in interface ParsingState
- Parameters:
previousChar
- The previous char, null if nonecurrentChar
- The current charnextChar
- The next char, null if nonestatementBuilder
- The statement builder, not null
- Returns:
- The next parsing state, null if the end of the statement is reached
Copyright © 2011. All Rights Reserved.