Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2015-02-20 15:32:24 +0000
committerEike Stepper2015-02-20 17:45:07 +0000
commita24a72c2fde0681cc558adc0482d6d735f65d732 (patch)
treee4b41d00a269552ad0141962cdf38aac842b7dad /plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/CDOCommonSession.java
parentd44d28f6ed088053d74d0bb51280cfd961a7d870 (diff)
downloadcdo-a24a72c2fde0681cc558adc0482d6d735f65d732.tar.gz
cdo-a24a72c2fde0681cc558adc0482d6d735f65d732.tar.xz
cdo-a24a72c2fde0681cc558adc0482d6d735f65d732.zip
[458349] Consolidate UI
Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=458349
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/CDOCommonSession.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/CDOCommonSession.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/CDOCommonSession.java b/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/CDOCommonSession.java
index 8741baa1d8..5fb306e885 100644
--- a/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/CDOCommonSession.java
+++ b/plugins/org.eclipse.emf.cdo.common/src/org/eclipse/emf/cdo/common/CDOCommonSession.java
@@ -14,6 +14,7 @@ import org.eclipse.net4j.util.collection.Closeable;
import org.eclipse.net4j.util.options.IOptions;
import org.eclipse.net4j.util.options.IOptionsContainer;
import org.eclipse.net4j.util.options.IOptionsEvent;
+import org.eclipse.net4j.util.properties.IPropertiesContainer;
import org.eclipse.net4j.util.security.IUserAware;
import org.eclipse.core.runtime.IAdaptable;
@@ -30,7 +31,7 @@ import org.eclipse.core.runtime.IAdaptable;
* @apiviz.has {@link CDOCommonSession.Options}
* @apiviz.uses {@link CDOCommonRepository} - - connectsTo
*/
-public interface CDOCommonSession extends IAdaptable, IUserAware, IOptionsContainer, Closeable
+public interface CDOCommonSession extends IAdaptable, IUserAware, IOptionsContainer, IPropertiesContainer, Closeable
{
public int getSessionID();

Back to the top