X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2Fpacked%2FJalviewDataset.java;h=c1ca1b7a28765621332c821cd6c0f7f772f29a87;hb=37de9310bec3501cbc6381e0c3dcb282fcaad812;hp=40c80a651520f87ab3b9a5c0a67478538e46908b;hpb=b2f9a8d7bce642ff4011bc6d49e02bb0569fbb11;p=jalview.git diff --git a/src/jalview/io/packed/JalviewDataset.java b/src/jalview/io/packed/JalviewDataset.java index 40c80a6..c1ca1b7 100644 --- a/src/jalview/io/packed/JalviewDataset.java +++ b/src/jalview/io/packed/JalviewDataset.java @@ -1,30 +1,35 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.1) - * 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. * * 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 { @@ -53,7 +58,7 @@ public class JalviewDataset /** * @return the featureColours */ - public Hashtable getFeatureColours() + public Map getFeatureColours() { return featureColours; } @@ -62,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; } @@ -183,7 +188,7 @@ public class JalviewDataset /** * current set of feature colours */ - Hashtable featureColours; + Map featureColours; /** * original identity of each sequence in results @@ -197,7 +202,7 @@ public class JalviewDataset seqDetails = new Hashtable(); al = new ArrayList(); parentDataset = null; - featureColours = new Hashtable(); + featureColours = new HashMap(); } /** @@ -205,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); } @@ -226,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;