1 6 7 package albel.tags.table.model; 8 9 13 public class Row 14 { 15 16 19 private int number; 20 21 24 private RowState rowState; 25 private Table table; 26 27 28 private Row() 29 { 30 } 31 public Row(Table table) 32 { 33 this.table=table; 34 } 35 public Table getTable() 36 { 37 return table; 38 } 39 43 public int getNumber() 44 { 45 return this.number; 46 } 47 48 52 public void setNumber(int number) 53 { 54 this.number = number; 55 } 56 57 61 public RowState getRowState() 62 { 63 return this.rowState; 64 } 65 66 70 public void setRowState(RowState rowState) 71 { 72 this.rowState = rowState; 73 } 74 75 } 76 | Popular Tags |