blob: aee1c885885cc516e605f03de11e2463466c51e7 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2002, 2006 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.runtime.draw2d.ui.render.awt.internal.svg;
import org.apache.batik.transcoder.TranscoderOutput;
/**
* @author sshaw
*
* This is a dummy class used by the SWTImageTranscoder to satisfy the api
* requirements for the Batik transcoder class. It doesn't do anything except
* provide type information.
*/
class ImageTranscoderOutput extends TranscoderOutput {
/**
* Creates a new instance of SWTImageTranscoderOutput
*/
public ImageTranscoderOutput() {
// empty block
}
}