X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fschemabinding%2Fversion2%2FPdbids.java;h=5214c31a50a1a38ce48f769da920f1c3d66d58d3;hb=a394f0df3650d5b1e0b76e0319b650fe8ac98e41;hp=b491cf07229dc3c583d7449a58435d85e116f7d1;hpb=47168f025aefdaa044802bd5f8f510ffe43a4808;p=jalview.git diff --git a/src/jalview/schemabinding/version2/Pdbids.java b/src/jalview/schemabinding/version2/Pdbids.java index b491cf0..5214c31 100644 --- a/src/jalview/schemabinding/version2/Pdbids.java +++ b/src/jalview/schemabinding/version2/Pdbids.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; @@ -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);