Open tzaeschke opened 9 years ago
For example, test the following case:
class A { int x; A() { setX(0); } void setX(int x2) { activateWrite(); this.x = x2; } }
Obviously, this would mark the object as dirty whenever it is loaded from the database...
Could easily be done with aspectj compile or load time weaving
For example, test the following case:
Obviously, this would mark the object as dirty whenever it is loaded from the database...