View Javadoc

1   package org.kuali.student.r2.lum.course.infc;
2   
3   import org.kuali.student.r2.common.infc.IdNamelessEntity;
4   
5   public interface CourseCrossListing extends IdNamelessEntity {
6   
7       /**
8        * 
9        * This method ...
10       * 
11       * @return
12       */
13      public String getCode();
14  
15      /**
16       * 
17       * This method ...
18       * 
19       * @return
20       */
21      public String getSubjectArea();
22      
23      /**
24       * 
25       * This method ...
26       * 
27       * @return
28       */
29      public String getDepartment();
30  
31      /**
32       * The "extra" portion of the code, which usually corresponds with the most
33       * detailed part of the number.
34       */
35      public String getCourseNumberSuffix();
36  }