import java.util.*; public class VHDLEntity { private static final Map FROM_ID; static { FROM_ID = new HashMap(); } private final List ports; private final String id; private VHDLEntity (final String id) { this.id = id; ports = new ArrayList(); } }