I've declared a class with a public variable LPAssign. I wanted to have an initial value of 1, which would then update every time a trigger is run.
Here's my class:
public class LP {
public static integer LPAssign;
static{
LPAssign = 1;
}
}
And the code in my Trigger does this:
if LPAssign = 1, do several things, then update LPAssign =2.
if LPAssign = 2, do several things, then update LPAssign =3.
if LPAssign = 3, do several things, then update LPAssign =4.
if LPAssign = 4, do several things, then update LPAssign =1.
In my trigger I passed LPAssign on to a random field to see if it was changing to 2 (it does) but then my public class resets the value to 1. I thought the Static portion of the class only initialized once.