aboutsummaryrefslogtreecommitdiffstats
path: root/ncomp-core-model/src/main/xcore-gen/org/openecomp/ncomp/core/metrics/MetricsFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'ncomp-core-model/src/main/xcore-gen/org/openecomp/ncomp/core/metrics/MetricsFactory.java')
-rw-r--r--ncomp-core-model/src/main/xcore-gen/org/openecomp/ncomp/core/metrics/MetricsFactory.java144
1 files changed, 144 insertions, 0 deletions
diff --git a/ncomp-core-model/src/main/xcore-gen/org/openecomp/ncomp/core/metrics/MetricsFactory.java b/ncomp-core-model/src/main/xcore-gen/org/openecomp/ncomp/core/metrics/MetricsFactory.java
new file mode 100644
index 0000000..f1942dc
--- /dev/null
+++ b/ncomp-core-model/src/main/xcore-gen/org/openecomp/ncomp/core/metrics/MetricsFactory.java
@@ -0,0 +1,144 @@
+
+/*-
+ * ============LICENSE_START==========================================
+ * OPENECOMP - DCAE
+ * ===================================================================
+ * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+ * ===================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END============================================
+ */
+
+/**
+ */
+package org.openecomp.ncomp.core.metrics;
+
+import org.eclipse.emf.ecore.EFactory;
+
+/**
+ * <!-- begin-user-doc -->
+ * The <b>Factory</b> for the model.
+ * It provides a create method for each non-abstract class of the model.
+ * <!-- end-user-doc -->
+ * @see org.openecomp.ncomp.core.metrics.MetricsPackage
+ * @generated
+ */
+public interface MetricsFactory extends EFactory {
+ /**
+ * The singleton instance of the factory.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ MetricsFactory eINSTANCE = org.openecomp.ncomp.core.metrics.impl.MetricsFactoryImpl.init();
+
+ /**
+ * Returns a new object of class '<em>Double Metric</em>'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return a new object of class '<em>Double Metric</em>'.
+ * @generated
+ */
+ DoubleMetric createDoubleMetric();
+
+ /**
+ * Returns a new object of class '<em>Long Metric</em>'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return a new object of class '<em>Long Metric</em>'.
+ * @generated
+ */
+ LongMetric createLongMetric();
+
+ /**
+ * Returns a new object of class '<em>String Metric</em>'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return a new object of class '<em>String Metric</em>'.
+ * @generated
+ */
+ StringMetric createStringMetric();
+
+ /**
+ * Returns a new object of class '<em>Aggregation Metric Value Option</em>'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return a new object of class '<em>Aggregation Metric Value Option</em>'.
+ * @generated
+ */
+ AggregationMetricValueOption createAggregationMetricValueOption();
+
+ /**
+ * Returns a new object of class '<em>Basic Metric Value Option</em>'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return a new object of class '<em>Basic Metric Value Option</em>'.
+ * @generated
+ */
+ BasicMetricValueOption createBasicMetricValueOption();
+
+ /**
+ * Returns a new object of class '<em>Sequence Metric Value Option</em>'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return a new object of class '<em>Sequence Metric Value Option</em>'.
+ * @generated
+ */
+ SequenceMetricValueOption createSequenceMetricValueOption();
+
+ /**
+ * Returns a new object of class '<em>Basic Metrics</em>'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return a new object of class '<em>Basic Metrics</em>'.
+ * @generated
+ */
+ BasicMetrics createBasicMetrics();
+
+ /**
+ * Returns a new object of class '<em>Basic Increasing ULong Metric</em>'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return a new object of class '<em>Basic Increasing ULong Metric</em>'.
+ * @generated
+ */
+ BasicIncreasingULongMetric createBasicIncreasingULongMetric();
+
+ /**
+ * Returns a new object of class '<em>Basic Long Metric</em>'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return a new object of class '<em>Basic Long Metric</em>'.
+ * @generated
+ */
+ BasicLongMetric createBasicLongMetric();
+
+ /**
+ * Returns a new object of class '<em>Basic Double Metric</em>'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return a new object of class '<em>Basic Double Metric</em>'.
+ * @generated
+ */
+ BasicDoubleMetric createBasicDoubleMetric();
+
+ /**
+ * Returns the package supported by this factory.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return the package supported by this factory.
+ * @generated
+ */
+ MetricsPackage getMetricsPackage();
+
+} //MetricsFactory