001package org.kuali.ole.utility;
002
003public class Table implements Comparable<Table> {
004    String name;
005    int rowCount;
006
007    @Override
008    public int compareTo(Table other) {
009        return this.name.compareTo(other.getName());
010    }
011
012    public String getName() {
013        return name;
014    }
015
016    public void setName(String name) {
017        this.name = name;
018    }
019
020    public int getRowCount() {
021        return rowCount;
022    }
023
024    public void setRowCount(int rowCount) {
025        this.rowCount = rowCount;
026    }
027}