blob: 5c1896a11a56d45485339789e73cb996c238b9ca [file] [log] [blame]
/**
* Copyright (c) 2010 Mia-Software.
* 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:
*
* Nicolas Guyomar (Mia-Software) - initial API and implementation
*/
package org.eclipse.modisco.jee.jsp.util;
import org.eclipse.emf.common.notify.Adapter;
import org.eclipse.emf.common.notify.Notifier;
import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gmt.modisco.xml.Element;
import org.eclipse.gmt.modisco.xml.Node;
import org.eclipse.modisco.jee.jsp.*;
/**
* <!-- begin-user-doc -->
* The <b>Adapter Factory</b> for the model.
* It provides an adapter <code>createXXX</code> method for each class of the model.
* <!-- end-user-doc -->
* @see org.eclipse.modisco.jee.jsp.JspPackage
* @generated
*/
public class JspAdapterFactory extends AdapterFactoryImpl {
/**
* The cached model package.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected static JspPackage modelPackage;
/**
* Creates an instance of the adapter factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public JspAdapterFactory() {
if (modelPackage == null) {
modelPackage = JspPackage.eINSTANCE;
}
}
/**
* Returns whether this factory is applicable for the type of the object.
* <!-- begin-user-doc -->
* This implementation returns <code>true</code> if the object is either the model's package or is an instance object of the model.
* <!-- end-user-doc -->
* @return whether this factory is applicable for the type of the object.
* @generated
*/
@Override
public boolean isFactoryForType(Object object) {
if (object == modelPackage) {
return true;
}
if (object instanceof EObject) {
return ((EObject)object).eClass().getEPackage() == modelPackage;
}
return false;
}
/**
* The switch that delegates to the <code>createXXX</code> methods.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected JspSwitch<Adapter> modelSwitch =
new JspSwitch<Adapter>() {
@Override
public Adapter caseJSPScript(JSPScript object) {
return createJSPScriptAdapter();
}
@Override
public Adapter caseJSPScriptlet(JSPScriptlet object) {
return createJSPScriptletAdapter();
}
@Override
public Adapter caseJSPExpression(JSPExpression object) {
return createJSPExpressionAdapter();
}
@Override
public Adapter caseJSPDeclaration(JSPDeclaration object) {
return createJSPDeclarationAdapter();
}
@Override
public Adapter caseJSPAction(JSPAction object) {
return createJSPActionAdapter();
}
@Override
public Adapter caseJSPStdAction(JSPStdAction object) {
return createJSPStdActionAdapter();
}
@Override
public Adapter caseJSPDirective(JSPDirective object) {
return createJSPDirectiveAdapter();
}
@Override
public Adapter caseJSPTagLib(JSPTagLib object) {
return createJSPTagLibAdapter();
}
@Override
public Adapter caseJavaScript(JavaScript object) {
return createJavaScriptAdapter();
}
@Override
public Adapter caseJSPComment(JSPComment object) {
return createJSPCommentAdapter();
}
@Override
public Adapter casePage(Page object) {
return createPageAdapter();
}
@Override
public Adapter caseModel(Model object) {
return createModelAdapter();
}
@Override
public Adapter caseComposedAttribute(ComposedAttribute object) {
return createComposedAttributeAdapter();
}
@Override
public Adapter caseNode(Node object) {
return createNodeAdapter();
}
@Override
public Adapter caseElement(Element object) {
return createElementAdapter();
}
@Override
public Adapter defaultCase(EObject object) {
return createEObjectAdapter();
}
};
/**
* Creates an adapter for the <code>target</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param target the object to adapt.
* @return the adapter for the <code>target</code>.
* @generated
*/
@Override
public Adapter createAdapter(Notifier target) {
return modelSwitch.doSwitch((EObject)target);
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.modisco.jee.jsp.JSPScript <em>JSP Script</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
* it's useful to ignore a case when inheritance will catch all the cases anyway.
* <!-- end-user-doc -->
* @return the new adapter.
* @see org.eclipse.modisco.jee.jsp.JSPScript
* @generated
*/
public Adapter createJSPScriptAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.modisco.jee.jsp.JSPScriptlet <em>JSP Scriptlet</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
* it's useful to ignore a case when inheritance will catch all the cases anyway.
* <!-- end-user-doc -->
* @return the new adapter.
* @see org.eclipse.modisco.jee.jsp.JSPScriptlet
* @generated
*/
public Adapter createJSPScriptletAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.modisco.jee.jsp.JSPExpression <em>JSP Expression</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
* it's useful to ignore a case when inheritance will catch all the cases anyway.
* <!-- end-user-doc -->
* @return the new adapter.
* @see org.eclipse.modisco.jee.jsp.JSPExpression
* @generated
*/
public Adapter createJSPExpressionAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.modisco.jee.jsp.JSPDeclaration <em>JSP Declaration</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
* it's useful to ignore a case when inheritance will catch all the cases anyway.
* <!-- end-user-doc -->
* @return the new adapter.
* @see org.eclipse.modisco.jee.jsp.JSPDeclaration
* @generated
*/
public Adapter createJSPDeclarationAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.modisco.jee.jsp.JSPAction <em>JSP Action</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
* it's useful to ignore a case when inheritance will catch all the cases anyway.
* <!-- end-user-doc -->
* @return the new adapter.
* @see org.eclipse.modisco.jee.jsp.JSPAction
* @generated
*/
public Adapter createJSPActionAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.modisco.jee.jsp.JSPStdAction <em>JSP Std Action</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
* it's useful to ignore a case when inheritance will catch all the cases anyway.
* <!-- end-user-doc -->
* @return the new adapter.
* @see org.eclipse.modisco.jee.jsp.JSPStdAction
* @generated
*/
public Adapter createJSPStdActionAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.modisco.jee.jsp.JSPDirective <em>JSP Directive</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
* it's useful to ignore a case when inheritance will catch all the cases anyway.
* <!-- end-user-doc -->
* @return the new adapter.
* @see org.eclipse.modisco.jee.jsp.JSPDirective
* @generated
*/
public Adapter createJSPDirectiveAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.modisco.jee.jsp.JSPTagLib <em>JSP Tag Lib</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
* it's useful to ignore a case when inheritance will catch all the cases anyway.
* <!-- end-user-doc -->
* @return the new adapter.
* @see org.eclipse.modisco.jee.jsp.JSPTagLib
* @generated
*/
public Adapter createJSPTagLibAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.modisco.jee.jsp.JavaScript <em>Java Script</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
* it's useful to ignore a case when inheritance will catch all the cases anyway.
* <!-- end-user-doc -->
* @return the new adapter.
* @see org.eclipse.modisco.jee.jsp.JavaScript
* @generated
*/
public Adapter createJavaScriptAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.modisco.jee.jsp.JSPComment <em>JSP Comment</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
* it's useful to ignore a case when inheritance will catch all the cases anyway.
* <!-- end-user-doc -->
* @return the new adapter.
* @see org.eclipse.modisco.jee.jsp.JSPComment
* @generated
*/
public Adapter createJSPCommentAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.modisco.jee.jsp.Page <em>Page</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
* it's useful to ignore a case when inheritance will catch all the cases anyway.
* <!-- end-user-doc -->
* @return the new adapter.
* @see org.eclipse.modisco.jee.jsp.Page
* @generated
*/
public Adapter createPageAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.modisco.jee.jsp.Model <em>Model</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
* it's useful to ignore a case when inheritance will catch all the cases anyway.
* <!-- end-user-doc -->
* @return the new adapter.
* @see org.eclipse.modisco.jee.jsp.Model
* @generated
*/
public Adapter createModelAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.modisco.jee.jsp.ComposedAttribute <em>Composed Attribute</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
* it's useful to ignore a case when inheritance will catch all the cases anyway.
* <!-- end-user-doc -->
* @return the new adapter.
* @see org.eclipse.modisco.jee.jsp.ComposedAttribute
* @generated
*/
public Adapter createComposedAttributeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.gmt.modisco.xml.Node <em>Node</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
* it's useful to ignore a case when inheritance will catch all the cases anyway.
* <!-- end-user-doc -->
* @return the new adapter.
* @see org.eclipse.gmt.modisco.xml.Node
* @generated
*/
public Adapter createNodeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.gmt.modisco.xml.Element <em>Element</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
* it's useful to ignore a case when inheritance will catch all the cases anyway.
* <!-- end-user-doc -->
* @return the new adapter.
* @see org.eclipse.gmt.modisco.xml.Element
* @generated
*/
public Adapter createElementAdapter() {
return null;
}
/**
* Creates a new adapter for the default case.
* <!-- begin-user-doc -->
* This default implementation returns null.
* <!-- end-user-doc -->
* @return the new adapter.
* @generated
*/
public Adapter createEObjectAdapter() {
return null;
}
} //JspAdapterFactory