- completely removed DetailType enum and all its uses
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / section / taxon / ParsingMessagesSection.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 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
11 package eu.etaxonomy.taxeditor.ui.section.taxon;
12
13 import org.eclipse.jface.viewers.ISelectionProvider;
14 import org.eclipse.swt.SWT;
15 import org.eclipse.swt.widgets.Control;
16
17 import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
18 import eu.etaxonomy.cdm.hibernate.HibernateProxyHelper;
19 import eu.etaxonomy.cdm.model.name.NonViralName;
20 import eu.etaxonomy.cdm.model.taxon.TaxonBase;
21 import eu.etaxonomy.cdm.strategy.parser.ParserProblem;
22 import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
23 import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
24 import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailElement;
25 import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection;
26 import eu.etaxonomy.taxeditor.ui.section.ITaxonBaseDetailSection;
27
28 /**
29 * <p>ParsingMessagesSection class.</p>
30 *
31 * @author n.hoffmann
32 * @created Mar 3, 2010
33 * @version 1.0
34 */
35 public class ParsingMessagesSection extends AbstractCdmDetailSection<NonViralName> implements ITaxonBaseDetailSection {
36
37 /** Constant <code>HEADING_SUCCESS=""</code> */
38 public static final String HEADING_SUCCESS = "";
39 /** Constant <code>HEADING_PROBLEM="The name has problems."</code> */
40 public static final String HEADING_PROBLEM = "The name has problems.";
41 private TaxonBase taxonBase;
42
43 /**
44 * <p>Constructor for ParsingMessagesSection.</p>
45 *
46 * @param cdmFormFactory a {@link eu.etaxonomy.taxeditor.ui.element.CdmFormFactory} object.
47 * @param conversation a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder} object.
48 * @param parentElement a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement} object.
49 * @param selectionProvider a {@link org.eclipse.jface.viewers.ISelectionProvider} object.
50 * @param style a int.
51 */
52 public ParsingMessagesSection(CdmFormFactory cdmFormFactory, ConversationHolder conversation, ICdmFormElement parentElement,
53 ISelectionProvider selectionProvider, int style) {
54 super(cdmFormFactory, conversation, parentElement, selectionProvider, style);
55 }
56
57 /** {@inheritDoc} */
58 @Override
59 protected void createControls(AbstractCdmDetailSection formElement, int style) {
60 // we do it differently here
61 }
62
63 /** {@inheritDoc} */
64 @Override
65 public void setTaxonBase(TaxonBase entity) {
66 this.taxonBase = entity;
67 setEntity((NonViralName) HibernateProxyHelper.deproxy(entity.getName()));
68 destroyParsingProblemComposites();
69 if(getEntity().hasProblem()){
70 displayParsingProblems();
71 }
72 }
73
74 private void destroyParsingProblemComposites() {
75 setText(HEADING_SUCCESS);
76 for(Control control : getLayoutComposite().getChildren()){
77 control.dispose();
78 control = null;
79 }
80 }
81
82 private void displayParsingProblems() {
83 setText(HEADING_PROBLEM);
84 for(Object parserProblem : getEntity().getParsingProblems()){
85 formFactory.createParsingMessageElement(this, (ParserProblem) parserProblem, SWT.NULL);
86 }
87 this.layout();
88 }
89
90 /** {@inheritDoc} */
91 @Override
92 public String getHeading() {
93 return HEADING_SUCCESS;
94 }
95
96 /* (non-Javadoc)
97 * @see eu.etaxonomy.taxeditor.section.ITaxonDetailSection#getTaxon(eu.etaxonomy.cdm.model.taxon.TaxonBase)
98 */
99 @Override
100 public TaxonBase getTaxonBase() {
101 return taxonBase;
102 }
103
104 /* (non-Javadoc)
105 * @see eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection#createCdmDetailElement(eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection, int)
106 */
107 @Override
108 protected AbstractCdmDetailElement<NonViralName> createCdmDetailElement(AbstractCdmDetailSection<NonViralName> parentElement, int style) {
109 //no detail element
110 return null;
111 }
112 }