X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fschemabinding%2Fversion2%2FFeatureSettings.java;h=be6c20a6fd21a2d3bc8a7c52ee86069aea00bfc6;hb=ab43013b7e357b84b4abade0dba949668dfb2a0e;hp=8c4092943fb9254d3fcb4b8c40a260150898f0b8;hpb=47168f025aefdaa044802bd5f8f510ffe43a4808;p=jalview.git diff --git a/src/jalview/schemabinding/version2/FeatureSettings.java b/src/jalview/schemabinding/version2/FeatureSettings.java index 8c40929..be6c20a 100644 --- a/src/jalview/schemabinding/version2/FeatureSettings.java +++ b/src/jalview/schemabinding/version2/FeatureSettings.java @@ -1,5 +1,5 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1) * Copyright (C) 2014 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; @@ -158,8 +160,11 @@ public class FeatureSettings implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._groupList.size()) { - throw new IndexOutOfBoundsException("getGroup: Index value '" + index - + "' not in range [0.." + (this._groupList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "getGroup", + Integer.valueOf(index).toString(), + Integer.valueOf((this._groupList.size() - 1)).toString() + })); } return (jalview.schemabinding.version2.Group) _groupList.get(index); @@ -206,9 +211,11 @@ public class FeatureSettings implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._settingList.size()) { - throw new IndexOutOfBoundsException("getSetting: Index value '" - + index + "' not in range [0.." - + (this._settingList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "getSetting", + Integer.valueOf(index).toString(), + Integer.valueOf((this._settingList.size() - 1)).toString() + })); } return (jalview.schemabinding.version2.Setting) _settingList.get(index); @@ -374,8 +381,11 @@ public class FeatureSettings implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._groupList.size()) { - throw new IndexOutOfBoundsException("setGroup: Index value '" + index - + "' not in range [0.." + (this._groupList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "setGroup", + Integer.valueOf(index).toString(), + Integer.valueOf((this._groupList.size() - 1)).toString() + })); } this._groupList.set(index, vGroup); @@ -413,9 +423,11 @@ public class FeatureSettings implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._settingList.size()) { - throw new IndexOutOfBoundsException("setSetting: Index value '" - + index + "' not in range [0.." - + (this._settingList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "setSetting", + Integer.valueOf(index).toString(), + Integer.valueOf((this._settingList.size() - 1)).toString() + })); } this._settingList.set(index, vSetting);