blob: fce560371a989375307e99eafef23629493a8226 [file] [log] [blame]
/***************************************************************************************************
* Copyright (c) 2003, 2004 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.wst.common.internal.emf.resource;
public class EMF2DOMRendererFactory extends RendererFactory {
public static final EMF2DOMRendererFactory INSTANCE = new EMF2DOMRendererFactory();
public EMF2DOMRendererFactory() {
super();
}
/**
* @see com.ibm.etools.emf2xml.RendererFactory#createRenderer()
*/
public Renderer createRenderer() {
EMF2DOMRenderer renderer = new EMF2DOMRenderer();
renderer.setValidating(isValidating());
return renderer;
}
}