Hello, I have a package FOO that encapsulates a large part of the system. Now I need to add to it a public type (that should be visible by external code) with a lot of enumerated names (hundreds). I don't want to fill the spec of FOO with this huge type, so I thought it would be a good idea to create a subpackage: FOO.Names, and place the type there. However, declarations of subprograms in the spec of FOO must refer to the names from FOO.Names, and Ada 95 won't let me do that because it's parent referring to child. Is there any way to overcome this problem ? Perhaps a different design that suits the requirement and doesn't go against the Ada standard ? Thanks in advance.