1 5 package net.sourceforge.jwebunit; 6 7 13 public class ExpectedCell { 14 15 private int colspan; 16 private String expectedValue; 17 18 22 public ExpectedCell(String expectedValue) { 23 this(expectedValue, 1); 24 } 25 26 32 public ExpectedCell(String expectedValue, int colspan) { 33 this.expectedValue = expectedValue; 34 this.colspan = colspan; 35 } 36 37 40 public int getColspan() { 41 return colspan; 42 } 43 44 47 public String getExpectedValue() { 48 return expectedValue; 49 } 50 51 } 52 | Popular Tags |