/eclipse-dtp-1.10/org.eclipse.datatools.modelbase-DTP_1_10_0_Release_201206131012/plugins/org.eclipse.datatools.modelbase.sql/src/org/eclipse/datatools/modelbase/sql/expressions/SQLExpressionsFactory.java

# · Java · 68 lines · 9 code · 7 blank · 52 comment · 0 complexity · 10499d55ccd1f7177e8208768da1eab8 MD5 · raw file

  1. /*******************************************************************************
  2. * Copyright (c) 2001, 2004 IBM Corporation and others.
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * http://www.eclipse.org/legal/epl-v10.html
  7. *
  8. * Contributors:
  9. * IBM Corporation - initial API and implementation
  10. *******************************************************************************/
  11. package org.eclipse.datatools.modelbase.sql.expressions;
  12. import org.eclipse.emf.ecore.EFactory;
  13. /**
  14. * <!-- begin-user-doc -->
  15. * The <b>Factory</b> for the model.
  16. * It provides a create method for each non-abstract class of the model.
  17. * <!-- end-user-doc -->
  18. * @see org.eclipse.datatools.modelbase.sql.expressions.SQLExpressionsPackage
  19. * @generated
  20. */
  21. public interface SQLExpressionsFactory extends EFactory {
  22. /**
  23. * The singleton instance of the factory.
  24. * <!-- begin-user-doc -->
  25. * <!-- end-user-doc -->
  26. * @generated
  27. */
  28. SQLExpressionsFactory eINSTANCE = org.eclipse.datatools.modelbase.sql.expressions.impl.SQLExpressionsFactoryImpl.init();
  29. /**
  30. * Returns a new object of class '<em>Query Expression Default</em>'.
  31. * <!-- begin-user-doc -->
  32. * <!-- end-user-doc -->
  33. * @return a new object of class '<em>Query Expression Default</em>'.
  34. * @generated
  35. */
  36. QueryExpressionDefault createQueryExpressionDefault();
  37. /**
  38. * Returns a new object of class '<em>Search Condition Default</em>'.
  39. * <!-- begin-user-doc -->
  40. * <!-- end-user-doc -->
  41. * @return a new object of class '<em>Search Condition Default</em>'.
  42. * @generated
  43. */
  44. SearchConditionDefault createSearchConditionDefault();
  45. /**
  46. * Returns a new object of class '<em>Value Expression Default</em>'.
  47. * <!-- begin-user-doc -->
  48. * <!-- end-user-doc -->
  49. * @return a new object of class '<em>Value Expression Default</em>'.
  50. * @generated
  51. */
  52. ValueExpressionDefault createValueExpressionDefault();
  53. /**
  54. * Returns the package supported by this factory.
  55. * <!-- begin-user-doc -->
  56. * <!-- end-user-doc -->
  57. * @return the package supported by this factory.
  58. * @generated
  59. */
  60. SQLExpressionsPackage getSQLExpressionsPackage();
  61. } //SQLExpressionsFactory