imakerplugin/com.nokia.s60tools.imaker/src/com/nokia/s60tools/imaker/internal/iqrf/util/IQRFAdapterFactory.java
author dpodwall
Tue, 12 Jan 2010 13:17:53 -0600
changeset 0 61163b28edca
permissions -rw-r--r--
initial EPL conversion
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     1
/*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     2
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     3
* All rights reserved.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     4
* This component and the accompanying materials are made available
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     5
* under the terms of "Eclipse Public License v1.0"
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     6
* which accompanies this distribution, and is available
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     8
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     9
* Initial Contributors:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    10
* Nokia Corporation - initial contribution.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    11
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    12
* Contributors:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    13
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    14
* Description:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    15
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    16
*/
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    17
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    18
package com.nokia.s60tools.imaker.internal.iqrf.util;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    19
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    20
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    21
import org.eclipse.emf.common.notify.Adapter;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    22
import org.eclipse.emf.common.notify.Notifier;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    23
import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    24
import org.eclipse.emf.ecore.EObject;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    25
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    26
import com.nokia.s60tools.imaker.internal.iqrf.Configuration;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    27
import com.nokia.s60tools.imaker.internal.iqrf.ConfigurationElement;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    28
import com.nokia.s60tools.imaker.internal.iqrf.IMaker;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    29
import com.nokia.s60tools.imaker.internal.iqrf.IQRFPackage;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    30
import com.nokia.s60tools.imaker.internal.iqrf.Interface;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    31
import com.nokia.s60tools.imaker.internal.iqrf.Result;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    32
import com.nokia.s60tools.imaker.internal.iqrf.Setting;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    33
import com.nokia.s60tools.imaker.internal.iqrf.Target;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    34
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    35
/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    36
 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    37
 * The <b>Adapter Factory</b> for the model.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    38
 * It provides an adapter <code>createXXX</code> method for each class of the model.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    39
 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    40
 * @see com.nokia.s60tools.imaker.internal.iqrf.IQRFPackage
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    41
 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    42
 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    43
public class IQRFAdapterFactory extends AdapterFactoryImpl {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    44
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    45
	 * The cached model package.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    46
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    47
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    48
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    49
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    50
	protected static IQRFPackage modelPackage;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    51
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    52
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    53
	 * Creates an instance of the adapter factory.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    54
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    55
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    56
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    57
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    58
	public IQRFAdapterFactory() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    59
		if (modelPackage == null) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    60
			modelPackage = IQRFPackage.eINSTANCE;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    61
		}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    62
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    63
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    64
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    65
	 * Returns whether this factory is applicable for the type of the object.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    66
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    67
	 * This implementation returns <code>true</code> if the object is either the model's package or is an instance object of the model.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    68
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    69
	 * @return whether this factory is applicable for the type of the object.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    70
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    71
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    72
	public boolean isFactoryForType(Object object) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    73
		if (object == modelPackage) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    74
			return true;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    75
		}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    76
		if (object instanceof EObject) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    77
			return ((EObject)object).eClass().getEPackage() == modelPackage;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    78
		}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    79
		return false;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    80
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    81
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    82
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    83
	 * The switch the delegates to the <code>createXXX</code> methods.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    84
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    85
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    86
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    87
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    88
	protected IQRFSwitch modelSwitch =
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    89
		new IQRFSwitch() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    90
			public Object caseResult(Result object) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    91
				return createResultAdapter();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    92
			}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    93
			public Object caseConfiguration(Configuration object) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    94
				return createConfigurationAdapter();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    95
			}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    96
			public Object caseSetting(Setting object) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    97
				return createSettingAdapter();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    98
			}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    99
			public Object caseInterface(Interface object) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   100
				return createInterfaceAdapter();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   101
			}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   102
			public Object caseConfigurationElement(ConfigurationElement object) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   103
				return createConfigurationElementAdapter();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   104
			}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   105
			public Object caseTarget(Target object) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   106
				return createTargetAdapter();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   107
			}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   108
			public Object caseIMaker(IMaker object) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   109
				return createIMakerAdapter();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   110
			}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   111
			public Object defaultCase(EObject object) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   112
				return createEObjectAdapter();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   113
			}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   114
		};
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   115
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   116
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   117
	 * Creates an adapter for the <code>target</code>.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   118
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   119
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   120
	 * @param target the object to adapt.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   121
	 * @return the adapter for the <code>target</code>.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   122
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   123
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   124
	public Adapter createAdapter(Notifier target) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   125
		return (Adapter)modelSwitch.doSwitch((EObject)target);
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   126
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   127
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   128
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   129
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   130
	 * Creates a new adapter for an object of class '{@link com.nokia.s60tools.imaker.internal.iqrf.Result <em>Result</em>}'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   131
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   132
	 * This default implementation returns null so that we can easily ignore cases;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   133
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   134
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   135
	 * @return the new adapter.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   136
	 * @see com.nokia.s60tools.imaker.internal.iqrf.Result
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   137
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   138
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   139
	public Adapter createResultAdapter() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   140
		return null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   141
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   142
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   143
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   144
	 * Creates a new adapter for an object of class '{@link com.nokia.s60tools.imaker.internal.iqrf.Configuration <em>Configuration</em>}'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   145
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   146
	 * This default implementation returns null so that we can easily ignore cases;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   147
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   148
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   149
	 * @return the new adapter.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   150
	 * @see com.nokia.s60tools.imaker.internal.iqrf.Configuration
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   151
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   152
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   153
	public Adapter createConfigurationAdapter() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   154
		return null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   155
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   156
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   157
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   158
	 * Creates a new adapter for an object of class '{@link com.nokia.s60tools.imaker.internal.iqrf.Setting <em>Setting</em>}'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   159
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   160
	 * This default implementation returns null so that we can easily ignore cases;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   161
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   162
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   163
	 * @return the new adapter.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   164
	 * @see com.nokia.s60tools.imaker.internal.iqrf.Setting
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   165
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   166
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   167
	public Adapter createSettingAdapter() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   168
		return null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   169
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   170
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   171
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   172
	 * Creates a new adapter for an object of class '{@link com.nokia.s60tools.imaker.internal.iqrf.Interface <em>Interface</em>}'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   173
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   174
	 * This default implementation returns null so that we can easily ignore cases;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   175
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   176
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   177
	 * @return the new adapter.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   178
	 * @see com.nokia.s60tools.imaker.internal.iqrf.Interface
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   179
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   180
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   181
	public Adapter createInterfaceAdapter() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   182
		return null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   183
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   184
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   185
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   186
	 * Creates a new adapter for an object of class '{@link com.nokia.s60tools.imaker.internal.iqrf.ConfigurationElement <em>Configuration Element</em>}'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   187
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   188
	 * This default implementation returns null so that we can easily ignore cases;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   189
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   190
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   191
	 * @return the new adapter.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   192
	 * @see com.nokia.s60tools.imaker.internal.iqrf.ConfigurationElement
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   193
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   194
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   195
	public Adapter createConfigurationElementAdapter() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   196
		return null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   197
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   198
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   199
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   200
	 * Creates a new adapter for an object of class '{@link com.nokia.s60tools.imaker.internal.iqrf.Target <em>Target</em>}'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   201
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   202
	 * This default implementation returns null so that we can easily ignore cases;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   203
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   204
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   205
	 * @return the new adapter.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   206
	 * @see com.nokia.s60tools.imaker.internal.iqrf.Target
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   207
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   208
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   209
	public Adapter createTargetAdapter() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   210
		return null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   211
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   212
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   213
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   214
	 * Creates a new adapter for an object of class '{@link com.nokia.s60tools.imaker.internal.iqrf.IMaker <em>IMaker</em>}'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   215
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   216
	 * This default implementation returns null so that we can easily ignore cases;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   217
	 * it's useful to ignore a case when inheritance will catch all the cases anyway.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   218
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   219
	 * @return the new adapter.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   220
	 * @see com.nokia.s60tools.imaker.internal.iqrf.IMaker
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   221
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   222
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   223
	public Adapter createIMakerAdapter() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   224
		return null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   225
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   226
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   227
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   228
	 * Creates a new adapter for the default case.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   229
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   230
	 * This default implementation returns null.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   231
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   232
	 * @return the new adapter.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   233
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   234
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   235
	public Adapter createEObjectAdapter() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   236
		return null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   237
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   238
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   239
} //IQRFAdapterFactory