Interface IFeedback
-
public interface IFeedback
Represents feedback instructions, which will be sent to the client using the JSON API.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
IFeedback.FormTarget
Defines how to open a form for feedback.static class
IFeedback.MessageType
Defines the message type for feedback messages.static class
IFeedback.TargetType
Depending on the target, the handling of the instruction will be passed to core of the client system or to some specific widget.static class
IFeedback.Type
Defines the type of this feedback message.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description IContext
getContext()
Deprecated.java.util.Map<java.lang.String,java.lang.Object>
getParams()
Returns the parameters of this feedback object.IFeedback.TargetType
getTargetType()
Returns the target type of this feedback object.IFeedback.Type
getType()
Returns the type of this feedback object.
-
-
-
Method Detail
-
getTargetType
IFeedback.TargetType getTargetType()
Returns the target type of this feedback object.- Returns:
- the target type
-
getType
IFeedback.Type getType()
Returns the type of this feedback object.- Returns:
- the type
-
getContext
@Deprecated IContext getContext()
Deprecated.Returns the context of this feedback object.- Returns:
- the target type
-
getParams
java.util.Map<java.lang.String,java.lang.Object> getParams()
Returns the parameters of this feedback object.- Returns:
- the parameters
-
-