blob: a017ef4129de97069007c76c6ff9657ad3f51d86 (
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
|
import java.util.*;
public class VHDLProcess
{
private static final Map<String, VHDLProcess> FROM_ID;
static
{
FROM_ID = new HashMap<String, VHDLProcess>();
}
public static void add_element (final String id)
{
if (!FROM_ID.containsKey(id))
{
FROM_ID.put(id, new VHDLProcess(id));
}
}
public static boolean handle_is_accessed_by
(
final String wfm_id,
final String ps_id
)
{
return false;
}
/******************************************************************************/
private final List<String> accessed_wfm;
private final String id;
private VHDLProcess (final String id)
{
this.id = id;
ports = new ArrayList<String>();
}
}
|