blob: cdae320096e5cba4bb64f8e3e5c5f0de1d404ff0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 Chase Technology Ltd - http://www.chasetechnology.co.uk
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Doug Satchwell (Chase Technology Ltd) - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xsl.core.model;
/**
* The <code>xsl:import</code> model element.
*
* @author Doug Satchwell
* @since 1.0
*/
public class Import extends Include
{
/**
* Create a new instance of this.
*
* @param stylesheet the stylesheet that this belongs to
*/
public Import(Stylesheet stylesheet)
{
super(stylesheet,IMPORT);
}
}