Revision 3073 trunk/applications/appCatalogYNomenclatorClient/src/es/gva/cit/catalogClient/parsers/AbstractTags.java

View differences:

AbstractTags.java
39 39
*   dac@iver.es
40 40
*/
41 41
package es.gva.cit.catalogClient.parsers;
42

  
43
import org.w3c.dom.Node;
44

  
45 42
import java.awt.image.BufferedImage;
46 43
import java.net.URL;
47 44

  
45
import es.gva.cit.catalogClient.metadataXML.XMLNode;
48 46

  
47

  
49 48
/**
50 49
 * All classes that implement a tag-parser must to implement this 
51 50
 * class. It only has some fields to show in the application form.
......
53 52
 * @author Jorge Piera Llodra (piera_jor@gva.es)
54 53
 */
55 54
public abstract class AbstractTags {
56
    private Node node;
55
    private XMLNode node;
57 56
    private String title;
58 57
    private String abstract_;
59 58
    private String purpose;
......
149 148
    /**
150 149
     * @return Returns the node.
151 150
     */
152
    public Node getNode() {
151
    public XMLNode getNode() {
153 152
        return node;
154 153
    }
155 154

  
156 155
    /**
157 156
     * @param node The node to set.
158 157
     */
159
    public void setNode(Node node) {
158
    public void setNode(XMLNode node) {
160 159
        this.node = node;
161 160
    }
162 161

  

Also available in: Unified diff