| java.lang.Object org.jpox.sco.queued.AddAtOperation
AddAtOperation | public class AddAtOperation implements QueuedOperation(Code) | | Add operation at a position for a list.
version: $Revision: 1.4 $ |
Field Summary | |
int | index Index to add the object at. | Object | value The value to add. |
Method Summary | |
public void | perform(Store store, StateManager sm) Perform the add(int, Object) operation on the specified list. |
index | int index(Code) | | Index to add the object at.
|
AddAtOperation | public AddAtOperation(int index, Object value)(Code) | | Constructor.
Parameters: index - The index to add it at Parameters: value - The value to add |
perform | public void perform(Store store, StateManager sm)(Code) | | Perform the add(int, Object) operation on the specified list.
Parameters: store - The backing store to perform it on Parameters: sm - StateManager for the owner of the list |
|
|