JAL-1355
[jalview.git] / src / jalview / io / vamsas / Rangetype.java
index afbfa8d..3cc977f 100644 (file)
@@ -1,20 +1,22 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Development Version 2.4.1)
- * Copyright (C) 2009 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
+ * Copyright (C) 2014 The Jalview Authors
  * 
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
+ * This file is part of Jalview.
  * 
- * This program 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 General Public License for more details.
+ * Jalview is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License 
+ * as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *  
+ * Jalview 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 General Public License for more details.
  * 
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
+ * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
+ * The Jalview Authors are detailed in the 'AUTHORS' file.
  */
 package jalview.io.vamsas;
 
@@ -22,18 +24,19 @@ import java.util.Vector;
 
 import uk.ac.vamsas.client.Vobject;
 import uk.ac.vamsas.objects.core.Local;
-import uk.ac.vamsas.objects.core.Map;
 import uk.ac.vamsas.objects.core.MapType;
 import uk.ac.vamsas.objects.core.Mapped;
 import uk.ac.vamsas.objects.core.RangeType;
 import uk.ac.vamsas.objects.core.Seg;
-import jalview.datamodel.DBRefEntry;
-import jalview.datamodel.Mapping;
 import jalview.io.VamsasAppDatastore;
+import jalview.util.MessageManager;
+
 /**
- * Enhances DatastoreItem objects with additional functions to do with RangeType objects
+ * Enhances DatastoreItem objects with additional functions to do with RangeType
+ * objects
+ * 
  * @author JimP
- *
+ * 
  */
 public abstract class Rangetype extends DatastoreItem
 {
@@ -47,11 +50,12 @@ public abstract class Rangetype extends DatastoreItem
   {
     super(datastore);
   }
-  
+
   public Rangetype(VamsasAppDatastore datastore, Vobject vobj, Class jvClass)
   {
     super(datastore, vobj, jvClass);
   }
+
   public Rangetype(VamsasAppDatastore datastore, Object jvobj, Class vClass)
   {
     super(datastore, jvobj, vClass);
@@ -72,8 +76,7 @@ public abstract class Rangetype extends DatastoreItem
       int[] se = null;
       if (dseta.getSegCount() > 0 && dseta.getPosCount() > 0)
       {
-        throw new Error(
-                "Invalid vamsas RangeType - cannot resolve both lists of Pos and Seg from choice!");
+        throw new Error(MessageManager.getString("error.invalid_vamsas_rangetype_cannot_resolve_lists"));
       }
       if (dseta.getSegCount() > 0)
       {
@@ -131,8 +134,7 @@ public abstract class Rangetype extends DatastoreItem
       int[] se = null;
       if (dseta.getSegCount() > 0 && dseta.getPosCount() > 0)
       {
-        throw new Error(
-                "Invalid vamsas RangeType - cannot resolve both lists of Pos and Seg from choice!");
+        throw new Error(MessageManager.getString("error.invalid_vamsas_rangetype_cannot_resolve_lists"));
       }
       if (dseta.getSegCount() > 0)
       {
@@ -179,8 +181,7 @@ public abstract class Rangetype extends DatastoreItem
       int[] se = null;
       if (range.getSegCount() > 0 && range.getPosCount() > 0)
       {
-        throw new Error(
-                "Invalid vamsas RangeType - cannot resolve both lists of Pos and Seg from choice!");
+        throw new Error(MessageManager.getString("error.invalid_vamsas_rangetype_cannot_resolve_lists"));
       }
       if (range.getSegCount() > 0)
       {
@@ -237,12 +238,10 @@ public abstract class Rangetype extends DatastoreItem
   /**
    * 
    * @param maprange
-   *                where the from range is the local mapped range, and the to
-   *                range is the 'mapped' range in the MapRangeType
-   * @param default
-   *                unit for local
-   * @param default
-   *                unit for mapped
+   *          where the from range is the local mapped range, and the to range
+   *          is the 'mapped' range in the MapRangeType
+   * @param default unit for local
+   * @param default unit for mapped
    * @return MapList
    */
   protected jalview.util.MapList parsemapType(MapType maprange, int localu,
@@ -290,17 +289,15 @@ public abstract class Rangetype extends DatastoreItem
    * @param maprange
    * @param ml
    * @param setUnits
-   * @param reverse -
-   *                reverse MapList mapping for Local and Mapped ranges and
-   *                units
+   * @param reverse
+   *          - reverse MapList mapping for Local and Mapped ranges and units
    */
   protected void initMapType(MapType maprange, jalview.util.MapList ml,
           boolean setUnits, boolean reverse)
   {
     if (ml == null)
     {
-      throw new Error(
-              "Implementation error. MapList is null for initMapType.");
+      throw new Error(MessageManager.getString("error.implementation_error_maplist_is_null"));
     }
     maprange.setLocal(new Local());
     maprange.setMapped(new Mapped());
@@ -326,9 +323,10 @@ public abstract class Rangetype extends DatastoreItem
         maprange.getLocal().setUnit(ml.getToRatio());
         maprange.getMapped().setUnit(ml.getFromRatio());
       }
-      // TODO: and verify - raise an implementation fault notice if local/mapped range % Local/Mapped Ratio != 0
+      // TODO: and verify - raise an implementation fault notice if local/mapped
+      // range % Local/Mapped Ratio != 0
       // if (uk.ac.vamsas.objects.utils.Range.getIntervals(range))
-      
+
     }
   }