Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsuen2009-04-26 00:42:57 +0000
committerrsuen2009-04-26 00:42:57 +0000
commit15ed8a752745d8be820a8f1418585ff5c245d18b (patch)
tree9768e2b84c34b0f25e4b6e4d4253d5c44dbfa882
parent569f8c0dfbf6aabe6cd3b6796f2d0b3059bab5bd (diff)
downloadorg.eclipse.ecf-15ed8a752745d8be820a8f1418585ff5c245d18b.tar.gz
org.eclipse.ecf-15ed8a752745d8be820a8f1418585ff5c245d18b.tar.xz
org.eclipse.ecf-15ed8a752745d8be820a8f1418585ff5c245d18b.zip
Javadoc clarifications.
-rw-r--r--framework/bundles/org.eclipse.ecf.datashare/src/org/eclipse/ecf/datashare/events/IChannelContainerEvent.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/bundles/org.eclipse.ecf.datashare/src/org/eclipse/ecf/datashare/events/IChannelContainerEvent.java b/framework/bundles/org.eclipse.ecf.datashare/src/org/eclipse/ecf/datashare/events/IChannelContainerEvent.java
index d54beb28a..a4c65ec35 100644
--- a/framework/bundles/org.eclipse.ecf.datashare/src/org/eclipse/ecf/datashare/events/IChannelContainerEvent.java
+++ b/framework/bundles/org.eclipse.ecf.datashare/src/org/eclipse/ecf/datashare/events/IChannelContainerEvent.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004 Composent, Inc., Peter Nehrer, Boris Bokowski. All rights reserved. This
+ * Copyright (c) 2004, 2009 Composent, Inc., Peter Nehrer, Boris Bokowski. 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
@@ -18,16 +18,16 @@ import org.eclipse.ecf.core.identity.ID;
*/
public interface IChannelContainerEvent {
/**
- * Get the id of the channel associated with this event
+ * Get the id of the channel associated with this event.
*
* @return ID of the channel. Will not be <code>null</code>.
*/
public ID getChannelID();
/**
- * Get the id of the channel container associated with this event
+ * Get the id of the channel's originating source IContainer associated with this event.
*
- * @return ID of the channel container. Will not be <code>null</code>.
+ * @return ID of the channel's originating source IContainer. Will not be <code>null</code>.
*/
public ID getChannelContainerID();
}

Back to the top