public PolymorphicDomainObjectContainerConfigureDelegate(Closure configureClosure, PolymorphicDomainObjectContainer container) { super(configureClosure, container); this._container = container; }
public TypedDomainObjectContainerWrapper(Class<U> type, PolymorphicDomainObjectContainer<? super U> parent, Instantiator instantiator) { this.parent = parent; this.type = type; this.delegate = parent.withType(type); }
public PolymorphicDomainObjectContainerConfigureDelegate(Object owner, PolymorphicDomainObjectContainer container) { super(owner, container); this._container = container; }
Instantiator(Class<I> defaultType, PolymorphicDomainObjectContainer<? super I> container) { this.defaultType = defaultType; this.itemType = ModelType.of(defaultType); this.container = container; }