| java.lang.Object org.kuali.core.util.GeneralLedgerPendingEntrySequenceHelper
GeneralLedgerPendingEntrySequenceHelper | public class GeneralLedgerPendingEntrySequenceHelper (Code) | | This class is a helper class which will allows us to pass control in and out of the processGeneralLedgerPendingEntry() method by
reference. This was necessary since you can't increment an Integer object without breaking reference.
|
Method Summary | |
public void | decrement() This method decrements the value of the sequenceCounter attribute. | public int | getSequenceCounter() This method retrieves the value of the sequenceCounter attribute. | public void | increment() This method increments the value of the sequenceCounter attribute. |
GeneralLedgerPendingEntrySequenceHelper | public GeneralLedgerPendingEntrySequenceHelper()(Code) | | Constructs a GeneralLedgerPendingEntrySequenceHelper.java, initializing the counter to 1.
|
GeneralLedgerPendingEntrySequenceHelper | public GeneralLedgerPendingEntrySequenceHelper(int initialCount)(Code) | | Constructs a GeneralLedgerPendingEntrySequenceHelper.java, initializing the counter to the given int.
|
decrement | public void decrement()(Code) | | This method decrements the value of the sequenceCounter attribute.
|
getSequenceCounter | public int getSequenceCounter()(Code) | | This method retrieves the value of the sequenceCounter attribute.
|
increment | public void increment()(Code) | | This method increments the value of the sequenceCounter attribute.
|
|
|