Package de.xima.fc.workflow.parser.infix
Interface IValidationMessage
-
- All Superinterfaces:
Serializable
public interface IValidationMessage extends Serializable
A validation message produced byIInfixExpressionHandler.validate(CharSequence, IValidationOptions)
. Contains a severity, an error message, and the location in the source code.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getMessage()
Serializable[]
getMessageParams()
String
getMessageTemplate()
FCMessage.ESeverity
getSeverity()
ISourcePosition
getSourcePosition()
-
-
-
Method Detail
-
getMessage
String getMessage()
- Returns:
- The (possibly localized) error or warning message.
-
getMessageParams
Serializable[] getMessageParams()
- Returns:
- The message parameters that were used to create the message.
-
getMessageTemplate
String getMessageTemplate()
- Returns:
- The message template that was used to create the message.
-
getSeverity
FCMessage.ESeverity getSeverity()
- Returns:
- The severity of this message, i.e. whether it is an error, a warning, or an info message.
-
getSourcePosition
ISourcePosition getSourcePosition()
- Returns:
- The position in the source code responsible for this message.
-
-