X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fbinding%2FAnnotation.java;h=982a7809590135660d15fd585d7f17d14adc17f3;hb=ab43013b7e357b84b4abade0dba949668dfb2a0e;hp=d1f28c0a7298a7b89a862938d105f69d56b1eec0;hpb=47168f025aefdaa044802bd5f8f510ffe43a4808;p=jalview.git diff --git a/src/jalview/binding/Annotation.java b/src/jalview/binding/Annotation.java index d1f28c0..982a780 100644 --- a/src/jalview/binding/Annotation.java +++ b/src/jalview/binding/Annotation.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.binding; //- Imported classes and packages -/ //---------------------------------/ +import jalview.util.MessageManager; + import org.exolab.castor.xml.Marshaller; import org.exolab.castor.xml.Unmarshaller; @@ -156,10 +158,11 @@ public class Annotation implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._annotationElementList.size()) { - throw new IndexOutOfBoundsException( - "getAnnotationElement: Index value '" + index - + "' not in range [0.." - + (this._annotationElementList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "getAnnotationElement", + Integer.valueOf(index).toString(), + Integer.valueOf((this._annotationElementList.size() - 1)).toString() + })); } return (jalview.binding.AnnotationElement) _annotationElementList @@ -365,10 +368,11 @@ public class Annotation implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._annotationElementList.size()) { - throw new IndexOutOfBoundsException( - "setAnnotationElement: Index value '" + index - + "' not in range [0.." - + (this._annotationElementList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "setAnnotationElement", + Integer.valueOf(index).toString(), + Integer.valueOf((this._annotationElementList.size() - 1)).toString() + })); } this._annotationElementList.set(index, vAnnotationElement);