1 15 package org.apache.tapestry.test.assertions; 16 17 import org.apache.hivemind.impl.BaseLocatable; 18 19 28 public class RegexpMatch extends BaseLocatable 29 { 30 private String _expectedString; 31 32 public String getExpectedString() 33 { 34 return _expectedString; 35 } 36 37 public void setExpectedString(String string) 38 { 39 _expectedString = string; 40 } 41 42 } 43 | Popular Tags |