All Packages Class Hierarchy This Package Previous Next Index
Class com.ibm.as400.util.servlet.SectionCompletedEvent
java.lang.Object
|
+----java.util.EventObject
|
+----com.ibm.as400.util.servlet.SectionCompletedEvent
- public class SectionCompletedEvent
- extends EventObject
The SectionCompletedEvent class represents a SectionCompleted event.
-
SectionCompletedEvent(Object)
- Constructs a SectionCompletedEvent object.
-
SectionCompletedEvent(Object, String)
- Constructs a SectionCompletedEvent object with the specified data section.
-
getSection()
- Returns the completed section of data.
-
setSection(String)
- Sets the completed section of data.
SectionCompletedEvent
public SectionCompletedEvent(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(Object source,
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.
getSection
public String getSection()
- Returns the completed section of data.
- Returns:
- The section of data.
setSection
public void setSection(String section)
- Sets the completed section of data.
- Parameters:
- section - The section of data.
All Packages Class Hierarchy This Package Previous Next Index