ProgressUpdateListener.java revision a395dd575518d9e5280fc5d5d5ef47c61b174647
4586N/A/*
4586N/A * CDDL HEADER START
4586N/A *
4619N/A * The contents of this file are subject to the terms of the
4770N/A * Common Development and Distribution License, Version 1.0 only
4770N/A * (the "License"). You may not use this file except in compliance
4619N/A * with the License.
5611N/A *
4770N/A * You can obtain a copy of the license at
4770N/A * trunk/opends/resource/legal-notices/OpenDS.LICENSE
4770N/A * or https://OpenDS.dev.java.net/OpenDS.LICENSE.
4770N/A * See the License for the specific language governing permissions
4770N/A * and limitations under the License.
4770N/A *
4770N/A * When distributing Covered Code, include this CDDL HEADER in each
4770N/A * file and include the License file at
5223N/A * trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
4770N/A * add the following below this CDDL HEADER, with the fields enclosed
* by brackets "[]" replaced with your own identifying information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
*
* Copyright 2006-2008 Sun Microsystems, Inc.
*/
package org.opends.quicksetup.event;
/**
* Interface that implement the objects that want to receive notifications of
* updates in the installation progress.
*
*/
public interface ProgressUpdateListener {
/**
* Method called when an update in the installation progress occurs.
*
* @param ev the ProgressUpdateEvent describing the update that
* occurred in the installation progress.
*/
public void progressUpdate(ProgressUpdateEvent ev);
}