1 package org.kuali.student.common.ui.client.mvc.breadcrumb;
2
3 import java.util.List;
4
5 /**
6 * Interface for controllers/views which support breadcrumb collection
7 *
8 * @author Kuali Student Team
9 *
10 */
11 public interface BreadcrumbSupport {
12 /**
13 * Adds a human readable name(s) to the list passed in for use in the breadcrumb
14 * @param names
15 */
16 public void collectBreadcrumbNames(List<String> names);
17 }