org.symbian.tools.mtw.ui/src/org/symbian/tools/tmw/ui/deployment/bluetooth/BluetoothRule.java
changeset 461 7a8f9fa8d278
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/org.symbian.tools.mtw.ui/src/org/symbian/tools/tmw/ui/deployment/bluetooth/BluetoothRule.java	Mon Aug 09 15:18:34 2010 -0700
@@ -0,0 +1,20 @@
+package org.symbian.tools.tmw.ui.deployment.bluetooth;
+
+import org.eclipse.core.runtime.jobs.ISchedulingRule;
+
+public class BluetoothRule implements ISchedulingRule {
+    public static final ISchedulingRule INSTANCE = new BluetoothRule();
+
+    private BluetoothRule() {
+        // No instantiation
+    }
+
+    public boolean contains(ISchedulingRule rule) {
+        return isConflicting(rule);
+    }
+
+    public boolean isConflicting(ISchedulingRule rule) {
+        return rule instanceof BluetoothRule;
+    }
+
+}