Example #1
0
 /**
  * Overrides the protected Object.clone() method exposing it as public. It performs a 2 tier copy,
  * that is, it does a memcopy of the instance and then sets all the non-primitive data fields to
  * clones of themselves.
  *
  * @return -A minimum 2 deep copy of this object.
  */
 public Object clone() {
   GeneExpressionQuery myClone = null;
   myClone = (GeneExpressionQuery) super.clone();
   if (allGenesCrit != null) {
     myClone.allGenesCrit = (AllGenesCriteria) allGenesCrit.clone();
   }
   if (arrayPlatformCriteria != null) {
     myClone.arrayPlatformCriteria = (ArrayPlatformCriteria) arrayPlatformCriteria.clone();
   }
   if (cloneOrProbeIDCriteria != null) {
     myClone.cloneOrProbeIDCriteria = (CloneOrProbeIDCriteria) cloneOrProbeIDCriteria.clone();
   }
   if (foldChgCrit != null) {
     myClone.foldChgCrit = (FoldChangeCriteria) foldChgCrit.clone();
   }
   if (geneIDCrit != null) {
     myClone.geneIDCrit = (GeneIDCriteria) geneIDCrit.clone();
   }
   if (geneOntologyCriteria != null) {
     myClone.geneOntologyCriteria = (GeneOntologyCriteria) geneOntologyCriteria.clone();
   }
   if (pathwayCriteria != null) {
     myClone.pathwayCriteria = (PathwayCriteria) pathwayCriteria.clone();
   }
   if (regionCrit != null) {
     myClone.regionCrit = (RegionCriteria) regionCrit.clone();
   }
   return myClone;
 }