/******************************************************************************* * Copyright (c) 2015 David Green. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * David Green - initial API and implementation *******************************************************************************/ package org.eclipse.mylyn.wikitext.commonmark.internal; import static com.google.common.base.Preconditions.checkNotNull; import com.google.common.base.Function; class TransformLineSequence extends LineSequence { private final LineSequence delegate; private final Function<Line, Line> transform; public TransformLineSequence(LineSequence delegate, Function<Line, Line> transform) { this.delegate = checkNotNull(delegate); this.transform = checkNotNull(transform); } @Override public Line getCurrentLine() { Line line = delegate.getCurrentLine(); if (line != null) { line = transform.apply(line); } return line; } @Override public Line getNextLine() { Line line = delegate.getNextLine(); if (line != null) { line = transform.apply(line); } return line; } @Override public void advance() { delegate.advance(); } @Override public LineSequence lookAhead() { return new TransformLineSequence(delegate.lookAhead(), transform); } }