Project

General

Profile

Download (891 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * Copyright (C) 2009 EDIT
3
 * European Distributed Institute of Taxonomy
4
 * http://www.e-taxonomy.eu
5
 *
6
 * The contents of this file are subject to the Mozilla Public License Version 1.1
7
 * See LICENSE.TXT at the top of this package for the full license terms.
8
 */
9

    
10
package eu.etaxonomy.cdm.remote.editor;
11

    
12
import java.beans.PropertyEditorSupport;
13
import java.util.UUID;
14

    
15
import org.springframework.beans.factory.annotation.Autowired;
16

    
17
import eu.etaxonomy.cdm.api.service.ITermService;
18

    
19
/**
20
 * @author a.kohlbecker
21
 * @since 30.06.2009
22
 * @deprecated use TermBasePropertyEditor instead
23
 */
24
@Deprecated
25
public class NamedAreaPropertyEditor extends PropertyEditorSupport  {
26

    
27
    @Autowired
28
    private ITermService termService;
29

    
30
    @Override
31
    public void setAsText(String text) {
32
            setValue(termService.load(UUID.fromString(text)));
33
    }
34
}
(10-10/18)