View Javadoc
1   package org.kuali.ole.bo.explain;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: ?
6    * Date: 7/19/12
7    * Time: 5:05 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class OleSRUExplainIndexInfo {
11  
12      private OleSRUExplainIndexSet set;
13      private OleSRUExplainIndex index;
14  
15  
16      public OleSRUExplainIndexSet getSet() {
17          return set;
18      }
19  
20      public void setSet(OleSRUExplainIndexSet set) {
21          this.set = set;
22      }
23  
24      public OleSRUExplainIndex getIndex() {
25          return index;
26      }
27  
28      public void setIndex(OleSRUExplainIndex index) {
29          this.index = index;
30      }
31  
32      @Override
33      public String toString() {
34          return "Explain IndexInfo{" +
35                  "set=" + set +
36                  ", index=" + index +
37                  '}';
38      }
39  }