Changed set and setException on FutureStatus to public
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/util/FutureStatus.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/util/FutureStatus.java
index 71b7447..5e568e1 100644
--- a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/util/FutureStatus.java
+++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/util/FutureStatus.java
@@ -160,14 +160,14 @@
 		return futureSeverity;
 	}
 
-	protected synchronized void setException(Throwable ex) {
+	public synchronized void setException(Throwable ex) {
 		super.setException(ex);
 		resultReady = true;
 		setSeverity(IStatus.ERROR);
 		notifyAll();
 	}
 
-	synchronized void set(Object newValue) {
+	public synchronized void set(Object newValue) {
 		resultValue = newValue;
 		resultReady = true;
 		setSeverity(IStatus.OK);