Package io.guise.framework.platform.web
Class WebFormEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.globalmentor.event.AbstractEvent
-
- io.guise.framework.event.AbstractGuiseEvent
-
- io.guise.framework.platform.AbstractPlatformEvent
-
- io.guise.framework.platform.web.AbstractWebPlatformEvent
-
- io.guise.framework.platform.web.WebFormEvent
-
- All Implemented Interfaces:
com.globalmentor.event.Event
,GuiseEvent
,PlatformEvent
,PlatformMessage
,WebPlatformEvent
,WebPlatformMessage
,java.io.Serializable
public class WebFormEvent extends AbstractWebPlatformEvent
Indicates the submission of a full or partial form on the web platform- Author:
- Garret Wilson
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WebFormEvent(WebPlatform source)
Source exhaustive constructor.WebFormEvent(WebPlatform source, boolean exhaustive)
Source and exhaustive constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.globalmentor.collections.CollectionMap<java.lang.String,java.lang.Object,java.util.List<java.lang.Object>>
getParameterListMap()
WebPlatform
getPlatform()
boolean
isExhaustive()
java.lang.String
toString()
-
Methods inherited from class io.guise.framework.event.AbstractGuiseEvent
getSession
-
-
-
-
Constructor Detail
-
WebFormEvent
public WebFormEvent(WebPlatform source)
Source exhaustive constructor.- Parameters:
source
- The object on which the event initially occurred.- Throws:
java.lang.NullPointerException
- if the given source isnull
.
-
WebFormEvent
public WebFormEvent(WebPlatform source, boolean exhaustive)
Source and exhaustive constructor.- Parameters:
source
- The object on which the event initially occurred.exhaustive
- Whether this event represents all components on the form.- Throws:
java.lang.NullPointerException
- if the given source isnull
.
-
-
Method Detail
-
getPlatform
public WebPlatform getPlatform()
- Returns:
- The platform on which the event initially occurred.
-
isExhaustive
public final boolean isExhaustive()
- Returns:
- Whether this event represents all components on the form.
-
getParameterListMap
public com.globalmentor.collections.CollectionMap<java.lang.String,java.lang.Object,java.util.List<java.lang.Object>> getParameterListMap()
- Returns:
- The map of parameter lists.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.util.EventObject
-
-