1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
package compbio.data.msa.jaxws;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlRootElement(name = "align", namespace = "http://msa.data.compbio/01/01/2010/")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "align", namespace = "http://msa.data.compbio/01/01/2010/")
public class Align {
@XmlElement(name = "fastaSequences", namespace = "")
private List<compbio.data.sequence.FastaSequence> fastaSequences;
/**
*
* @return
* returns List<FastaSequence>
*/
public List<compbio.data.sequence.FastaSequence> getFastaSequences() {
return this.fastaSequences;
}
/**
*
* @param fastaSequences
* the value for the fastaSequences property
*/
public void setFastaSequences(List<compbio.data.sequence.FastaSequence> fastaSequences) {
this.fastaSequences = fastaSequences;
}
}
|