blob: 7f20be096c9019d3d1a0784e9532254b0c782eef [file] [log] [blame]
package org.eclipse.wst.xsl.core.model;
import org.eclipse.core.runtime.PlatformObject;
public abstract class XSLModelObject extends PlatformObject
{
public enum Type {STYLESHEET_MODEL,INCLUDES,IMPORT,INCLUDE,TEMPLATE,VARIABLE, CALL_TEMPLATE, STYLESHEET, ATTRIBUTE, OTHER_ELEMENT};
public abstract Type getModelType();
}