Project

General

Profile

« Previous | Next » 

Revision 24802dc7

Added by Katja Luther over 4 years ago

ref #8486: add symbol to doubtful taxonnode in navigator

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/util/TaxonTreeNodeLabelProvider.java
69 69
                            if (taxonNode.isExcluded()){
70 70
                                text +=Character.toString((char)248) + " ";
71 71
                            }
72
                            if (taxonNode.isDoubtful()){
73
                                text +=Character.toString((char)63) +Character.toString((char)63)+ " ";
74
                            }
72 75
                        text += taxon.getName() != null ? ((IIdentifiableEntity) HibernateProxyHelper.deproxy(taxon.getName())).getTitleCache() : new String();
73 76
                        return text;
74 77
                    }catch(Exception e){
......
83 86
            TaxonNodeDto taxonNode = (TaxonNodeDto) element;
84 87
            String text= "";
85 88
            if (taxonNode.isUnplaced()){
86
                text += Character.toString((char)63) + " ";
89
                text += Character.toString((char)63) + Character.toString((char)63) + " ";
87 90
            }
88 91
            if (taxonNode.isExcluded()) {
89 92
                text +=Character.toString((char)248) + " ";
90 93
            }
94
            if (taxonNode.isDoubtful()) {
95
                text +=Character.toString((char)63) + " ";
96
            }
91 97
            text += taxonNode.getTitleCache();
92 98
            return text;
93 99
        }

Also available in: Unified diff