* This method simply defers to the manager, notifying it. If there
* is no container, or the container is not an instance of
* CompositeActor, or if it has no manager, do nothing.
*/
public void invalidateResolvedTypes() {
Nameable container = getContainer();
if (container instanceof CompositeActor) {
Manager manager = ((CompositeActor) container).getManager();
if (manager != null) {