Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2005-03-15 05:49:23 +0000
committerslewis2005-03-15 05:49:23 +0000
commitbd77f9e6d2db3a71ce349c1dcd8f79d78a3ff5eb (patch)
tree76a4a269f5d3d75b0a7ea70d8576dc28bc7c3188
parent84685c8d6d8303bfa1dc46bd1174f59c9c123bd9 (diff)
downloadorg.eclipse.ecf-bd77f9e6d2db3a71ce349c1dcd8f79d78a3ff5eb.tar.gz
org.eclipse.ecf-bd77f9e6d2db3a71ce349c1dcd8f79d78a3ff5eb.tar.xz
org.eclipse.ecf-bd77f9e6d2db3a71ce349c1dcd8f79d78a3ff5eb.zip
Added new IClassLoaderMapper interface to allow ID->ClassLoader mapping to occur during object deserialization
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/util/IClassLoaderMapper.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/util/IClassLoaderMapper.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/util/IClassLoaderMapper.java
new file mode 100644
index 000000000..4a4635e25
--- /dev/null
+++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/util/IClassLoaderMapper.java
@@ -0,0 +1,18 @@
+/*******************************************************************************
+ * Copyright (c) 2004 Composent, Inc. 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: Composent, Inc. - initial API and implementation
+ ******************************************************************************/
+
+package org.eclipse.ecf.core.util;
+
+import org.eclipse.ecf.core.identity.ID;
+
+public interface IClassLoaderMapper {
+
+ public ClassLoader mapIDToClassLoader(ID id);
+
+}

Back to the top