]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.eclipse.swt.win32.win32.x86_64/src/org/eclipse/swt/browser/ProgressAdapter.java
Remove invalid SHA-256-Digests
[simantics/platform.git] / bundles / org.eclipse.swt.win32.win32.x86_64 / src / org / eclipse / swt / browser / ProgressAdapter.java
1 /*******************************************************************************
2  * Copyright (c) 2003, 2016 IBM Corporation and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  *     IBM Corporation - initial API and implementation
13  *******************************************************************************/
14 package org.eclipse.swt.browser;
15
16 /**
17  * This adapter class provides default implementations for the
18  * methods described by the {@link ProgressListener} interface.
19  * <p>
20  * Classes that wish to deal with {@link ProgressEvent}'s can
21  * extend this class and override only the methods which they are
22  * interested in.
23  * </p>
24  * <p>
25  * An alternative to this class are the static helper methods in
26  * {@link ProgressListener},
27  * which accept a lambda expression or a method reference that implements the event consumer.
28  * </p>
29  *
30  * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
31  *
32  * @since 3.0
33  */
34 public abstract class ProgressAdapter implements ProgressListener {
35
36 @Override
37 public void changed(ProgressEvent event) {
38 }
39
40 @Override
41 public void completed(ProgressEvent event) {
42 }
43 }