ServerRequestCallback<Void> requestCallback)
{
JSONArray breakSteps = new JSONArray();
for (int idx = 0; idx < steps.size(); idx++)
{
breakSteps.set(idx, new JSONString(steps.get(idx)));
}
JSONArray params = new JSONArray();
params.set(0, new JSONString(functionName));
params.set(1, new JSONString(fileName));
params.set(2, new JSONString(packageName));
params.set(3, breakSteps);
sendRequest(RPC_SCOPE,
SET_FUNCTION_BREAKPOINTS,
params,
requestCallback);