com.ibm.as400.util.servlet
Class SectionCompletedEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.ibm.as400.util.servlet.SectionCompletedEvent
-
- All Implemented Interfaces:
- java.io.Serializable
public class SectionCompletedEvent extends java.util.EventObject
The SectionCompletedEvent class represents a SectionCompleted event.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description SectionCompletedEvent(java.lang.Object source)
Constructs a SectionCompletedEvent object.SectionCompletedEvent(java.lang.Object source, java.lang.String section)
Constructs a SectionCompletedEvent object with the specified data section.
-
Method Summary
Methods Modifier and Type Method and Description java.lang.String
getSection()
Returns the completed section of data.void
setSection(java.lang.String section)
Sets the completed section of data.
-
-
-
Constructor Detail
-
SectionCompletedEvent
public SectionCompletedEvent(java.lang.Object source)
Constructs a SectionCompletedEvent object. It uses the specified source object that completed the section.- Parameters:
source
- The object where the event originated.
-
SectionCompletedEvent
public SectionCompletedEvent(java.lang.Object source, java.lang.String section)
Constructs a SectionCompletedEvent object with the specified data section. It uses the specified source object that completed the section.- Parameters:
source
- The object where the event originated.section
- The completed section of data.
-
-