summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Effects
diff options
context:
space:
mode:
authorSilenio Quarti <silenio>2008-03-04 17:32:39 +0000
committerSilenio Quarti <silenio>2008-03-04 17:32:39 +0000
commit42b119d584670d7ea864dc313368f65356cf1296 (patch)
tree7ee518ebf6c97a8d6d605df54e2b99e30cc5756f /bundles/org.eclipse.swt/Eclipse SWT Effects
parentcc2bd64c274580df1c6195b2c4272a7b594e391b (diff)
downloadeclipse.platform.swt-42b119d584670d7ea864dc313368f65356cf1296.tar.gz
eclipse.platform.swt-42b119d584670d7ea864dc313368f65356cf1296.tar.xz
eclipse.platform.swt-42b119d584670d7ea864dc313368f65356cf1296.zip
wpf support for e4
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Effects')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Effects/emulated/org/eclipse/swt/effects/Effect.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Effects/emulated/org/eclipse/swt/effects/Effect.java b/bundles/org.eclipse.swt/Eclipse SWT Effects/emulated/org/eclipse/swt/effects/Effect.java
new file mode 100644
index 0000000000..4748695ae4
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT Effects/emulated/org/eclipse/swt/effects/Effect.java
@@ -0,0 +1,28 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.swt.effects;
+
+/**
+ * WARNING: THIS API IS UNDER CONSTRUCTION AND SHOULD NOT BE USED
+ */
+public class Effect {
+ public int handle;
+
+ public Effect() {
+ }
+
+ public void dispose() {
+ }
+
+ public boolean isDisposed() {
+ return handle == 0;
+ }
+}