org.opencb.biodata.models.protein.Interactor Maven / Gradle / Ivy
The newest version!
/*
*
*
*/
package org.opencb.biodata.models.protein;
import java.util.List;
/**
* Created with IntelliJ IDEA.
* User: mbleda
* Date: 12/5/13
* Time: 12:05 PM
* To change this template use File | Settings | File Templates.
*/
public class Interactor {
private String id;
private String dbName;
private List biologicalRole;
private Psimi moleculeType;
private List xrefs;
public Interactor() {
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getDbName() {
return dbName;
}
public void setDbName(String dbName) {
this.dbName = dbName;
}
public List getBiologicalRole() {
return biologicalRole;
}
public void setBiologicalRole(List biologicalRole) {
this.biologicalRole = biologicalRole;
}
public Psimi getMoleculeType() {
return moleculeType;
}
public void setMoleculeType(Psimi moleculeType) {
this.moleculeType = moleculeType;
}
public List getXrefs() {
return xrefs;
}
public void setXrefs(List xrefs) {
this.xrefs = xrefs;
}
}