blob: 230ddf51a157d890ab50361d5f3c180ca9c2c979 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2011, 2018 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.internal.rj.eclient.graphics;
import org.eclipse.swt.graphics.Image;
import org.eclipse.statet.rj.eclient.graphics.ERGraphicInstruction;
import org.eclipse.statet.rj.graphic.core.RRaster;
public class RasterElement extends RRaster implements ERGraphicInstruction {
public final Image swtImage;
public RasterElement(final byte[] imgData, final int imgWidth, final int imgHeight,
final double x, final double y, final double w, final double h,
final double rDeg, final boolean interpolate,
final Image swtImage) {
super(imgData, imgWidth, imgHeight, x, y, w, h, rDeg, interpolate);
this.swtImage= swtImage;
}
}