]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.eclipse.swt.win32.win32.x86_64/src/org/eclipse/swt/browser/ProgressEvent.java
Remove invalid SHA-256-Digests
[simantics/platform.git] / bundles / org.eclipse.swt.win32.win32.x86_64 / src / org / eclipse / swt / browser / ProgressEvent.java
1 /*******************************************************************************
2  * Copyright (c) 2003, 2009 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 import org.eclipse.swt.widgets.*;
17 import org.eclipse.swt.events.*;
18
19 /**
20  * A <code>ProgressEvent</code> is sent by a {@link Browser} to
21  * {@link ProgressListener}'s when a progress is made during the
22  * loading of the current URL or when the loading of the current
23  * URL has been completed.
24  *
25  * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
26  *
27  * @since 3.0
28  */
29 public class ProgressEvent extends TypedEvent {
30         /** current value */
31         public int current;
32         /** total value */
33         public int total;
34
35         static final long serialVersionUID = 3977018427045393972L;
36
37 /**
38  * Constructs a new instance of this class.
39  *
40  * @param widget the widget that fired the event
41  *
42  * @since 3.5
43  */
44 public ProgressEvent(Widget widget) {
45         super(widget);
46 }
47
48 /**
49  * Returns a string containing a concise, human-readable
50  * description of the receiver.
51  *
52  * @return a string representation of the event
53  */
54 @Override
55 public String toString() {
56         String string = super.toString ();
57         return string.substring (0, string.length() - 1) // remove trailing '}'
58                 + " current=" + current
59                 + " total=" + total
60                 + "}";
61 }
62 }