blob: 1774672fa63622df994b820e49ab0c67c9148ac1 (
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
|
import org.w3c.dom.Node;
public abstract class VHDLNode extends ParsableXML
{
protected final IDs next_node;
protected final int depth;
protected final String[] attributes;
public VHDLNode
(
final IDs parent_id,
final Node xml_node,
final IDs next_node,
final int depth,
final String[] attributes
)
{
super(parent_id, xml_node);
this.next_node = next_node;
this.depth = depth;
this.attributes = attributes;
}
}
|