package jalview.datamodel; import java.util.*; /** *

Title:

* *

Description:

* *

Copyright: Copyright (c) 2004

* *

Company: Dundee University

* * @author not attributable * @version 1.0 */ public class AlignmentOrder { public AlignmentOrder() { } public void setType(int Type) { this.Type = Type; } public int getType() { return Type; } public void setName(String Name) { this.Name = Name; } public String getName() { return Name; } public void setOrder(Vector Order) { this.Order = Order; } public Vector getOrder() { return Order; } // JBPNote : this method would return a vector containing all sequences in seqset // with those also contained in order at the beginning of the vector in the order // given by order. AlignmentSorter.vectorSubsetToArray already does this, but that method // should be here for completeness. /* public Vector getOrder(AlignmentI seqset) { Vector perm = new Vector(seqset.getHeight()); for (i=0, o = 0, n=seqset.getHeight(), p = Order.size(); i