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

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

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

   private final List<String> ports;
   private final String id;

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

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