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.


Constructor Index

 o SectionCompletedEvent(Object)
Constructs a SectionCompletedEvent object.
 o SectionCompletedEvent(Object, String)
Constructs a SectionCompletedEvent object with the specified data section.

Method Index

 o getSection()
Returns the completed section of data.
 o setSection(String)
Sets the completed section of data.

Constructors

 o 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.
 o 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.

Methods

 o getSection
 public String getSection()
Returns the completed section of data.

Returns:
The section of data.
 o 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