blob: b8954943d2c1a1c67c8e0ef237ce99baa21a7981 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - Initial implementation
*
*/
package org.eclipse.osbp.xtext.reportdsl.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.osbp.dsl.semantic.common.types.LLazyResolver;
import org.eclipse.osbp.dsl.semantic.common.types.LPackage;
import org.eclipse.osbp.xtext.reportdsl.*;
/**
* <!-- 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.osbp.xtext.reportdsl.ReportDSLPackage
* @generated
*/
public class ReportDSLAdapterFactory extends AdapterFactoryImpl {
/**
* The cached model package.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected static ReportDSLPackage modelPackage;
/**
* Creates an instance of the adapter factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ReportDSLAdapterFactory() {
if (modelPackage == null) {
modelPackage = ReportDSLPackage.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 ReportDSLSwitch<Adapter> modelSwitch =
new ReportDSLSwitch<Adapter>() {
@Override
public Adapter caseReportModel(ReportModel object) {
return createReportModelAdapter();
}
@Override
public Adapter caseReportLazyResolver(ReportLazyResolver object) {
return createReportLazyResolverAdapter();
}
@Override
public Adapter caseReportBase(ReportBase object) {
return createReportBaseAdapter();
}
@Override
public Adapter caseReportPackage(ReportPackage object) {
return createReportPackageAdapter();
}
@Override
public Adapter casePageTemplates(PageTemplates object) {
return createPageTemplatesAdapter();
}
@Override
public Adapter caseSomeFormats(SomeFormats object) {
return createSomeFormatsAdapter();
}
@Override
public Adapter caseColors(Colors object) {
return createColorsAdapter();
}
@Override
public Adapter caseFonts(Fonts object) {
return createFontsAdapter();
}
@Override
public Adapter caseMedias(Medias object) {
return createMediasAdapter();
}
@Override
public Adapter caseStyles(Styles object) {
return createStylesAdapter();
}
@Override
public Adapter casePageTemplate(PageTemplate object) {
return createPageTemplateAdapter();
}
@Override
public Adapter caseColor(Color object) {
return createColorAdapter();
}
@Override
public Adapter caseFont(Font object) {
return createFontAdapter();
}
@Override
public Adapter caseFontFamily(FontFamily object) {
return createFontFamilyAdapter();
}
@Override
public Adapter caseBuildInFontFamily(BuildInFontFamily object) {
return createBuildInFontFamilyAdapter();
}
@Override
public Adapter caseCustomFontFamily(CustomFontFamily object) {
return createCustomFontFamilyAdapter();
}
@Override
public Adapter caseMedia(Media object) {
return createMediaAdapter();
}
@Override
public Adapter caseBorderStyle(BorderStyle object) {
return createBorderStyleAdapter();
}
@Override
public Adapter caseBaseStyle(BaseStyle object) {
return createBaseStyleAdapter();
}
@Override
public Adapter caseMediaStyle(MediaStyle object) {
return createMediaStyleAdapter();
}
@Override
public Adapter caseStyle(Style object) {
return createStyleAdapter();
}
@Override
public Adapter caseSomeFormat(SomeFormat object) {
return createSomeFormatAdapter();
}
@Override
public Adapter caseUomoFormat(UomoFormat object) {
return createUomoFormatAdapter();
}
@Override
public Adapter caseNumberFormat(NumberFormat object) {
return createNumberFormatAdapter();
}
@Override
public Adapter caseCurrencyFormat(CurrencyFormat object) {
return createCurrencyFormatAdapter();
}
@Override
public Adapter caseDateFormat(DateFormat object) {
return createDateFormatAdapter();
}
@Override
public Adapter caseDateTimeFormat(DateTimeFormat object) {
return createDateTimeFormatAdapter();
}
@Override
public Adapter caseTimeFormat(TimeFormat object) {
return createTimeFormatAdapter();
}
@Override
public Adapter caseReport(Report object) {
return createReportAdapter();
}
@Override
public Adapter caseReportDesign(ReportDesign object) {
return createReportDesignAdapter();
}
@Override
public Adapter caseReportDesignFile(ReportDesignFile object) {
return createReportDesignFileAdapter();
}
@Override
public Adapter caseReportDesignTemplate(ReportDesignTemplate object) {
return createReportDesignTemplateAdapter();
}
@Override
public Adapter caseContainer(Container object) {
return createContainerAdapter();
}
@Override
public Adapter casePageHeader(PageHeader object) {
return createPageHeaderAdapter();
}
@Override
public Adapter casePageDetail(PageDetail object) {
return createPageDetailAdapter();
}
@Override
public Adapter casePageFooter(PageFooter object) {
return createPageFooterAdapter();
}
@Override
public Adapter caseElement(Element object) {
return createElementAdapter();
}
@Override
public Adapter caseWithStyle(WithStyle object) {
return createWithStyleAdapter();
}
@Override
public Adapter caseTextElement(TextElement object) {
return createTextElementAdapter();
}
@Override
public Adapter caseTitle(Title object) {
return createTitleAdapter();
}
@Override
public Adapter caseSubTitle(SubTitle object) {
return createSubTitleAdapter();
}
@Override
public Adapter caseSubSubTitle(SubSubTitle object) {
return createSubSubTitleAdapter();
}
@Override
public Adapter caseLabel(Label object) {
return createLabelAdapter();
}
@Override
public Adapter caseText(Text object) {
return createTextAdapter();
}
@Override
public Adapter caseAutoText(AutoText object) {
return createAutoTextAdapter();
}
@Override
public Adapter caseImage(Image object) {
return createImageAdapter();
}
@Override
public Adapter caseWithHeaderFooter(WithHeaderFooter object) {
return createWithHeaderFooterAdapter();
}
@Override
public Adapter caseDatamartTable(DatamartTable object) {
return createDatamartTableAdapter();
}
@Override
public Adapter caseDatamartTableGroup(DatamartTableGroup object) {
return createDatamartTableGroupAdapter();
}
@Override
public Adapter caseSomeGrid(SomeGrid object) {
return createSomeGridAdapter();
}
@Override
public Adapter caseDatamartTableGroupHeader(DatamartTableGroupHeader object) {
return createDatamartTableGroupHeaderAdapter();
}
@Override
public Adapter caseDatamartTableGroupFooter(DatamartTableGroupFooter object) {
return createDatamartTableGroupFooterAdapter();
}
@Override
public Adapter caseDatamartTableDetail(DatamartTableDetail object) {
return createDatamartTableDetailAdapter();
}
@Override
public Adapter caseDatamartTableProperty(DatamartTableProperty object) {
return createDatamartTablePropertyAdapter();
}
@Override
public Adapter caseTableFormatter(TableFormatter object) {
return createTableFormatterAdapter();
}
@Override
public Adapter caseTableImage(TableImage object) {
return createTableImageAdapter();
}
@Override
public Adapter caseTableValueElement(TableValueElement object) {
return createTableValueElementAdapter();
}
@Override
public Adapter caseTableProperty(TableProperty object) {
return createTablePropertyAdapter();
}
@Override
public Adapter caseTableAggregation(TableAggregation object) {
return createTableAggregationAdapter();
}
@Override
public Adapter caseTableBaseAggregation(TableBaseAggregation object) {
return createTableBaseAggregationAdapter();
}
@Override
public Adapter caseTablePureAggregation(TablePureAggregation object) {
return createTablePureAggregationAdapter();
}
@Override
public Adapter caseTableUnaryAggregation(TableUnaryAggregation object) {
return createTableUnaryAggregationAdapter();
}
@Override
public Adapter caseTableMultipleAggregation(TableMultipleAggregation object) {
return createTableMultipleAggregationAdapter();
}
@Override
public Adapter caseTableBinaryAggregation(TableBinaryAggregation object) {
return createTableBinaryAggregationAdapter();
}
@Override
public Adapter caseTableInterval(TableInterval object) {
return createTableIntervalAdapter();
}
@Override
public Adapter caseTableNumberInterval(TableNumberInterval object) {
return createTableNumberIntervalAdapter();
}
@Override
public Adapter caseTableDateDayInterval(TableDateDayInterval object) {
return createTableDateDayIntervalAdapter();
}
@Override
public Adapter caseTableLookup(TableLookup object) {
return createTableLookupAdapter();
}
@Override
public Adapter caseTableNumberLookup(TableNumberLookup object) {
return createTableNumberLookupAdapter();
}
@Override
public Adapter caseTableStringLookup(TableStringLookup object) {
return createTableStringLookupAdapter();
}
@Override
public Adapter caseTableDateDayLookup(TableDateDayLookup object) {
return createTableDateDayLookupAdapter();
}
@Override
public Adapter caseTableRangeElement(TableRangeElement object) {
return createTableRangeElementAdapter();
}
@Override
public Adapter caseTableTextColor(TableTextColor object) {
return createTableTextColorAdapter();
}
@Override
public Adapter caseTableCellColor(TableCellColor object) {
return createTableCellColorAdapter();
}
@Override
public Adapter caseTableIcon(TableIcon object) {
return createTableIconAdapter();
}
@Override
public Adapter caseTableTrend(TableTrend object) {
return createTableTrendAdapter();
}
@Override
public Adapter caseTableTooltip(TableTooltip object) {
return createTableTooltipAdapter();
}
@Override
public Adapter caseGrid(Grid object) {
return createGridAdapter();
}
@Override
public Adapter caseGridRow(GridRow object) {
return createGridRowAdapter();
}
@Override
public Adapter caseGridCell(GridCell object) {
return createGridCellAdapter();
}
@Override
public Adapter caseLLazyResolver(LLazyResolver object) {
return createLLazyResolverAdapter();
}
@Override
public Adapter caseLPackage(LPackage object) {
return createLPackageAdapter();
}
@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.osbp.xtext.reportdsl.ReportModel <em>Report 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.osbp.xtext.reportdsl.ReportModel
* @generated
*/
public Adapter createReportModelAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.ReportLazyResolver <em>Report Lazy Resolver</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.osbp.xtext.reportdsl.ReportLazyResolver
* @generated
*/
public Adapter createReportLazyResolverAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.ReportBase <em>Report Base</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.osbp.xtext.reportdsl.ReportBase
* @generated
*/
public Adapter createReportBaseAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.ReportPackage <em>Report Package</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.osbp.xtext.reportdsl.ReportPackage
* @generated
*/
public Adapter createReportPackageAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.PageTemplates <em>Page Templates</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.osbp.xtext.reportdsl.PageTemplates
* @generated
*/
public Adapter createPageTemplatesAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.SomeFormats <em>Some Formats</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.osbp.xtext.reportdsl.SomeFormats
* @generated
*/
public Adapter createSomeFormatsAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.Colors <em>Colors</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.osbp.xtext.reportdsl.Colors
* @generated
*/
public Adapter createColorsAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.Fonts <em>Fonts</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.osbp.xtext.reportdsl.Fonts
* @generated
*/
public Adapter createFontsAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.Medias <em>Medias</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.osbp.xtext.reportdsl.Medias
* @generated
*/
public Adapter createMediasAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.Styles <em>Styles</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.osbp.xtext.reportdsl.Styles
* @generated
*/
public Adapter createStylesAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.PageTemplate <em>Page Template</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.osbp.xtext.reportdsl.PageTemplate
* @generated
*/
public Adapter createPageTemplateAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.Color <em>Color</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.osbp.xtext.reportdsl.Color
* @generated
*/
public Adapter createColorAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.Font <em>Font</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.osbp.xtext.reportdsl.Font
* @generated
*/
public Adapter createFontAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.FontFamily <em>Font Family</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.osbp.xtext.reportdsl.FontFamily
* @generated
*/
public Adapter createFontFamilyAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.BuildInFontFamily <em>Build In Font Family</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.osbp.xtext.reportdsl.BuildInFontFamily
* @generated
*/
public Adapter createBuildInFontFamilyAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.CustomFontFamily <em>Custom Font Family</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.osbp.xtext.reportdsl.CustomFontFamily
* @generated
*/
public Adapter createCustomFontFamilyAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.Media <em>Media</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.osbp.xtext.reportdsl.Media
* @generated
*/
public Adapter createMediaAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.BorderStyle <em>Border Style</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.osbp.xtext.reportdsl.BorderStyle
* @generated
*/
public Adapter createBorderStyleAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.BaseStyle <em>Base Style</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.osbp.xtext.reportdsl.BaseStyle
* @generated
*/
public Adapter createBaseStyleAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.MediaStyle <em>Media Style</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.osbp.xtext.reportdsl.MediaStyle
* @generated
*/
public Adapter createMediaStyleAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.Style <em>Style</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.osbp.xtext.reportdsl.Style
* @generated
*/
public Adapter createStyleAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.SomeFormat <em>Some Format</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.osbp.xtext.reportdsl.SomeFormat
* @generated
*/
public Adapter createSomeFormatAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.UomoFormat <em>Uomo Format</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.osbp.xtext.reportdsl.UomoFormat
* @generated
*/
public Adapter createUomoFormatAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.NumberFormat <em>Number Format</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.osbp.xtext.reportdsl.NumberFormat
* @generated
*/
public Adapter createNumberFormatAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.CurrencyFormat <em>Currency Format</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.osbp.xtext.reportdsl.CurrencyFormat
* @generated
*/
public Adapter createCurrencyFormatAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.DateFormat <em>Date Format</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.osbp.xtext.reportdsl.DateFormat
* @generated
*/
public Adapter createDateFormatAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.DateTimeFormat <em>Date Time Format</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.osbp.xtext.reportdsl.DateTimeFormat
* @generated
*/
public Adapter createDateTimeFormatAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TimeFormat <em>Time Format</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.osbp.xtext.reportdsl.TimeFormat
* @generated
*/
public Adapter createTimeFormatAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.Report <em>Report</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.osbp.xtext.reportdsl.Report
* @generated
*/
public Adapter createReportAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.ReportDesign <em>Report Design</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.osbp.xtext.reportdsl.ReportDesign
* @generated
*/
public Adapter createReportDesignAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.ReportDesignFile <em>Report Design File</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.osbp.xtext.reportdsl.ReportDesignFile
* @generated
*/
public Adapter createReportDesignFileAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.ReportDesignTemplate <em>Report Design Template</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.osbp.xtext.reportdsl.ReportDesignTemplate
* @generated
*/
public Adapter createReportDesignTemplateAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.Container <em>Container</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.osbp.xtext.reportdsl.Container
* @generated
*/
public Adapter createContainerAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.PageHeader <em>Page Header</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.osbp.xtext.reportdsl.PageHeader
* @generated
*/
public Adapter createPageHeaderAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.PageDetail <em>Page Detail</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.osbp.xtext.reportdsl.PageDetail
* @generated
*/
public Adapter createPageDetailAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.PageFooter <em>Page Footer</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.osbp.xtext.reportdsl.PageFooter
* @generated
*/
public Adapter createPageFooterAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.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.osbp.xtext.reportdsl.Element
* @generated
*/
public Adapter createElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.WithStyle <em>With Style</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.osbp.xtext.reportdsl.WithStyle
* @generated
*/
public Adapter createWithStyleAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TextElement <em>Text 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.osbp.xtext.reportdsl.TextElement
* @generated
*/
public Adapter createTextElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.Title <em>Title</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.osbp.xtext.reportdsl.Title
* @generated
*/
public Adapter createTitleAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.SubTitle <em>Sub Title</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.osbp.xtext.reportdsl.SubTitle
* @generated
*/
public Adapter createSubTitleAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.SubSubTitle <em>Sub Sub Title</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.osbp.xtext.reportdsl.SubSubTitle
* @generated
*/
public Adapter createSubSubTitleAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.Label <em>Label</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.osbp.xtext.reportdsl.Label
* @generated
*/
public Adapter createLabelAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.Text <em>Text</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.osbp.xtext.reportdsl.Text
* @generated
*/
public Adapter createTextAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.AutoText <em>Auto Text</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.osbp.xtext.reportdsl.AutoText
* @generated
*/
public Adapter createAutoTextAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.Image <em>Image</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.osbp.xtext.reportdsl.Image
* @generated
*/
public Adapter createImageAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.WithHeaderFooter <em>With Header Footer</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.osbp.xtext.reportdsl.WithHeaderFooter
* @generated
*/
public Adapter createWithHeaderFooterAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.DatamartTable <em>Datamart Table</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.osbp.xtext.reportdsl.DatamartTable
* @generated
*/
public Adapter createDatamartTableAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.DatamartTableGroup <em>Datamart Table Group</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.osbp.xtext.reportdsl.DatamartTableGroup
* @generated
*/
public Adapter createDatamartTableGroupAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.SomeGrid <em>Some Grid</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.osbp.xtext.reportdsl.SomeGrid
* @generated
*/
public Adapter createSomeGridAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.DatamartTableGroupHeader <em>Datamart Table Group Header</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.osbp.xtext.reportdsl.DatamartTableGroupHeader
* @generated
*/
public Adapter createDatamartTableGroupHeaderAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.DatamartTableGroupFooter <em>Datamart Table Group Footer</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.osbp.xtext.reportdsl.DatamartTableGroupFooter
* @generated
*/
public Adapter createDatamartTableGroupFooterAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.DatamartTableDetail <em>Datamart Table Detail</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.osbp.xtext.reportdsl.DatamartTableDetail
* @generated
*/
public Adapter createDatamartTableDetailAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.DatamartTableProperty <em>Datamart Table Property</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.osbp.xtext.reportdsl.DatamartTableProperty
* @generated
*/
public Adapter createDatamartTablePropertyAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableFormatter <em>Table Formatter</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.osbp.xtext.reportdsl.TableFormatter
* @generated
*/
public Adapter createTableFormatterAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableImage <em>Table Image</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.osbp.xtext.reportdsl.TableImage
* @generated
*/
public Adapter createTableImageAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableValueElement <em>Table Value 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.osbp.xtext.reportdsl.TableValueElement
* @generated
*/
public Adapter createTableValueElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableProperty <em>Table Property</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.osbp.xtext.reportdsl.TableProperty
* @generated
*/
public Adapter createTablePropertyAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableAggregation <em>Table Aggregation</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.osbp.xtext.reportdsl.TableAggregation
* @generated
*/
public Adapter createTableAggregationAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableBaseAggregation <em>Table Base Aggregation</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.osbp.xtext.reportdsl.TableBaseAggregation
* @generated
*/
public Adapter createTableBaseAggregationAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TablePureAggregation <em>Table Pure Aggregation</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.osbp.xtext.reportdsl.TablePureAggregation
* @generated
*/
public Adapter createTablePureAggregationAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableUnaryAggregation <em>Table Unary Aggregation</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.osbp.xtext.reportdsl.TableUnaryAggregation
* @generated
*/
public Adapter createTableUnaryAggregationAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableMultipleAggregation <em>Table Multiple Aggregation</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.osbp.xtext.reportdsl.TableMultipleAggregation
* @generated
*/
public Adapter createTableMultipleAggregationAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableBinaryAggregation <em>Table Binary Aggregation</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.osbp.xtext.reportdsl.TableBinaryAggregation
* @generated
*/
public Adapter createTableBinaryAggregationAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableInterval <em>Table Interval</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.osbp.xtext.reportdsl.TableInterval
* @generated
*/
public Adapter createTableIntervalAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableNumberInterval <em>Table Number Interval</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.osbp.xtext.reportdsl.TableNumberInterval
* @generated
*/
public Adapter createTableNumberIntervalAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableDateDayInterval <em>Table Date Day Interval</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.osbp.xtext.reportdsl.TableDateDayInterval
* @generated
*/
public Adapter createTableDateDayIntervalAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableLookup <em>Table Lookup</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.osbp.xtext.reportdsl.TableLookup
* @generated
*/
public Adapter createTableLookupAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableNumberLookup <em>Table Number Lookup</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.osbp.xtext.reportdsl.TableNumberLookup
* @generated
*/
public Adapter createTableNumberLookupAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableStringLookup <em>Table String Lookup</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.osbp.xtext.reportdsl.TableStringLookup
* @generated
*/
public Adapter createTableStringLookupAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableDateDayLookup <em>Table Date Day Lookup</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.osbp.xtext.reportdsl.TableDateDayLookup
* @generated
*/
public Adapter createTableDateDayLookupAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableRangeElement <em>Table Range 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.osbp.xtext.reportdsl.TableRangeElement
* @generated
*/
public Adapter createTableRangeElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableTextColor <em>Table Text Color</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.osbp.xtext.reportdsl.TableTextColor
* @generated
*/
public Adapter createTableTextColorAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableCellColor <em>Table Cell Color</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.osbp.xtext.reportdsl.TableCellColor
* @generated
*/
public Adapter createTableCellColorAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableIcon <em>Table Icon</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.osbp.xtext.reportdsl.TableIcon
* @generated
*/
public Adapter createTableIconAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableTrend <em>Table Trend</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.osbp.xtext.reportdsl.TableTrend
* @generated
*/
public Adapter createTableTrendAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.TableTooltip <em>Table Tooltip</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.osbp.xtext.reportdsl.TableTooltip
* @generated
*/
public Adapter createTableTooltipAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.Grid <em>Grid</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.osbp.xtext.reportdsl.Grid
* @generated
*/
public Adapter createGridAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.GridRow <em>Grid Row</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.osbp.xtext.reportdsl.GridRow
* @generated
*/
public Adapter createGridRowAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.xtext.reportdsl.GridCell <em>Grid Cell</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.osbp.xtext.reportdsl.GridCell
* @generated
*/
public Adapter createGridCellAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.dsl.semantic.common.types.LLazyResolver <em>LLazy Resolver</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.osbp.dsl.semantic.common.types.LLazyResolver
* @generated
*/
public Adapter createLLazyResolverAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.osbp.dsl.semantic.common.types.LPackage <em>LPackage</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.osbp.dsl.semantic.common.types.LPackage
* @generated
*/
public Adapter createLPackageAdapter() {
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;
}
} //ReportDSLAdapterFactory