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