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/resources/ITranslationMemory.java')
-rw-r--r--src/main/java/com/capitati/omtc/core/resources/ITranslationMemory.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/java/com/capitati/omtc/core/resources/ITranslationMemory.java b/src/main/java/com/capitati/omtc/core/resources/ITranslationMemory.java
new file mode 100644
index 0000000..c3d8730
--- /dev/null
+++ b/src/main/java/com/capitati/omtc/core/resources/ITranslationMemory.java
@@ -0,0 +1,15 @@
+package com.capitati.omtc.core.resources;
+
+/**
+ * A translation memory.
+ *
+ * @author ian
+ */
+public interface ITranslationMemory extends ITranslationResource {
+ /**
+ * Retrieves the number of segments from the translation memory.
+ *
+ * @return The segment count of the translation memory.
+ */
+ int getNumberOfSegments();
+}