Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/sharedobject/events/SharedObjectDeactivatedEvent.java')
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/sharedobject/events/SharedObjectDeactivatedEvent.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/sharedobject/events/SharedObjectDeactivatedEvent.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/sharedobject/events/SharedObjectDeactivatedEvent.java
deleted file mode 100644
index 9367eadbf..000000000
--- a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/sharedobject/events/SharedObjectDeactivatedEvent.java
+++ /dev/null
@@ -1,39 +0,0 @@
-/*******************************************************************************
- * 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.sharedobject.events;
-
-import org.eclipse.ecf.core.identity.ID;
-
-public class SharedObjectDeactivatedEvent implements
- ISharedObjectDeactivatedEvent {
- private static final long serialVersionUID = 3257291344119476786L;
- private final ID deactivatedID;
- private final ID localContainerID;
-
- public SharedObjectDeactivatedEvent(ID container, ID deact) {
- super();
- this.localContainerID = container;
- this.deactivatedID = deact;
- }
-
- public ID getDeactivatedID() {
- return deactivatedID;
- }
-
- public ID getLocalContainerID() {
- return localContainerID;
- }
-
- public String toString() {
- StringBuffer sb = new StringBuffer("SharedObjectDeactivatedEvent[");
- sb.append(getLocalContainerID()).append(";");
- sb.append(getDeactivatedID()).append("]");
- return sb.toString();
- }
-} \ No newline at end of file

Back to the top