package org.aplikator.client.local.widgets; import org.aplikator.client.shared.data.PrimaryKey; import org.aplikator.client.shared.data.RecordContainerDTO; public interface NestedCollectionWidget { void setOwnerPrimaryKey(PrimaryKey value); PrimaryKey getOwnerPrimaryKey(); void setRecordContainerDTO(RecordContainerDTO recordContainerDTO); void save(); void setDirty(boolean dirty); void reload(); void initFromContainer(RecordContainerDTO initializingRecords); void setEnabled(boolean enabled); }