blob: de11c7b125cb1e4073527e8ab31445c450c9076d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathExpression;
import javax.xml.xpath.XPathExpressionException;
import java.util.ArrayList;
import java.util.Collection;
/* If Statement Node */
public class VHDLISNode extends VHDLNode
{
private static final XPathExpression XPE_FIND_SUB_NODES;
static
{
XPE_FIND_SUB_NODES = XMLManager.compile_or_die("./el");
}
public VHDLISNode
(
final IDs parent_id,
final Node xml_node,
final IDs next_node,
final int depth,
final String[] attributes
)
{
super
(
parent_id,
xml_node,
next_node,
depth,
attributes
);
}
@Override
public Collection<ParsableXML> parse ()
throws XPathExpressionException
{
/* TODO */
return null;
}
}
|