1 package org.kuali.student.common.ui.client.configurable.mvc.sections;
2
3 import java.util.List;
4
5 public interface HasSectionDeletion {
6 public List<Section> getDeletedSections();
7 public List<String> getDeletionParentKeys();
8 /**
9 * deletionParentKeys is optional and is only needed when you want to delete the
10 * entire structure in addition to individual fields with in deleted sections.
11 *
12 * @see SectionBinding#setModelValue(Section, org.kuali.student.common.ui.client.mvc.DataModel, String)
13 */
14 public void setDeletionParentKey(List<String> deletionParentKeys);
15 }