Statistics
| Revision:

root / trunk / extensions / extWCS / src / es / uji / lsi / wcs / XmlWcsParsing / WCSToolkit.java @ 1877

History | View | Annotate | Download (412 Bytes)

1
/*
2
 * WCSToolkit.java
3
 *
4
 * Created on 14 de febrero de 2005, 16:01
5
 */
6

    
7
package es.uji.lsi.wcs.XmlWcsParsing;
8

    
9
/**
10
 *
11
 * @author  jaume
12
 */
13
public class WCSToolkit {
14
    
15
    /** Creates a new instance of WCSToolkit */
16
    public WCSToolkit() {
17
    }
18
    
19
    public static boolean isWCSTab(XMLNode node, String text){
20
        return (node.getName().equals(text) || node.getName().equals("wcs:"+text));
21
    }
22
}