* <p>
* @param pField Type: DataField
* @param pEvent Type: String
*/
public void dumpFieldState(DataField pField, String pEvent) {
TextData aMsg = new TextData();
Class<?> aClass = ValidatingClass.class;
TextData aValue = new TextData(Name.getWithCharacterField(pField).getValue());
if (aValue.moveToLastChar(".")) {
aValue = aValue.copyRange(aValue.getOffset()+1);
}
Field anAttr = FrameworkUtils.getField(aClass, aValue.getValue());
aMsg.concat("DataField:").concat(pEvent).concat(" (").concat(Name.getWithCharacterField(pField)).concat(") ");
if (anAttr != null) {
int row = TableRow.get(this.getqq_ArrayTester());
if (row > 0) {
ValidatingClass aRow = this.getArrayTester().get(row-1);