X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fschemabinding%2Fversion2%2FJalviewModelSequence.java;h=57a5e3d8648697dd18bd9f9a9c3b5b7de878eb1e;hb=ad15cff29620f960119f80176f1fd443da9f6763;hp=b40ab809658b9fe190ec429769c9a7d00b470f64;hpb=47168f025aefdaa044802bd5f8f510ffe43a4808;p=jalview.git diff --git a/src/jalview/schemabinding/version2/JalviewModelSequence.java b/src/jalview/schemabinding/version2/JalviewModelSequence.java index b40ab80..57a5e3d 100644 --- a/src/jalview/schemabinding/version2/JalviewModelSequence.java +++ b/src/jalview/schemabinding/version2/JalviewModelSequence.java @@ -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; @@ -309,9 +311,11 @@ public class JalviewModelSequence implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._JGroupList.size()) { - throw new IndexOutOfBoundsException("getJGroup: Index value '" - + index + "' not in range [0.." - + (this._JGroupList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "getJGroup", + Integer.valueOf(index).toString(), + Integer.valueOf((this._JGroupList.size() - 1)).toString() + })); } return (jalview.schemabinding.version2.JGroup) _JGroupList.get(index); @@ -358,8 +362,11 @@ public class JalviewModelSequence implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._JSeqList.size()) { - throw new IndexOutOfBoundsException("getJSeq: Index value '" + index - + "' not in range [0.." + (this._JSeqList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "getJSeq", + Integer.valueOf(index).toString(), + Integer.valueOf((this._JSeqList.size() - 1)).toString() + })); } return (jalview.schemabinding.version2.JSeq) _JSeqList.get(index); @@ -406,8 +413,11 @@ public class JalviewModelSequence implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._treeList.size()) { - throw new IndexOutOfBoundsException("getTree: Index value '" + index - + "' not in range [0.." + (this._treeList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "getJgetTreeSeq", + Integer.valueOf(index).toString(), + Integer.valueOf((this._treeList.size() - 1)).toString() + })); } return (jalview.schemabinding.version2.Tree) _treeList.get(index); @@ -454,9 +464,11 @@ public class JalviewModelSequence implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._userColoursList.size()) { - throw new IndexOutOfBoundsException("getUserColours: Index value '" - + index + "' not in range [0.." - + (this._userColoursList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "getUserColours", + Integer.valueOf(index).toString(), + Integer.valueOf((this._userColoursList.size() - 1)).toString() + })); } return (jalview.schemabinding.version2.UserColours) _userColoursList @@ -504,9 +516,11 @@ public class JalviewModelSequence implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._viewportList.size()) { - throw new IndexOutOfBoundsException("getViewport: Index value '" - + index + "' not in range [0.." - + (this._viewportList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "getViewport", + Integer.valueOf(index).toString(), + Integer.valueOf((this._viewportList.size() - 1)).toString() + })); } return (jalview.schemabinding.version2.Viewport) _viewportList @@ -781,9 +795,11 @@ public class JalviewModelSequence implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._JGroupList.size()) { - throw new IndexOutOfBoundsException("setJGroup: Index value '" - + index + "' not in range [0.." - + (this._JGroupList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "setJGroup", + Integer.valueOf(index).toString(), + Integer.valueOf((this._JGroupList.size() - 1)).toString() + })); } this._JGroupList.set(index, vJGroup); @@ -821,8 +837,11 @@ public class JalviewModelSequence implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._JSeqList.size()) { - throw new IndexOutOfBoundsException("setJSeq: Index value '" + index - + "' not in range [0.." + (this._JSeqList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "setJSeq", + Integer.valueOf(index).toString(), + Integer.valueOf((this._JSeqList.size() - 1)).toString() + })); } this._JSeqList.set(index, vJSeq); @@ -859,8 +878,11 @@ public class JalviewModelSequence implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._treeList.size()) { - throw new IndexOutOfBoundsException("setTree: Index value '" + index - + "' not in range [0.." + (this._treeList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "setTree", + Integer.valueOf(index).toString(), + Integer.valueOf((this._treeList.size() - 1)).toString() + })); } this._treeList.set(index, vTree); @@ -897,9 +919,11 @@ public class JalviewModelSequence implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._userColoursList.size()) { - throw new IndexOutOfBoundsException("setUserColours: Index value '" - + index + "' not in range [0.." - + (this._userColoursList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "setUserColours", + Integer.valueOf(index).toString(), + Integer.valueOf((this._userColoursList.size() - 1)).toString() + })); } this._userColoursList.set(index, vUserColours); @@ -937,9 +961,11 @@ public class JalviewModelSequence implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._viewportList.size()) { - throw new IndexOutOfBoundsException("setViewport: Index value '" - + index + "' not in range [0.." - + (this._viewportList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "setViewport", + Integer.valueOf(index).toString(), + Integer.valueOf((this._viewportList.size() - 1)).toString() + })); } this._viewportList.set(index, vViewport);