1 package org.kuali.ole.utility;
2
3 public class Table implements Comparable<Table> {
4 String name;
5 int rowCount;
6
7 @Override
8 public int compareTo(Table other) {
9 return this.name.compareTo(other.getName());
10 }
11
12 public String getName() {
13 return name;
14 }
15
16 public void setName(String name) {
17 this.name = name;
18 }
19
20 public int getRowCount() {
21 return rowCount;
22 }
23
24 public void setRowCount(int rowCount) {
25 this.rowCount = rowCount;
26 }
27 }