diff --git a/uk/ac/sanger/artemis/chado/ChadoFeature.java b/uk/ac/sanger/artemis/chado/ChadoFeature.java index 7be4bde0270e7896828763303f775aa3ff5186ba..dbd304096d2fe0f05db45bc0d823bd220df3df9b 100644 --- a/uk/ac/sanger/artemis/chado/ChadoFeature.java +++ b/uk/ac/sanger/artemis/chado/ChadoFeature.java @@ -68,6 +68,10 @@ public class ChadoFeature private Hashtable qualifiers; /** list of ChadoFeatureProp */ private List featurepropList; + /** list of ChadoFeatureRelationship children */ + private List featureRelationshipsForObjectId; + /** list of ChadoFeatureRelationship parent */ + private List featureRelationshipsForSubjectId; private List featureCvterms = new Vector(); @@ -357,6 +361,28 @@ public class ChadoFeature } } + public List getFeatureRelationshipsForObjectId() + { + return featureRelationshipsForObjectId; + } + + public void setFeatureRelationshipsForObjectId( + List featureRelationshipsForObjectId) + { + this.featureRelationshipsForObjectId = featureRelationshipsForObjectId; + } + + public List getFeatureRelationshipsForSubjectId() + { + return featureRelationshipsForSubjectId; + } + + public void setFeatureRelationshipsForSubjectId( + List featureRelationshipsForSubjectId) + { + this.featureRelationshipsForSubjectId = featureRelationshipsForSubjectId; + } + /** * Used in merging the qualifiers to store them as a <code>Hashtable</code> of * the cvterm type_id (of the property name) and the property values as a @@ -393,5 +419,5 @@ public class ChadoFeature { return qualifiers; } - + }