Java org.apache.wicket.feedback FeedbackMessage fields, constructors, methods, implement or subclass

Example usage for Java org.apache.wicket.feedback FeedbackMessage fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.wicket.feedback FeedbackMessage.

The text is from its open source code.

Subclass

org.apache.wicket.feedback.FeedbackMessage has subclasses.
Click this link to see all its subclasses.

Field

StringWARNING_CSS_CLASS_KEY
StringERROR_CSS_CLASS_KEY
intUNDEFINED
Constant for an undefined level; note that components might decide not to render anything when this level is used.
intDEBUG
Constant for debug level.
intINFO
Constant for info level.
intSUCCESS
Constant for success level (it indicates the outcome of an operation)
intWARNING
Constant for warning level.
intERROR
Constant for error level.
intFATAL
Constant for fatal level.

Constructor

Method

intgetLevel()
Gets the message level; can be used by rendering components.
StringgetLevelAsString()
Gets the current level as a String
SerializablegetMessage()
Gets the actual message.
ComponentgetReporter()
Gets the reporting component.
booleanisDebug()
Gets whether the current level is DEBUG or up.
booleanisError()
Gets whether the current level is ERROR or up.
booleanisFatal()
Gets whether the current level is FATAL or up.
booleanisInfo()
Gets whether the current level is INFO or up.
booleanisLevel(int level)
Returns whether this level is greater than or equal to the given level.
booleanisRendered()
Gets whether or not this message has been rendered
booleanisSuccess()
Gets whether the current level is SUCCESS or up.
booleanisWarning()
Gets whether the current level is WARNING or up.
voidmarkRendered()
Marks this message as rendered.