JAl-1421 fix method reflection argument (properly this time)
[jalview.git] / src / jalview / schemabinding / version2 / Pdbentry.java
index 8644745..402d4b9 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
- * Copyright (C) 2014 The Jalview Authors
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
@@ -24,6 +24,8 @@ package jalview.schemabinding.version2;
 //- Imported classes and packages -/
 //---------------------------------/
 
+import jalview.util.MessageManager;
+
 import org.exolab.castor.xml.Marshaller;
 import org.exolab.castor.xml.Unmarshaller;
 
@@ -148,9 +150,11 @@ public class Pdbentry implements java.io.Serializable
     // check bounds for index
     if (index < 0 || index >= this._items.size())
     {
-      throw new IndexOutOfBoundsException("getPdbentryItem: Index value '"
-              + index + "' not in range [0.." + (this._items.size() - 1)
-              + "]");
+        throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{
+                         "getPdbentryItem",
+                         Integer.valueOf(index).toString(),
+                         Integer.valueOf((this._items.size() - 1)).toString()
+          })); 
     }
 
     return (jalview.schemabinding.version2.PdbentryItem) _items.get(index);
@@ -316,9 +320,11 @@ public class Pdbentry implements java.io.Serializable
     // check bounds for index
     if (index < 0 || index >= this._items.size())
     {
-      throw new IndexOutOfBoundsException("setPdbentryItem: Index value '"
-              + index + "' not in range [0.." + (this._items.size() - 1)
-              + "]");
+        throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{
+                 "setPdbentryItem",
+                 Integer.valueOf(index).toString(),
+                 Integer.valueOf((this._items.size() - 1)).toString()
+        })); 
     }
 
     this._items.set(index, vPdbentryItem);