/******************************************************************************* * Copyright (c) 2006-2012 * Software Technology Group, Dresden University of Technology * DevBoost GmbH, Berlin, Amtsgericht Charlottenburg, HRB 140026 * * 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: * Software Technology Group - TU Dresden, Germany; * DevBoost GmbH - Berlin, Germany * - initial API and implementation ******************************************************************************/ /** * <copyright> * </copyright> * * $Id$ */ package org.oasisopen.names.tc.opendocument.xmlns.form.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.oasisopen.names.tc.opendocument.xmlns.form.ButtonType; import org.oasisopen.names.tc.opendocument.xmlns.form.CheckboxType; import org.oasisopen.names.tc.opendocument.xmlns.form.ColumnType; import org.oasisopen.names.tc.opendocument.xmlns.form.ComboboxType; import org.oasisopen.names.tc.opendocument.xmlns.form.ConnectionResourceType; import org.oasisopen.names.tc.opendocument.xmlns.form.DateType; import org.oasisopen.names.tc.opendocument.xmlns.form.DocumentRoot; import org.oasisopen.names.tc.opendocument.xmlns.form.FileType; import org.oasisopen.names.tc.opendocument.xmlns.form.FixedTextType; import org.oasisopen.names.tc.opendocument.xmlns.form.FormPackage; import org.oasisopen.names.tc.opendocument.xmlns.form.FormType; import org.oasisopen.names.tc.opendocument.xmlns.form.FormattedTextType; import org.oasisopen.names.tc.opendocument.xmlns.form.FrameType; import org.oasisopen.names.tc.opendocument.xmlns.form.GenericControlType; import org.oasisopen.names.tc.opendocument.xmlns.form.GridType; import org.oasisopen.names.tc.opendocument.xmlns.form.HiddenType; import org.oasisopen.names.tc.opendocument.xmlns.form.ImageFrameType; import org.oasisopen.names.tc.opendocument.xmlns.form.ImageType; import org.oasisopen.names.tc.opendocument.xmlns.form.ItemType; import org.oasisopen.names.tc.opendocument.xmlns.form.ListPropertyType; import org.oasisopen.names.tc.opendocument.xmlns.form.ListValueType; import org.oasisopen.names.tc.opendocument.xmlns.form.ListValueType1; import org.oasisopen.names.tc.opendocument.xmlns.form.ListValueType2; import org.oasisopen.names.tc.opendocument.xmlns.form.ListValueType3; import org.oasisopen.names.tc.opendocument.xmlns.form.ListValueType4; import org.oasisopen.names.tc.opendocument.xmlns.form.ListValueType5; import org.oasisopen.names.tc.opendocument.xmlns.form.ListboxType; import org.oasisopen.names.tc.opendocument.xmlns.form.NumberType; import org.oasisopen.names.tc.opendocument.xmlns.form.OptionType; import org.oasisopen.names.tc.opendocument.xmlns.form.PasswordType; import org.oasisopen.names.tc.opendocument.xmlns.form.PropertiesType; import org.oasisopen.names.tc.opendocument.xmlns.form.PropertyType; import org.oasisopen.names.tc.opendocument.xmlns.form.RadioType; import org.oasisopen.names.tc.opendocument.xmlns.form.TextType; import org.oasisopen.names.tc.opendocument.xmlns.form.TextareaType; import org.oasisopen.names.tc.opendocument.xmlns.form.TimeType; import org.oasisopen.names.tc.opendocument.xmlns.form.ValueRangeType; import org.oasisopen.names.tc.opendocument.xmlns.text.CommonFormControlContent; import org.oasisopen.names.tc.opendocument.xmlns.text.FormPropertyTypeAndValueList; /** * <!-- 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.oasisopen.names.tc.opendocument.xmlns.form.FormPackage * @generated */ public class FormAdapterFactory extends AdapterFactoryImpl { /** * The cached model package. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected static FormPackage modelPackage; /** * Creates an instance of the adapter factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public FormAdapterFactory() { if (modelPackage == null) { modelPackage = FormPackage.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 FormSwitch<Adapter> modelSwitch = new FormSwitch<Adapter>() { @Override public Adapter caseButtonType(ButtonType object) { return createButtonTypeAdapter(); } @Override public Adapter caseCheckboxType(CheckboxType object) { return createCheckboxTypeAdapter(); } @Override public Adapter caseColumnType(ColumnType object) { return createColumnTypeAdapter(); } @Override public Adapter caseComboboxType(ComboboxType object) { return createComboboxTypeAdapter(); } @Override public Adapter caseConnectionResourceType(ConnectionResourceType object) { return createConnectionResourceTypeAdapter(); } @Override public Adapter caseDateType(DateType object) { return createDateTypeAdapter(); } @Override public Adapter caseFileType(FileType object) { return createFileTypeAdapter(); } @Override public Adapter caseFixedTextType(FixedTextType object) { return createFixedTextTypeAdapter(); } @Override public Adapter caseFormattedTextType(FormattedTextType object) { return createFormattedTextTypeAdapter(); } @Override public Adapter caseFormType(FormType object) { return createFormTypeAdapter(); } @Override public Adapter caseFrameType(FrameType object) { return createFrameTypeAdapter(); } @Override public Adapter caseGenericControlType(GenericControlType object) { return createGenericControlTypeAdapter(); } @Override public Adapter caseGridType(GridType object) { return createGridTypeAdapter(); } @Override public Adapter caseHiddenType(HiddenType object) { return createHiddenTypeAdapter(); } @Override public Adapter caseImageFrameType(ImageFrameType object) { return createImageFrameTypeAdapter(); } @Override public Adapter caseImageType(ImageType object) { return createImageTypeAdapter(); } @Override public Adapter caseItemType(ItemType object) { return createItemTypeAdapter(); } @Override public Adapter caseListboxType(ListboxType object) { return createListboxTypeAdapter(); } @Override public Adapter caseListPropertyType(ListPropertyType object) { return createListPropertyTypeAdapter(); } @Override public Adapter caseListValueType(ListValueType object) { return createListValueTypeAdapter(); } @Override public Adapter caseListValueType1(ListValueType1 object) { return createListValueType1Adapter(); } @Override public Adapter caseListValueType2(ListValueType2 object) { return createListValueType2Adapter(); } @Override public Adapter caseListValueType3(ListValueType3 object) { return createListValueType3Adapter(); } @Override public Adapter caseListValueType4(ListValueType4 object) { return createListValueType4Adapter(); } @Override public Adapter caseListValueType5(ListValueType5 object) { return createListValueType5Adapter(); } @Override public Adapter casePropertiesType(PropertiesType object) { return createPropertiesTypeAdapter(); } @Override public Adapter caseDocumentRoot(DocumentRoot object) { return createDocumentRootAdapter(); } @Override public Adapter caseNumberType(NumberType object) { return createNumberTypeAdapter(); } @Override public Adapter caseOptionType(OptionType object) { return createOptionTypeAdapter(); } @Override public Adapter casePasswordType(PasswordType object) { return createPasswordTypeAdapter(); } @Override public Adapter casePropertyType(PropertyType object) { return createPropertyTypeAdapter(); } @Override public Adapter caseRadioType(RadioType object) { return createRadioTypeAdapter(); } @Override public Adapter caseTextareaType(TextareaType object) { return createTextareaTypeAdapter(); } @Override public Adapter caseTextType(TextType object) { return createTextTypeAdapter(); } @Override public Adapter caseTimeType(TimeType object) { return createTimeTypeAdapter(); } @Override public Adapter caseValueRangeType(ValueRangeType object) { return createValueRangeTypeAdapter(); } @Override public Adapter caseCommonFormControlContent(CommonFormControlContent object) { return createCommonFormControlContentAdapter(); } @Override public Adapter caseFormPropertyTypeAndValueList(FormPropertyTypeAndValueList object) { return createFormPropertyTypeAndValueListAdapter(); } @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.oasisopen.names.tc.opendocument.xmlns.form.ButtonType <em>Button Type</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.oasisopen.names.tc.opendocument.xmlns.form.ButtonType * @generated */ public Adapter createButtonTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.CheckboxType <em>Checkbox Type</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.oasisopen.names.tc.opendocument.xmlns.form.CheckboxType * @generated */ public Adapter createCheckboxTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.ColumnType <em>Column Type</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.oasisopen.names.tc.opendocument.xmlns.form.ColumnType * @generated */ public Adapter createColumnTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.ComboboxType <em>Combobox Type</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.oasisopen.names.tc.opendocument.xmlns.form.ComboboxType * @generated */ public Adapter createComboboxTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.ConnectionResourceType <em>Connection Resource Type</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.oasisopen.names.tc.opendocument.xmlns.form.ConnectionResourceType * @generated */ public Adapter createConnectionResourceTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.DateType <em>Date Type</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.oasisopen.names.tc.opendocument.xmlns.form.DateType * @generated */ public Adapter createDateTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.FileType <em>File Type</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.oasisopen.names.tc.opendocument.xmlns.form.FileType * @generated */ public Adapter createFileTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.FixedTextType <em>Fixed Text Type</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.oasisopen.names.tc.opendocument.xmlns.form.FixedTextType * @generated */ public Adapter createFixedTextTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.FormattedTextType <em>Formatted Text Type</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.oasisopen.names.tc.opendocument.xmlns.form.FormattedTextType * @generated */ public Adapter createFormattedTextTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.FormType <em>Type</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.oasisopen.names.tc.opendocument.xmlns.form.FormType * @generated */ public Adapter createFormTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.FrameType <em>Frame Type</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.oasisopen.names.tc.opendocument.xmlns.form.FrameType * @generated */ public Adapter createFrameTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.GenericControlType <em>Generic Control Type</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.oasisopen.names.tc.opendocument.xmlns.form.GenericControlType * @generated */ public Adapter createGenericControlTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.GridType <em>Grid Type</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.oasisopen.names.tc.opendocument.xmlns.form.GridType * @generated */ public Adapter createGridTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.HiddenType <em>Hidden Type</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.oasisopen.names.tc.opendocument.xmlns.form.HiddenType * @generated */ public Adapter createHiddenTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.ImageFrameType <em>Image Frame Type</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.oasisopen.names.tc.opendocument.xmlns.form.ImageFrameType * @generated */ public Adapter createImageFrameTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.ImageType <em>Image Type</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.oasisopen.names.tc.opendocument.xmlns.form.ImageType * @generated */ public Adapter createImageTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.ItemType <em>Item Type</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.oasisopen.names.tc.opendocument.xmlns.form.ItemType * @generated */ public Adapter createItemTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.ListboxType <em>Listbox Type</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.oasisopen.names.tc.opendocument.xmlns.form.ListboxType * @generated */ public Adapter createListboxTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.ListPropertyType <em>List Property Type</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.oasisopen.names.tc.opendocument.xmlns.form.ListPropertyType * @generated */ public Adapter createListPropertyTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.ListValueType <em>List Value Type</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.oasisopen.names.tc.opendocument.xmlns.form.ListValueType * @generated */ public Adapter createListValueTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.ListValueType1 <em>List Value Type1</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.oasisopen.names.tc.opendocument.xmlns.form.ListValueType1 * @generated */ public Adapter createListValueType1Adapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.ListValueType2 <em>List Value Type2</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.oasisopen.names.tc.opendocument.xmlns.form.ListValueType2 * @generated */ public Adapter createListValueType2Adapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.ListValueType3 <em>List Value Type3</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.oasisopen.names.tc.opendocument.xmlns.form.ListValueType3 * @generated */ public Adapter createListValueType3Adapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.ListValueType4 <em>List Value Type4</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.oasisopen.names.tc.opendocument.xmlns.form.ListValueType4 * @generated */ public Adapter createListValueType4Adapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.ListValueType5 <em>List Value Type5</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.oasisopen.names.tc.opendocument.xmlns.form.ListValueType5 * @generated */ public Adapter createListValueType5Adapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.PropertiesType <em>Properties Type</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.oasisopen.names.tc.opendocument.xmlns.form.PropertiesType * @generated */ public Adapter createPropertiesTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.DocumentRoot <em>Document Root</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.oasisopen.names.tc.opendocument.xmlns.form.DocumentRoot * @generated */ public Adapter createDocumentRootAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.NumberType <em>Number Type</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.oasisopen.names.tc.opendocument.xmlns.form.NumberType * @generated */ public Adapter createNumberTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.OptionType <em>Option Type</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.oasisopen.names.tc.opendocument.xmlns.form.OptionType * @generated */ public Adapter createOptionTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.PasswordType <em>Password Type</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.oasisopen.names.tc.opendocument.xmlns.form.PasswordType * @generated */ public Adapter createPasswordTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.PropertyType <em>Property Type</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.oasisopen.names.tc.opendocument.xmlns.form.PropertyType * @generated */ public Adapter createPropertyTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.RadioType <em>Radio Type</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.oasisopen.names.tc.opendocument.xmlns.form.RadioType * @generated */ public Adapter createRadioTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.TextareaType <em>Textarea Type</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.oasisopen.names.tc.opendocument.xmlns.form.TextareaType * @generated */ public Adapter createTextareaTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.TextType <em>Text Type</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.oasisopen.names.tc.opendocument.xmlns.form.TextType * @generated */ public Adapter createTextTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.TimeType <em>Time Type</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.oasisopen.names.tc.opendocument.xmlns.form.TimeType * @generated */ public Adapter createTimeTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.form.ValueRangeType <em>Value Range Type</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.oasisopen.names.tc.opendocument.xmlns.form.ValueRangeType * @generated */ public Adapter createValueRangeTypeAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.text.CommonFormControlContent <em>Common Form Control Content</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.oasisopen.names.tc.opendocument.xmlns.text.CommonFormControlContent * @generated */ public Adapter createCommonFormControlContentAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link org.oasisopen.names.tc.opendocument.xmlns.text.FormPropertyTypeAndValueList <em>Form Property Type And Value List</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.oasisopen.names.tc.opendocument.xmlns.text.FormPropertyTypeAndValueList * @generated */ public Adapter createFormPropertyTypeAndValueListAdapter() { 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; } } //FormAdapterFactory