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:
authorIan Johnson <ian.johnson@appliedlanguage.com>2013-02-25 17:39:57 +0400
committerIan Johnson <ian.johnson@appliedlanguage.com>2013-02-25 17:39:57 +0400
commite0d9e567dce11762fbf2741b0a872bce28dab30e (patch)
tree57fd8573bddbe8283cf513373d3253dd49ff868b
parent7800d9cdf46589f3b8c613e24ea028bc393cf915 (diff)
Added LGPL and documentation.
-rw-r--r--src/main/java/com/capitati/omtc/core/resources/IMonolingualResource.java23
-rw-r--r--src/main/java/com/capitati/omtc/core/resources/IMultilingualResource.java2
2 files changed, 24 insertions, 1 deletions
diff --git a/src/main/java/com/capitati/omtc/core/resources/IMonolingualResource.java b/src/main/java/com/capitati/omtc/core/resources/IMonolingualResource.java
index 9991189..083437f 100644
--- a/src/main/java/com/capitati/omtc/core/resources/IMonolingualResource.java
+++ b/src/main/java/com/capitati/omtc/core/resources/IMonolingualResource.java
@@ -1,5 +1,28 @@
+/*
+ * Copyright Capita Translation and Interpreting 2013
+ *
+ * This file is part of OMTC.
+ *
+ * OMTC is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * OMTC is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with OMTC. If not, see <http://www.gnu.org/licenses/>.
+ */
package com.capitati.omtc.core.resources;
+/**
+ * An abstract resource that contains monolingual data.
+ *
+ * @author ian
+ */
public interface IMonolingualResource extends IPrimaryResource {
/**
* Retrieve the language code.
diff --git a/src/main/java/com/capitati/omtc/core/resources/IMultilingualResource.java b/src/main/java/com/capitati/omtc/core/resources/IMultilingualResource.java
index ab62522..1c89640 100644
--- a/src/main/java/com/capitati/omtc/core/resources/IMultilingualResource.java
+++ b/src/main/java/com/capitati/omtc/core/resources/IMultilingualResource.java
@@ -23,7 +23,7 @@ import java.util.Map;
import com.capitati.omtc.core.resources.IPrimaryResource;
/**
- * An abstract resource that will be used in some translation operation.
+ * An abstract resource that contains multilingual data.
*
* @author ian
*/