Package org.patika.mada.dataXML

Examples of org.patika.mada.dataXML.Experiment


  {
    List<Integer> expNos = new ArrayList<Integer>();

    for (Object o : man.getCed().getExperiment())
    {
      Experiment e = (Experiment) o;
      int no = e.getNo();
      assert !expNos.contains(no);
      expNos.add(no);
    }

    this.expNos = expNos.toArray(new Integer[0]);
View Full Code Here

TOP

Related Classes of org.patika.mada.dataXML.Experiment

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.