ea6507c524925b1735f7eaf7c3e70984220a3d9e
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / section / occurrence / dna / DnaQualityDetailElement.java
1 // $Id$
2 /**
3 * Copyright (C) 2014 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10 package eu.etaxonomy.taxeditor.ui.section.occurrence.dna;
11
12 import eu.etaxonomy.cdm.model.molecular.DnaSample;
13 import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
14 import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
15 import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailElement;
16
17 /**
18 * @author pplitzner
19 * @date 05.03.2014
20 *
21 */
22 public class DnaQualityDetailElement extends AbstractCdmDetailElement<DnaSample> {
23
24 /**
25 * @param formFactory
26 * @param formElement
27 */
28 public DnaQualityDetailElement(CdmFormFactory formFactory, ICdmFormElement formElement) {
29 super(formFactory, formElement);
30 }
31
32 /*
33 * (non-Javadoc)
34 *
35 * @see
36 * eu.etaxonomy.taxeditor.section.AbstractCdmDetailElement#createControls
37 * (eu.etaxonomy.taxeditor.forms.ICdmFormElement, java.lang.Object, int)
38 */
39 @Override
40 protected void createControls(ICdmFormElement formElement, DnaSample entity, int style) {
41 //TODO DNA purification details
42 //TODO Ratio of absorbance 260-280
43 //TODO Ratio of absorbance 260-230
44 //TODO concentration unit
45 //TODO concentration
46 //TODO DNA quality
47 //TODO Quality check date
48 //TODO Descritpion
49 }
50
51 /*
52 * (non-Javadoc)
53 *
54 * @see
55 * eu.etaxonomy.taxeditor.section.AbstractCdmDetailElement#handleEvent(java
56 * .lang.Object)
57 */
58 @Override
59 public void handleEvent(Object eventSource) {
60 }
61 }