Statistics
| Revision:

gvsig-catalog / org.gvsig.catalog / branches / org.gvsig.catalog-CSW2.0.2 / org.gvsig.catalog / org.gvsig.catalog.lib / src / main / java / org / gvsig / catalog / schemas / IdeeISO19115Record.java @ 55

History | View | Annotate | Download (3.25 KB)

1

    
2
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
3
 *
4
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
19
 *
20
 * For more information, contact:
21
 *
22
 *  Generalitat Valenciana
23
 *   Conselleria d'Infraestructures i Transport
24
 *   Av. Blasco Ib??ez, 50
25
 *   46010 VALENCIA
26
 *   SPAIN
27
 *
28
 *      +34 963862235
29
 *   gvsig@gva.es
30
 *      www.gvsig.gva.es
31
 *
32
 *    or
33
 *
34
 *   IVER T.I. S.A
35
 *   Salamanca 50
36
 *   46005 Valencia
37
 *   Spain
38
 *
39
 *   +34 963163400
40
 *   dac@iver.es
41
 */
42
package org.gvsig.catalog.schemas;
43
import java.net.URI;
44

    
45
import org.gvsig.catalog.metadataxml.XMLNode;
46
import org.gvsig.catalog.metadataxml.XMLTree;
47

    
48
/**
49
 * 
50
 * 
51
 * 
52
 * @author Jorge Piera Llodra (piera_jor@gva.es)
53
 */
54
public class IdeeISO19115Record extends Record {
55

    
56
        public  IdeeISO19115Record() {   
57

    
58
        }
59
        /**
60
         * @param node 
61
         */
62
        public  IdeeISO19115Record(URI uri,XMLNode node) {        
63
                super(uri, node);
64
                setTitle(XMLTree.searchNodeValue(node,
65
                                "recordData->MD_Metadata->identificationInfo->MD_DataIdentification->citation->CI_Citation->title"));
66
                setAbstract_(XMLTree.searchNodeValue(node,
67
                "recordData->MD_Metadata->identificationInfo->MD_DataIdentification->abstract"));
68
                setPurpose(XMLTree.searchNodeValue(node,
69
                "recordData->MD_Metadata->identificationInfo->MD_DataIdentification->purpose"));
70
                setKeyWords(XMLTree.searchMultipleNodeValue(node,
71
                "recordData->MD_Metadata->identificationInfo->MD_DataIdentification->descriptiveKeywords->MD_Keywords->keyword"));
72
                //this.setResources(getResources(node,""));
73
        } 
74

    
75
        /**
76
         * 
77
         * 
78
         * 
79
         * @return 
80
         * @param node 
81
         * @param label 
82
         */
83
        public Resource[] getResources(XMLNode node, String label) {        
84
                XMLNode[] nodes = XMLTree.searchMultipleNode(node, label);
85
                if (nodes == null) {
86
                        return null;
87
                }
88
                Resource[] resources = new Resource[nodes.length];
89
                for (int i = 0; i < resources.length; i++)
90
                        resources[i] = new Resource(XMLTree.searchNodeValue(nodes[i], ""),
91
                                        XMLTree.searchNodeValue(nodes[i], ""),
92
                                        XMLTree.searchNodeValue(nodes[i], ""),
93
                                        XMLTree.searchNodeValue(nodes[i], ""),
94
                                        XMLTree.searchNodeAtribute(nodes[i], "", ""),
95
                                        XMLTree.searchNodeValue(nodes[i],""),
96
                                        null);
97
                return resources;
98
        }
99

    
100
        /*
101
         * (non-Javadoc)
102
         * @see es.gva.cit.catalogClient.schemas.discoverer.Record#accept(java.net.URI, es.gva.cit.catalogClient.metadataxml.XMLNode)
103
         */
104
        public boolean accept(URI uri, XMLNode node) {
105
                if (node.getName().equals("record")){
106
                        if (XMLTree.searchNode(node, "recordData" + 
107
                                        XMLTree.SEPARATOR + "MD_Metadata") != null){
108
                                return true;
109
                        }
110
                }
111
                return false;
112
        } 
113
}