X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fschemabinding%2Fversion2%2FJGroup.java;h=523115fcf86507ff7f2b517a45e247cf388b35e4;hb=ab43013b7e357b84b4abade0dba949668dfb2a0e;hp=56e43b7306b324aedd55af06fce848e2a00a6810;hpb=985f0371b8ea6b3dbb4e1b77d67bba7f7f180b28;p=jalview.git diff --git a/src/jalview/schemabinding/version2/JGroup.java b/src/jalview/schemabinding/version2/JGroup.java index 56e43b7..523115f 100644 --- a/src/jalview/schemabinding/version2/JGroup.java +++ b/src/jalview/schemabinding/version2/JGroup.java @@ -1,35 +1,31 @@ -/******************************************************************************* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.0b1) +/* + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1) * Copyright (C) 2014 The Jalview Authors * * This file is part of Jalview. * * Jalview is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. * * Jalview is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License along with Jalview. - * If not, see . + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . * The Jalview Authors are detailed in the 'AUTHORS' file. - ******************************************************************************/ -/* - * This class was automatically generated with - * Castor 1.1, using an XML - * Schema. - * $Id$ */ - package jalview.schemabinding.version2; //---------------------------------/ //- Imported classes and packages -/ //---------------------------------/ +import jalview.util.MessageManager; + import org.exolab.castor.xml.Marshaller; import org.exolab.castor.xml.Unmarshaller; @@ -226,6 +222,11 @@ public class JGroup implements java.io.Serializable */ private java.util.Vector _seqList; + /** + * Field _annotationColours. + */ + private jalview.schemabinding.version2.AnnotationColours _annotationColours; + // ----------------/ // - Constructors -/ // ----------------/ @@ -390,6 +391,16 @@ public class JGroup implements java.io.Serializable } /** + * Returns the value of field 'annotationColours'. + * + * @return the value of field 'AnnotationColours'. + */ + public jalview.schemabinding.version2.AnnotationColours getAnnotationColours() + { + return this._annotationColours; + } + + /** * Returns the value of field 'colour'. * * @return the value of field 'Colour'. @@ -526,8 +537,11 @@ public class JGroup implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._seqList.size()) { - throw new IndexOutOfBoundsException("getSeq: Index value '" + index - + "' not in range [0.." + (this._seqList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "getSeq", + Integer.valueOf(index).toString(), + Integer.valueOf((this._seqList.size() - 1)).toString() + })); } return (java.lang.String) _seqList.get(index); @@ -954,6 +968,18 @@ public class JGroup implements java.io.Serializable } /** + * Sets the value of field 'annotationColours'. + * + * @param annotationColours + * the value of field 'annotationColours'. + */ + public void setAnnotationColours( + final jalview.schemabinding.version2.AnnotationColours annotationColours) + { + this._annotationColours = annotationColours; + } + + /** * Sets the value of field 'colour'. * * @param colour @@ -1110,8 +1136,11 @@ public class JGroup implements java.io.Serializable // check bounds for index if (index < 0 || index >= this._seqList.size()) { - throw new IndexOutOfBoundsException("setSeq: Index value '" + index - + "' not in range [0.." + (this._seqList.size() - 1) + "]"); + throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{ + "setSeq", + Integer.valueOf(index).toString(), + Integer.valueOf((this._seqList.size() - 1)).toString() + })); } this._seqList.set(index, vSeq);