summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressEvent.java
diff options
context:
space:
mode:
authorChristophe Cornu <ccornu>2003-08-19 19:49:21 +0000
committerChristophe Cornu <ccornu>2003-08-19 19:49:21 +0000
commitc6bfd6a5ac8fe7b65e66f94f8b088694a27b6a6e (patch)
tree7a0391318b747d4aa76550ceb4c9f9eaaf371deb /bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressEvent.java
parent2c66c9703a9f48fd5a877ee0270f1999b63be763 (diff)
downloadeclipse.platform.swt-c6bfd6a5ac8fe7b65e66f94f8b088694a27b6a6e.tar.gz
eclipse.platform.swt-c6bfd6a5ac8fe7b65e66f94f8b088694a27b6a6e.tar.xz
eclipse.platform.swt-c6bfd6a5ac8fe7b65e66f94f8b088694a27b6a6e.zip
Browser widget
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressEvent.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressEvent.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressEvent.java
new file mode 100644
index 0000000000..56f8bf07c4
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressEvent.java
@@ -0,0 +1,30 @@
+/*******************************************************************************
+ * Copyright (c) 2003 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.swt.browser;
+
+import org.eclipse.swt.widgets.*;
+import org.eclipse.swt.events.*;
+
+/**
+ * This event is sent to ProgressListeners when a progress is made
+ * during the loading of the current URI or when the loading of the
+ * current URI has been completed.
+ */
+public class ProgressEvent extends TypedEvent {
+ /** current value */
+ public int current;
+ /** total value */
+ public int total;
+
+ ProgressEvent(Widget w) {
+ super(w);
+ }
+} \ No newline at end of file