summaryrefslogtreecommitdiff
blob: ffd678cc38199d58da5005489f93d26969ec21b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import java.util.*;

public class VHDLArchitecture
{
   private static final Map<String, VHDLArchitecture> FROM_ID;

   static
   {
      FROM_ID = new HashMap<String, VHDLArchitecture>();
   }

   private final List<String> processes;
   private final List<String> components;
   private final String id;

   private VHDLArchitecture (final String id)
   {
      this.id = id;

      ports = new ArrayList<String>();
   }
}