Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フィールドの以前の値を新しい値と比較する table.modifiedField メソッドでいくつかのロジックを実行できるようにしたいと考えています。前の値に戻すにはどうすればよいですか?
メソッドを介して、変更前のレコード バッファを使用できますthis.orig()。
this.orig()
public void modifiedField(fieldId _fieldId) { super(_fieldId); info(strfmt("Field number %1 changed from %2 to %3",_fieldId,this.orig().(_fieldId),this.(_fieldId))); }