All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.com.ibm.as400.util.servlet.SectionCompletedEvent Maven / Gradle / Ivy

There is a newer version: 11.1
Show newest version
///////////////////////////////////////////////////////////////////////////////
//                                                                             
// JTOpen (IBM Toolbox for Java - OSS version)                              
//                                                                             
// Filename: SectionCompletedEvent.java
//                                                                             
// The source code contained herein is licensed under the IBM Public License   
// Version 1.0, which has been approved by the Open Source Initiative.         
// Copyright (C) 1997-2000 International Business Machines Corporation and     
// others. All rights reserved.                                                
//                                                                             
///////////////////////////////////////////////////////////////////////////////

package com.ibm.as400.util.servlet;

/**
   The SectionCompletedEvent class represents a SectionCompleted event.
**/
public class SectionCompletedEvent extends java.util.EventObject
{
  static final long serialVersionUID = 5950825305973561860L;

   private String section_;		// The completed section of data.

   /**
   * Constructs a SectionCompletedEvent object.
   * It uses the specified source object that completed the section.
   * @param source The object where the event originated.
   **/
   public SectionCompletedEvent(Object source)
   {
      super(source);
   }

   /**
   *  Constructs a SectionCompletedEvent object with the specified data section.
   *  It uses the specified source object that completed the section.
   *  @param source The object where the event originated.
   *  @param section The completed section of data.
   **/
   public SectionCompletedEvent(Object source, String section)
   {
      this(source);
      section_ = section;
   }

   /**
   *  Returns the completed section of data.
   *  @return The section of data.
   **/
   public String getSection()
   {
      return section_;   
   }

   /**
   *  Sets the completed section of data.
   *  @param section The section of data.
   **/
   public void setSection(String section)
   {
      section_ = section;
   }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy