Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ianj-als/omtc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/capitati/omtc/core/session/IEngineAssignableSession.java')
-rw-r--r--src/main/java/com/capitati/omtc/core/session/IEngineAssignableSession.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/java/com/capitati/omtc/core/session/IEngineAssignableSession.java b/src/main/java/com/capitati/omtc/core/session/IEngineAssignableSession.java
index d838e72..b8950b2 100644
--- a/src/main/java/com/capitati/omtc/core/session/IEngineAssignableSession.java
+++ b/src/main/java/com/capitati/omtc/core/session/IEngineAssignableSession.java
@@ -34,9 +34,9 @@ public interface IEngineAssignableSession
extends IEngineRetrievableSession, IUserRetrievableSession {
/**
* Associate a user with an engine. This association should allow the user
- * to use the engine for a {@link com.capitati.omtc.core.translation.Translator}
- * object. Optionally, the implementation should back this association to some
- * persistent backing store.
+ * to use the engine for a {@link com.capitati.omtc.core.translation.ITranslator}
+ * implementation. Optionally, the implementation should back this association
+ * to some persistent backing store.
*
* @param engine - the engine to grant.
* @param theUser - the grantee.
@@ -46,8 +46,8 @@ extends IEngineRetrievableSession, IUserRetrievableSession {
/**
* Dissociate a user from an engine. The user shall no longer be able to use
- * an engine to build a {@link com.capitati.omtc.core.translation.Translator}
- * object. Whether the existing translator objects, that use the engine,
+ * an engine to build a {@link com.capitati.omtc.core.translation.ITranslator}
+ * implementation. Whether the existing translator objects, that use the engine,
* shall be destroyed immediately, or that the engine is no longer available
* for use in a translator is to implementation defined. Optionally, the
* implementation should back the dissociation to a persistent backing store.