* Adds the current location to the point list of the
* CreatePointlistRequest.
*/
@Override
protected void updateTargetRequest() {
CreatePointlistRequest req = getCreatePointlistRequest();
if (isInState(STATE_DRAG)) {
req.addPoint(getLocation());
} else {
req.clear();
req.setLocation(getLocation());
}
}