Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/OseeModelFactoryService.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/OseeModelFactoryService.java126
1 files changed, 63 insertions, 63 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/OseeModelFactoryService.java b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/OseeModelFactoryService.java
index 63d3b8f7844..478622248b9 100644
--- a/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/OseeModelFactoryService.java
+++ b/plugins/org.eclipse.osee.framework.core.model/src/org/eclipse/osee/framework/core/model/OseeModelFactoryService.java
@@ -1,63 +1,63 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * 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:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.framework.core.model;
-
-import org.eclipse.osee.framework.core.model.type.ArtifactTypeFactory;
-import org.eclipse.osee.framework.core.model.type.AttributeTypeFactory;
-import org.eclipse.osee.framework.core.model.type.OseeEnumTypeFactory;
-import org.eclipse.osee.framework.core.model.type.RelationTypeFactory;
-import org.eclipse.osee.framework.core.services.IOseeModelFactoryService;
-
-/**
- * @author Roberto E. Escobar
- */
-public class OseeModelFactoryService implements IOseeModelFactoryService {
-
- private final BranchFactory branchFactory;
- private final TransactionRecordFactory txFactory;
- private final ArtifactTypeFactory artTypeFactory;
- private final AttributeTypeFactory attrTypeFactory;
- private final RelationTypeFactory relTypeFactory;
- private final OseeEnumTypeFactory oseEnumTypeFactory;
-
- public OseeModelFactoryService(BranchFactory branchFactory, TransactionRecordFactory txFactory, ArtifactTypeFactory artTypeFactory, AttributeTypeFactory attrTypeFactory, RelationTypeFactory relTypeFactory, OseeEnumTypeFactory oseEnumTypeFactory) {
- this.branchFactory = branchFactory;
- this.txFactory = txFactory;
- this.artTypeFactory = artTypeFactory;
- this.attrTypeFactory = attrTypeFactory;
- this.relTypeFactory = relTypeFactory;
- this.oseEnumTypeFactory = oseEnumTypeFactory;
- }
-
- public BranchFactory getBranchFactory() {
- return branchFactory;
- }
-
- public TransactionRecordFactory getTransactionFactory() {
- return txFactory;
- }
-
- public ArtifactTypeFactory getArtifactTypeFactory() {
- return artTypeFactory;
- }
-
- public AttributeTypeFactory getAttributeTypeFactory() {
- return attrTypeFactory;
- }
-
- public RelationTypeFactory getRelationTypeFactory() {
- return relTypeFactory;
- }
-
- public OseeEnumTypeFactory getOseeEnumTypeFactory() {
- return oseEnumTypeFactory;
- }
-}
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 Boeing.
+ * 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:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.framework.core.model;
+
+import org.eclipse.osee.framework.core.model.type.ArtifactTypeFactory;
+import org.eclipse.osee.framework.core.model.type.AttributeTypeFactory;
+import org.eclipse.osee.framework.core.model.type.OseeEnumTypeFactory;
+import org.eclipse.osee.framework.core.model.type.RelationTypeFactory;
+import org.eclipse.osee.framework.core.services.IOseeModelFactoryService;
+
+/**
+ * @author Roberto E. Escobar
+ */
+public class OseeModelFactoryService implements IOseeModelFactoryService {
+
+ private final BranchFactory branchFactory;
+ private final TransactionRecordFactory txFactory;
+ private final ArtifactTypeFactory artTypeFactory;
+ private final AttributeTypeFactory attrTypeFactory;
+ private final RelationTypeFactory relTypeFactory;
+ private final OseeEnumTypeFactory oseEnumTypeFactory;
+
+ public OseeModelFactoryService(BranchFactory branchFactory, TransactionRecordFactory txFactory, ArtifactTypeFactory artTypeFactory, AttributeTypeFactory attrTypeFactory, RelationTypeFactory relTypeFactory, OseeEnumTypeFactory oseEnumTypeFactory) {
+ this.branchFactory = branchFactory;
+ this.txFactory = txFactory;
+ this.artTypeFactory = artTypeFactory;
+ this.attrTypeFactory = attrTypeFactory;
+ this.relTypeFactory = relTypeFactory;
+ this.oseEnumTypeFactory = oseEnumTypeFactory;
+ }
+
+ public BranchFactory getBranchFactory() {
+ return branchFactory;
+ }
+
+ public TransactionRecordFactory getTransactionFactory() {
+ return txFactory;
+ }
+
+ public ArtifactTypeFactory getArtifactTypeFactory() {
+ return artTypeFactory;
+ }
+
+ public AttributeTypeFactory getAttributeTypeFactory() {
+ return attrTypeFactory;
+ }
+
+ public RelationTypeFactory getRelationTypeFactory() {
+ return relTypeFactory;
+ }
+
+ public OseeEnumTypeFactory getOseeEnumTypeFactory() {
+ return oseEnumTypeFactory;
+ }
+}

Back to the top