FeedOperation feedOperation = new FeedOperation();
feedOperation.setOperand(feed);
feedOperation.setOperator(Operator.SET);
FeedServiceInterface feedService = adWordsServices.get(session, FeedServiceInterface.class);
FeedReturnValue mutateFeedResult = feedService.mutate(new FeedOperation[] {feedOperation});
// Get the new attributes from the mutated feed.
Feed mutatedFeed = mutateFeedResult.getValue()[0];
line1Attribute = mutatedFeed.getAttributes(nextAttributeIndex);
line2Attribute = mutatedFeed.getAttributes(nextAttributeIndex + 1);