X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2Fpacked%2FJalviewDataset.java;h=c1ca1b7a28765621332c821cd6c0f7f772f29a87;hb=e6e92a1314a7b7557401b829846ac55dcffbfbe2;hp=d0ecf2ce473caef26a0e2b6170cce10127667183;hpb=b57a02c25e335d033c97f8a6bacd6b54f62bd2b6;p=jalview.git diff --git a/src/jalview/io/packed/JalviewDataset.java b/src/jalview/io/packed/JalviewDataset.java index d0ecf2c..c1ca1b7 100644 --- a/src/jalview/io/packed/JalviewDataset.java +++ b/src/jalview/io/packed/JalviewDataset.java @@ -1,29 +1,35 @@ -/******************************************************************************* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7) - * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle - * +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ 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. + */ package jalview.io.packed; +import jalview.api.FeatureColourI; import jalview.datamodel.AlignmentI; import jalview.datamodel.SequenceI; import jalview.io.NewickFile; import java.util.ArrayList; +import java.util.HashMap; import java.util.Hashtable; import java.util.List; +import java.util.Map; public class JalviewDataset { @@ -52,7 +58,7 @@ public class JalviewDataset /** * @return the featureColours */ - public Hashtable getFeatureColours() + public Map getFeatureColours() { return featureColours; } @@ -61,7 +67,7 @@ public class JalviewDataset * @param featureColours * the featureColours to set */ - public void setFeatureColours(Hashtable featureColours) + public void setFeatureColours(Map featureColours) { this.featureColours = featureColours; } @@ -182,7 +188,7 @@ public class JalviewDataset /** * current set of feature colours */ - Hashtable featureColours; + Map featureColours; /** * original identity of each sequence in results @@ -196,7 +202,7 @@ public class JalviewDataset seqDetails = new Hashtable(); al = new ArrayList(); parentDataset = null; - featureColours = new Hashtable(); + featureColours = new HashMap(); } /** @@ -204,9 +210,10 @@ public class JalviewDataset * * @param parentAlignment */ - public JalviewDataset(AlignmentI aldataset, Hashtable fc, - Hashtable seqDets) + public JalviewDataset(AlignmentI aldataset, + Map fc, Hashtable seqDets) { + // TODO not used - remove? this(aldataset, fc, seqDets, null); } @@ -225,8 +232,9 @@ public class JalviewDataset * (may be null) alignment to associate new annotation and trees * with. */ - public JalviewDataset(AlignmentI aldataset, Hashtable fc, - Hashtable seqDets, AlignmentI parentAlignment) + public JalviewDataset(AlignmentI aldataset, + Map fc, Hashtable seqDets, + AlignmentI parentAlignment) { this(); parentDataset = aldataset; @@ -319,4 +327,4 @@ public class JalviewDataset { getLastAlignmentSet().updateSetModified(modified); } -} \ No newline at end of file +}