X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjalview%2Fschemabinding%2Fversion2%2FPdbids.java;fp=src%2Fjalview%2Fschemabinding%2Fversion2%2FPdbids.java;h=bf700f94aeb748b10508bfc1cb8a20385bcb40fb;hb=8ba93f7655ea7165579539158b6a5eb076135bba;hp=b491cf07229dc3c583d7449a58435d85e116f7d1;hpb=fe6b3fb39308b5c045849db2be75ba07824be776;p=jalview.git diff --git a/src/jalview/schemabinding/version2/Pdbids.java b/src/jalview/schemabinding/version2/Pdbids.java index b491cf0..bf700f9 100644 --- a/src/jalview/schemabinding/version2/Pdbids.java +++ b/src/jalview/schemabinding/version2/Pdbids.java @@ -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; @@ -115,10 +117,11 @@ public class Pdbids extends jalview.schemabinding.version2.Pdbentry // check bounds for index if (index < 0 || index >= this._structureStateList.size()) { - throw new IndexOutOfBoundsException( - "getStructureState: Index value '" + index - + "' not in range [0.." - + (this._structureStateList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "getStructureState", + Integer.valueOf(index).toString(), + Integer.valueOf((this._structureStateList.size() - 1)).toString() + })); } return (jalview.schemabinding.version2.StructureState) _structureStateList @@ -255,10 +258,11 @@ public class Pdbids extends jalview.schemabinding.version2.Pdbentry // check bounds for index if (index < 0 || index >= this._structureStateList.size()) { - throw new IndexOutOfBoundsException( - "setStructureState: Index value '" + index - + "' not in range [0.." - + (this._structureStateList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "setStructureState", + Integer.valueOf(index).toString(), + Integer.valueOf((this._structureStateList.size() - 1)).toString() + })); } this._structureStateList.set(index, vStructureState);