Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-05-02 04:58:41 +0000
committerslewis2007-05-02 04:58:41 +0000
commit0aea9f2fd41df67cbbebf1d84e9aafc506e1d9e6 (patch)
treedba8e9c5a5e261f9bfdadaa631117e0482243669
parent8d139b0bc6253a7142e86d382f33c1506e7c7c41 (diff)
downloadorg.eclipse.ecf-0aea9f2fd41df67cbbebf1d84e9aafc506e1d9e6.tar.gz
org.eclipse.ecf-0aea9f2fd41df67cbbebf1d84e9aafc506e1d9e6.tar.xz
org.eclipse.ecf-0aea9f2fd41df67cbbebf1d84e9aafc506e1d9e6.zip
Simplification of AsynchConnectContainerAction, change of wizards to use. Added IStatus constructors for exception classes.
-rw-r--r--framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/BaseID.java2
-rw-r--r--framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/IDCreateException.java5
2 files changed, 6 insertions, 1 deletions
diff --git a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/BaseID.java b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/BaseID.java
index 851fb8ebb..7e3706578 100644
--- a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/BaseID.java
+++ b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/BaseID.java
@@ -22,7 +22,7 @@ public abstract class BaseID implements ID {
private static final long serialVersionUID = -6242599410460002514L;
- Namespace namespace;
+ protected Namespace namespace;
protected BaseID() {
}
diff --git a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/IDCreateException.java b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/IDCreateException.java
index be68fa0e9..82d5565c1 100644
--- a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/IDCreateException.java
+++ b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/IDCreateException.java
@@ -8,6 +8,7 @@
******************************************************************************/
package org.eclipse.ecf.core.identity;
+import org.eclipse.core.runtime.IStatus;
import org.eclipse.ecf.core.util.ECFException;
public class IDCreateException extends ECFException {
@@ -17,6 +18,10 @@ public class IDCreateException extends ECFException {
super();
}
+ public IDCreateException(IStatus status) {
+ super(status);
+ }
+
public IDCreateException(String message) {
super(message);
}

Back to the top