Project

General

Profile

« Previous | Next » 

Revision 309c12be

Added by Andreas Müller almost 4 years ago

ref #9002, ref #9005 use getSymbol() for TaxonNode.status in TaxEditor

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/util/TaxonTreeNodeLabelProvider.java
62 62
                    return text;
63 63
                }else{
64 64
                    try{
65
                        String text= "";
66
                            if (taxonNode.isUnplaced()){
67
                                text += Character.toString((char)63) + " ";
68
                            }
69
                            if (taxonNode.isExcluded()){
70
                                text +=Character.toString((char)248) + " ";
71
                            }
72
                            if (taxonNode.isDoubtful()){
73
                                text +=Character.toString((char)63) +Character.toString((char)63)+ " ";
65
                        String text = "";
66
                            if (taxonNode.getStatus() != null){
67
                                text += taxonNode.getStatus().getSymbol() + " ";
74 68
                            }
75 69
                        text += taxon.getName() != null ? ((IIdentifiableEntity) HibernateProxyHelper.deproxy(taxon.getName())).getTitleCache() : new String();
76 70
                        return text;

Also available in: Unified diff