blob: c2d243c7aac60e3b4a2009c0969a6b20163ebc0e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Chase Technologies and others.
* 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 Satchwel (Chase Technologies) - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xsl.core.model;
import org.eclipse.core.runtime.PlatformObject;
/**
*
* @since 1.0
*
*/
public abstract class XSLModelObject extends PlatformObject
{
public enum Type {STYLESHEET_MODEL,IMPORT,INCLUDE,TEMPLATE,VARIABLE, CALL_TEMPLATE, STYLESHEET, ATTRIBUTE, OTHER_ELEMENT,
/**
* @since 1.1
*/
PARAM,
/**
* @since 1.1
*/
FUNCTION};
public abstract Type getModelType();
}