(SMatch.class, this,
+ SimplemergePackage.SCOMPARISON__MATCHES);
+ }
+ return matches;
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public NotificationChain eInverseRemove(InternalEObject otherEnd,
+ int featureID, NotificationChain msgs) {
+ switch (featureID) {
+ case SimplemergePackage.SCOMPARISON__MATCHES:
+ return ((InternalEList>) getMatches()).basicRemove(otherEnd,
+ msgs);
+ }
+ return super.eInverseRemove(otherEnd, featureID, msgs);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public Object eGet(int featureID, boolean resolve, boolean coreType) {
+ switch (featureID) {
+ case SimplemergePackage.SCOMPARISON__MATCHES:
+ return getMatches();
+ }
+ return super.eGet(featureID, resolve, coreType);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @SuppressWarnings("unchecked")
+ @Override
+ public void eSet(int featureID, Object newValue) {
+ switch (featureID) {
+ case SimplemergePackage.SCOMPARISON__MATCHES:
+ getMatches().clear();
+ getMatches().addAll((Collection extends SMatch>) newValue);
+ return;
+ }
+ super.eSet(featureID, newValue);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public void eUnset(int featureID) {
+ switch (featureID) {
+ case SimplemergePackage.SCOMPARISON__MATCHES:
+ getMatches().clear();
+ return;
+ }
+ super.eUnset(featureID);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public boolean eIsSet(int featureID) {
+ switch (featureID) {
+ case SimplemergePackage.SCOMPARISON__MATCHES:
+ return matches != null && !matches.isEmpty();
+ }
+ return super.eIsSet(featureID);
+ }
+
+} // SComparisonImpl
diff --git a/java/bundles/org.eclipse.set.model.simplemerge/src/org/eclipse/set/model/simplemerge/impl/SMatchImpl.java b/java/bundles/org.eclipse.set.model.simplemerge/src/org/eclipse/set/model/simplemerge/impl/SMatchImpl.java
new file mode 100644
index 0000000000..74c5e85533
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.simplemerge/src/org/eclipse/set/model/simplemerge/impl/SMatchImpl.java
@@ -0,0 +1,414 @@
+/**
+ * Copyright (c) 2018 DB Netz AG and others.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v2.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v20.html
+ */
+package org.eclipse.set.model.simplemerge.impl;
+
+import org.eclipse.emf.common.notify.Notification;
+
+import org.eclipse.emf.ecore.EClass;
+
+import org.eclipse.emf.ecore.impl.ENotificationImpl;
+import org.eclipse.emf.ecore.impl.MinimalEObjectImpl;
+
+import org.eclipse.set.model.simplemerge.Resolution;
+import org.eclipse.set.model.simplemerge.SMatch;
+import org.eclipse.set.model.simplemerge.SimplemergePackage;
+
+/**
+ * An implementation of the model object
+ * 'SMatch'.
+ *
+ * The following features are implemented:
+ *
+ *
+ * - {@link org.eclipse.set.model.simplemerge.impl.SMatchImpl#getId
+ * Id}
+ * - {@link org.eclipse.set.model.simplemerge.impl.SMatchImpl#getGuidPrimary
+ * Guid Primary}
+ * - {@link org.eclipse.set.model.simplemerge.impl.SMatchImpl#getGuidSecondary
+ * Guid Secondary}
+ * - {@link org.eclipse.set.model.simplemerge.impl.SMatchImpl#getResolution
+ * Resolution}
+ * - {@link org.eclipse.set.model.simplemerge.impl.SMatchImpl#getElementType
+ * Element Type}
+ *
+ *
+ * @generated
+ */
+public class SMatchImpl extends MinimalEObjectImpl.Container implements SMatch {
+ /**
+ * The default value of the '{@link #getId() Id}' attribute.
+ *
+ * @see #getId()
+ * @generated
+ * @ordered
+ */
+ protected static final int ID_EDEFAULT = 0;
+
+ /**
+ * The cached value of the '{@link #getId() Id}' attribute.
+ *
+ * @see #getId()
+ * @generated
+ * @ordered
+ */
+ protected int id = ID_EDEFAULT;
+
+ /**
+ * The default value of the '{@link #getGuidPrimary() Guid
+ * Primary}' attribute.
+ *
+ * @see #getGuidPrimary()
+ * @generated
+ * @ordered
+ */
+ protected static final String GUID_PRIMARY_EDEFAULT = null;
+
+ /**
+ * The cached value of the '{@link #getGuidPrimary() Guid Primary}'
+ * attribute.
+ *
+ * @see #getGuidPrimary()
+ * @generated
+ * @ordered
+ */
+ protected String guidPrimary = GUID_PRIMARY_EDEFAULT;
+
+ /**
+ * The default value of the '{@link #getGuidSecondary() Guid
+ * Secondary}' attribute.
+ *
+ * @see #getGuidSecondary()
+ * @generated
+ * @ordered
+ */
+ protected static final String GUID_SECONDARY_EDEFAULT = null;
+
+ /**
+ * The cached value of the '{@link #getGuidSecondary() Guid
+ * Secondary}' attribute.
+ *
+ * @see #getGuidSecondary()
+ * @generated
+ * @ordered
+ */
+ protected String guidSecondary = GUID_SECONDARY_EDEFAULT;
+
+ /**
+ * The default value of the '{@link #getResolution() Resolution}'
+ * attribute.
+ *
+ * @see #getResolution()
+ * @generated
+ * @ordered
+ */
+ protected static final Resolution RESOLUTION_EDEFAULT = Resolution.PRIMARY_UNRESOLVED;
+
+ /**
+ * The cached value of the '{@link #getResolution() Resolution}'
+ * attribute.
+ *
+ * @see #getResolution()
+ * @generated
+ * @ordered
+ */
+ protected Resolution resolution = RESOLUTION_EDEFAULT;
+
+ /**
+ * The default value of the '{@link #getElementType() Element
+ * Type}' attribute.
+ *
+ * @see #getElementType()
+ * @generated
+ * @ordered
+ */
+ protected static final String ELEMENT_TYPE_EDEFAULT = null;
+
+ /**
+ * The cached value of the '{@link #getElementType() Element Type}'
+ * attribute.
+ *
+ * @see #getElementType()
+ * @generated
+ * @ordered
+ */
+ protected String elementType = ELEMENT_TYPE_EDEFAULT;
+
+ /**
+ *
+ *
+ * @generated
+ */
+ protected SMatchImpl() {
+ super();
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ protected EClass eStaticClass() {
+ return SimplemergePackage.Literals.SMATCH;
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public int getId() {
+ return id;
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public void setId(int newId) {
+ int oldId = id;
+ id = newId;
+ if (eNotificationRequired())
+ eNotify(new ENotificationImpl(this, Notification.SET,
+ SimplemergePackage.SMATCH__ID, oldId, id));
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public String getGuidPrimary() {
+ return guidPrimary;
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public void setGuidPrimary(String newGuidPrimary) {
+ String oldGuidPrimary = guidPrimary;
+ guidPrimary = newGuidPrimary;
+ if (eNotificationRequired())
+ eNotify(new ENotificationImpl(this, Notification.SET,
+ SimplemergePackage.SMATCH__GUID_PRIMARY, oldGuidPrimary,
+ guidPrimary));
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public String getGuidSecondary() {
+ return guidSecondary;
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public void setGuidSecondary(String newGuidSecondary) {
+ String oldGuidSecondary = guidSecondary;
+ guidSecondary = newGuidSecondary;
+ if (eNotificationRequired())
+ eNotify(new ENotificationImpl(this, Notification.SET,
+ SimplemergePackage.SMATCH__GUID_SECONDARY, oldGuidSecondary,
+ guidSecondary));
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public Resolution getResolution() {
+ return resolution;
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public void setResolution(Resolution newResolution) {
+ Resolution oldResolution = resolution;
+ resolution = newResolution == null ? RESOLUTION_EDEFAULT
+ : newResolution;
+ if (eNotificationRequired())
+ eNotify(new ENotificationImpl(this, Notification.SET,
+ SimplemergePackage.SMATCH__RESOLUTION, oldResolution,
+ resolution));
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public String getElementType() {
+ return elementType;
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public void setElementType(String newElementType) {
+ String oldElementType = elementType;
+ elementType = newElementType;
+ if (eNotificationRequired())
+ eNotify(new ENotificationImpl(this, Notification.SET,
+ SimplemergePackage.SMATCH__ELEMENT_TYPE, oldElementType,
+ elementType));
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public Object eGet(int featureID, boolean resolve, boolean coreType) {
+ switch (featureID) {
+ case SimplemergePackage.SMATCH__ID:
+ return getId();
+ case SimplemergePackage.SMATCH__GUID_PRIMARY:
+ return getGuidPrimary();
+ case SimplemergePackage.SMATCH__GUID_SECONDARY:
+ return getGuidSecondary();
+ case SimplemergePackage.SMATCH__RESOLUTION:
+ return getResolution();
+ case SimplemergePackage.SMATCH__ELEMENT_TYPE:
+ return getElementType();
+ }
+ return super.eGet(featureID, resolve, coreType);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public void eSet(int featureID, Object newValue) {
+ switch (featureID) {
+ case SimplemergePackage.SMATCH__ID:
+ setId((Integer) newValue);
+ return;
+ case SimplemergePackage.SMATCH__GUID_PRIMARY:
+ setGuidPrimary((String) newValue);
+ return;
+ case SimplemergePackage.SMATCH__GUID_SECONDARY:
+ setGuidSecondary((String) newValue);
+ return;
+ case SimplemergePackage.SMATCH__RESOLUTION:
+ setResolution((Resolution) newValue);
+ return;
+ case SimplemergePackage.SMATCH__ELEMENT_TYPE:
+ setElementType((String) newValue);
+ return;
+ }
+ super.eSet(featureID, newValue);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public void eUnset(int featureID) {
+ switch (featureID) {
+ case SimplemergePackage.SMATCH__ID:
+ setId(ID_EDEFAULT);
+ return;
+ case SimplemergePackage.SMATCH__GUID_PRIMARY:
+ setGuidPrimary(GUID_PRIMARY_EDEFAULT);
+ return;
+ case SimplemergePackage.SMATCH__GUID_SECONDARY:
+ setGuidSecondary(GUID_SECONDARY_EDEFAULT);
+ return;
+ case SimplemergePackage.SMATCH__RESOLUTION:
+ setResolution(RESOLUTION_EDEFAULT);
+ return;
+ case SimplemergePackage.SMATCH__ELEMENT_TYPE:
+ setElementType(ELEMENT_TYPE_EDEFAULT);
+ return;
+ }
+ super.eUnset(featureID);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public boolean eIsSet(int featureID) {
+ switch (featureID) {
+ case SimplemergePackage.SMATCH__ID:
+ return id != ID_EDEFAULT;
+ case SimplemergePackage.SMATCH__GUID_PRIMARY:
+ return GUID_PRIMARY_EDEFAULT == null ? guidPrimary != null
+ : !GUID_PRIMARY_EDEFAULT.equals(guidPrimary);
+ case SimplemergePackage.SMATCH__GUID_SECONDARY:
+ return GUID_SECONDARY_EDEFAULT == null ? guidSecondary != null
+ : !GUID_SECONDARY_EDEFAULT.equals(guidSecondary);
+ case SimplemergePackage.SMATCH__RESOLUTION:
+ return resolution != RESOLUTION_EDEFAULT;
+ case SimplemergePackage.SMATCH__ELEMENT_TYPE:
+ return ELEMENT_TYPE_EDEFAULT == null ? elementType != null
+ : !ELEMENT_TYPE_EDEFAULT.equals(elementType);
+ }
+ return super.eIsSet(featureID);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public String toString() {
+ if (eIsProxy())
+ return super.toString();
+
+ StringBuilder result = new StringBuilder(super.toString());
+ result.append(" (id: ");
+ result.append(id);
+ result.append(", guidPrimary: ");
+ result.append(guidPrimary);
+ result.append(", guidSecondary: ");
+ result.append(guidSecondary);
+ result.append(", resolution: ");
+ result.append(resolution);
+ result.append(", elementType: ");
+ result.append(elementType);
+ result.append(')');
+ return result.toString();
+ }
+
+} // SMatchImpl
diff --git a/java/bundles/org.eclipse.set.model.simplemerge/src/org/eclipse/set/model/simplemerge/impl/SimplemergeFactoryImpl.java b/java/bundles/org.eclipse.set.model.simplemerge/src/org/eclipse/set/model/simplemerge/impl/SimplemergeFactoryImpl.java
new file mode 100644
index 0000000000..2a3a12fc37
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.simplemerge/src/org/eclipse/set/model/simplemerge/impl/SimplemergeFactoryImpl.java
@@ -0,0 +1,177 @@
+/**
+ * Copyright (c) 2018 DB Netz AG and others.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v2.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v20.html
+ */
+package org.eclipse.set.model.simplemerge.impl;
+
+import org.eclipse.emf.ecore.EClass;
+import org.eclipse.emf.ecore.EDataType;
+import org.eclipse.emf.ecore.EObject;
+import org.eclipse.emf.ecore.EPackage;
+
+import org.eclipse.emf.ecore.impl.EFactoryImpl;
+
+import org.eclipse.emf.ecore.plugin.EcorePlugin;
+
+import org.eclipse.set.model.simplemerge.*;
+
+/**
+ * An implementation of the model Factory.
+ *
+ * @generated
+ */
+public class SimplemergeFactoryImpl extends EFactoryImpl
+ implements SimplemergeFactory {
+ /**
+ * Creates the default factory implementation.
+ *
+ * @generated
+ */
+ public static SimplemergeFactory init() {
+ try {
+ SimplemergeFactory theSimplemergeFactory = (SimplemergeFactory) EPackage.Registry.INSTANCE
+ .getEFactory(SimplemergePackage.eNS_URI);
+ if (theSimplemergeFactory != null) {
+ return theSimplemergeFactory;
+ }
+ } catch (Exception exception) {
+ EcorePlugin.INSTANCE.log(exception);
+ }
+ return new SimplemergeFactoryImpl();
+ }
+
+ /**
+ * Creates an instance of the factory.
+ *
+ * @generated
+ */
+ public SimplemergeFactoryImpl() {
+ super();
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public EObject create(EClass eClass) {
+ switch (eClass.getClassifierID()) {
+ case SimplemergePackage.SCOMPARISON:
+ return createSComparison();
+ case SimplemergePackage.SMATCH:
+ return createSMatch();
+ default:
+ throw new IllegalArgumentException("The class '"
+ + eClass.getName() + "' is not a valid classifier");
+ }
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public Object createFromString(EDataType eDataType, String initialValue) {
+ switch (eDataType.getClassifierID()) {
+ case SimplemergePackage.RESOLUTION:
+ return createResolutionFromString(eDataType, initialValue);
+ default:
+ throw new IllegalArgumentException("The datatype '"
+ + eDataType.getName() + "' is not a valid classifier");
+ }
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public String convertToString(EDataType eDataType, Object instanceValue) {
+ switch (eDataType.getClassifierID()) {
+ case SimplemergePackage.RESOLUTION:
+ return convertResolutionToString(eDataType, instanceValue);
+ default:
+ throw new IllegalArgumentException("The datatype '"
+ + eDataType.getName() + "' is not a valid classifier");
+ }
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public SComparison createSComparison() {
+ SComparisonImpl sComparison = new SComparisonImpl();
+ return sComparison;
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public SMatch createSMatch() {
+ SMatchImpl sMatch = new SMatchImpl();
+ return sMatch;
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ public Resolution createResolutionFromString(EDataType eDataType,
+ String initialValue) {
+ Resolution result = Resolution.get(initialValue);
+ if (result == null)
+ throw new IllegalArgumentException("The value '" + initialValue
+ + "' is not a valid enumerator of '" + eDataType.getName()
+ + "'");
+ return result;
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ public String convertResolutionToString(EDataType eDataType,
+ Object instanceValue) {
+ return instanceValue == null ? null : instanceValue.toString();
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public SimplemergePackage getSimplemergePackage() {
+ return (SimplemergePackage) getEPackage();
+ }
+
+ /**
+ *
+ *
+ * @deprecated
+ * @generated
+ */
+ @Deprecated
+ public static SimplemergePackage getPackage() {
+ return SimplemergePackage.eINSTANCE;
+ }
+
+} // SimplemergeFactoryImpl
diff --git a/java/bundles/org.eclipse.set.model.simplemerge/src/org/eclipse/set/model/simplemerge/impl/SimplemergePackageImpl.java b/java/bundles/org.eclipse.set.model.simplemerge/src/org/eclipse/set/model/simplemerge/impl/SimplemergePackageImpl.java
new file mode 100644
index 0000000000..12760e2603
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.simplemerge/src/org/eclipse/set/model/simplemerge/impl/SimplemergePackageImpl.java
@@ -0,0 +1,330 @@
+/**
+ * Copyright (c) 2018 DB Netz AG and others.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v2.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v20.html
+ */
+package org.eclipse.set.model.simplemerge.impl;
+
+import org.eclipse.emf.ecore.EAttribute;
+import org.eclipse.emf.ecore.EClass;
+import org.eclipse.emf.ecore.EEnum;
+import org.eclipse.emf.ecore.EPackage;
+import org.eclipse.emf.ecore.EReference;
+
+import org.eclipse.emf.ecore.impl.EPackageImpl;
+
+import org.eclipse.set.model.simplemerge.Resolution;
+import org.eclipse.set.model.simplemerge.SComparison;
+import org.eclipse.set.model.simplemerge.SMatch;
+import org.eclipse.set.model.simplemerge.SimplemergeFactory;
+import org.eclipse.set.model.simplemerge.SimplemergePackage;
+
+/**
+ * An implementation of the model Package.
+ *
+ * @generated
+ */
+public class SimplemergePackageImpl extends EPackageImpl
+ implements SimplemergePackage {
+ /**
+ *
+ *
+ * @generated
+ */
+ private EClass sComparisonEClass = null;
+
+ /**
+ *
+ *
+ * @generated
+ */
+ private EClass sMatchEClass = null;
+
+ /**
+ *
+ *
+ * @generated
+ */
+ private EEnum resolutionEEnum = null;
+
+ /**
+ * Creates an instance of the model Package, registered with
+ * {@link org.eclipse.emf.ecore.EPackage.Registry EPackage.Registry} by the
+ * package package URI value.
+ *
+ * Note: the correct way to create the package is via the static factory
+ * method {@link #init init()}, which also performs initialization of the
+ * package, or returns the registered package, if one already exists.
+ *
+ * @see org.eclipse.emf.ecore.EPackage.Registry
+ * @see org.eclipse.set.model.simplemerge.SimplemergePackage#eNS_URI
+ * @see #init()
+ * @generated
+ */
+ private SimplemergePackageImpl() {
+ super(eNS_URI, SimplemergeFactory.eINSTANCE);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ private static boolean isInited = false;
+
+ /**
+ * Creates, registers, and initializes the Package for this model,
+ * and for any others upon which it depends.
+ *
+ *
+ * This method is used to initialize {@link SimplemergePackage#eINSTANCE}
+ * when that field is accessed. Clients should not invoke it directly.
+ * Instead, they should simply access that field to obtain the package.
+ *
+ * @see #eNS_URI
+ * @see #createPackageContents()
+ * @see #initializePackageContents()
+ * @generated
+ */
+ public static SimplemergePackage init() {
+ if (isInited)
+ return (SimplemergePackage) EPackage.Registry.INSTANCE
+ .getEPackage(SimplemergePackage.eNS_URI);
+
+ // Obtain or create and register package
+ Object registeredSimplemergePackage = EPackage.Registry.INSTANCE
+ .get(eNS_URI);
+ SimplemergePackageImpl theSimplemergePackage = registeredSimplemergePackage instanceof SimplemergePackageImpl
+ ? (SimplemergePackageImpl) registeredSimplemergePackage
+ : new SimplemergePackageImpl();
+
+ isInited = true;
+
+ // Create package meta-data objects
+ theSimplemergePackage.createPackageContents();
+
+ // Initialize created meta-data
+ theSimplemergePackage.initializePackageContents();
+
+ // Mark meta-data to indicate it can't be changed
+ theSimplemergePackage.freeze();
+
+ // Update the registry and return the package
+ EPackage.Registry.INSTANCE.put(SimplemergePackage.eNS_URI,
+ theSimplemergePackage);
+ return theSimplemergePackage;
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public EClass getSComparison() {
+ return sComparisonEClass;
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public EReference getSComparison_Matches() {
+ return (EReference) sComparisonEClass.getEStructuralFeatures().get(0);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public EClass getSMatch() {
+ return sMatchEClass;
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public EAttribute getSMatch_Id() {
+ return (EAttribute) sMatchEClass.getEStructuralFeatures().get(0);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public EAttribute getSMatch_GuidPrimary() {
+ return (EAttribute) sMatchEClass.getEStructuralFeatures().get(1);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public EAttribute getSMatch_GuidSecondary() {
+ return (EAttribute) sMatchEClass.getEStructuralFeatures().get(2);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public EAttribute getSMatch_Resolution() {
+ return (EAttribute) sMatchEClass.getEStructuralFeatures().get(3);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public EAttribute getSMatch_ElementType() {
+ return (EAttribute) sMatchEClass.getEStructuralFeatures().get(4);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public EEnum getResolution() {
+ return resolutionEEnum;
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ public SimplemergeFactory getSimplemergeFactory() {
+ return (SimplemergeFactory) getEFactoryInstance();
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ private boolean isCreated = false;
+
+ /**
+ * Creates the meta-model objects for the package. This method is guarded to
+ * have no affect on any invocation but its first.
+ *
+ *
+ * @generated
+ */
+ public void createPackageContents() {
+ if (isCreated)
+ return;
+ isCreated = true;
+
+ // Create classes and their features
+ sComparisonEClass = createEClass(SCOMPARISON);
+ createEReference(sComparisonEClass, SCOMPARISON__MATCHES);
+
+ sMatchEClass = createEClass(SMATCH);
+ createEAttribute(sMatchEClass, SMATCH__ID);
+ createEAttribute(sMatchEClass, SMATCH__GUID_PRIMARY);
+ createEAttribute(sMatchEClass, SMATCH__GUID_SECONDARY);
+ createEAttribute(sMatchEClass, SMATCH__RESOLUTION);
+ createEAttribute(sMatchEClass, SMATCH__ELEMENT_TYPE);
+
+ // Create enums
+ resolutionEEnum = createEEnum(RESOLUTION);
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ private boolean isInitialized = false;
+
+ /**
+ * Complete the initialization of the package and its meta-model. This
+ * method is guarded to have no affect on any invocation but its first.
+ *
+ * @generated
+ */
+ public void initializePackageContents() {
+ if (isInitialized)
+ return;
+ isInitialized = true;
+
+ // Initialize package
+ setName(eNAME);
+ setNsPrefix(eNS_PREFIX);
+ setNsURI(eNS_URI);
+
+ // Create type parameters
+
+ // Set bounds for type parameters
+
+ // Add supertypes to classes
+
+ // Initialize classes, features, and operations; add parameters
+ initEClass(sComparisonEClass, SComparison.class, "SComparison",
+ !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS);
+ initEReference(getSComparison_Matches(), this.getSMatch(), null,
+ "matches", null, 0, -1, SComparison.class, !IS_TRANSIENT,
+ !IS_VOLATILE, IS_CHANGEABLE, IS_COMPOSITE, !IS_RESOLVE_PROXIES,
+ !IS_UNSETTABLE, IS_UNIQUE, !IS_DERIVED, IS_ORDERED);
+
+ initEClass(sMatchEClass, SMatch.class, "SMatch", !IS_ABSTRACT,
+ !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS);
+ initEAttribute(getSMatch_Id(), ecorePackage.getEInt(), "id", null, 1, 1,
+ SMatch.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE,
+ !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED);
+ initEAttribute(getSMatch_GuidPrimary(), ecorePackage.getEString(),
+ "guidPrimary", null, 0, 1, SMatch.class, !IS_TRANSIENT,
+ !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE,
+ !IS_DERIVED, IS_ORDERED);
+ initEAttribute(getSMatch_GuidSecondary(), ecorePackage.getEString(),
+ "guidSecondary", null, 0, 1, SMatch.class, !IS_TRANSIENT,
+ !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE,
+ !IS_DERIVED, IS_ORDERED);
+ initEAttribute(getSMatch_Resolution(), this.getResolution(),
+ "resolution", null, 0, 1, SMatch.class, !IS_TRANSIENT,
+ !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE,
+ !IS_DERIVED, IS_ORDERED);
+ initEAttribute(getSMatch_ElementType(), ecorePackage.getEString(),
+ "elementType", null, 0, 1, SMatch.class, !IS_TRANSIENT,
+ !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE,
+ !IS_DERIVED, IS_ORDERED);
+
+ // Initialize enums and add enum literals
+ initEEnum(resolutionEEnum, Resolution.class, "Resolution");
+ addEEnumLiteral(resolutionEEnum, Resolution.PRIMARY_UNRESOLVED);
+ addEEnumLiteral(resolutionEEnum, Resolution.PRIMARY_AUTO);
+ addEEnumLiteral(resolutionEEnum, Resolution.PRIMARY_MANUAL);
+ addEEnumLiteral(resolutionEEnum, Resolution.SECONDARY_AUTO);
+ addEEnumLiteral(resolutionEEnum, Resolution.SECONDARY_MANUAL);
+
+ // Create resource
+ createResource(eNS_URI);
+ }
+
+} // SimplemergePackageImpl
diff --git a/java/bundles/org.eclipse.set.model.simplemerge/src/org/eclipse/set/model/simplemerge/util/SimplemergeAdapterFactory.java b/java/bundles/org.eclipse.set.model.simplemerge/src/org/eclipse/set/model/simplemerge/util/SimplemergeAdapterFactory.java
new file mode 100644
index 0000000000..cfed9e8083
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.simplemerge/src/org/eclipse/set/model/simplemerge/util/SimplemergeAdapterFactory.java
@@ -0,0 +1,147 @@
+/**
+ * Copyright (c) 2018 DB Netz AG and others.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v2.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v20.html
+ */
+package org.eclipse.set.model.simplemerge.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.set.model.simplemerge.*;
+
+/**
+ * The Adapter Factory for the model. It provides
+ * an adapter createXXX method for each class of the model.
+ *
+ * @see org.eclipse.set.model.simplemerge.SimplemergePackage
+ * @generated
+ */
+public class SimplemergeAdapterFactory extends AdapterFactoryImpl {
+ /**
+ * The cached model package.
+ *
+ * @generated
+ */
+ protected static SimplemergePackage modelPackage;
+
+ /**
+ * Creates an instance of the adapter factory.
+ *
+ * @generated
+ */
+ public SimplemergeAdapterFactory() {
+ if (modelPackage == null) {
+ modelPackage = SimplemergePackage.eINSTANCE;
+ }
+ }
+
+ /**
+ * Returns whether this factory is applicable for the type of the object.
+ * This implementation returns true if
+ * the object is either the model's package or is an instance object of the
+ * model.
+ *
+ * @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 createXXX methods.
+ *
+ * @generated
+ */
+ protected SimplemergeSwitch modelSwitch = new SimplemergeSwitch() {
+ @Override
+ public Adapter caseSComparison(SComparison object) {
+ return createSComparisonAdapter();
+ }
+
+ @Override
+ public Adapter caseSMatch(SMatch object) {
+ return createSMatchAdapter();
+ }
+
+ @Override
+ public Adapter defaultCase(EObject object) {
+ return createEObjectAdapter();
+ }
+ };
+
+ /**
+ * Creates an adapter for the target.
+ *
+ *
+ * @param target
+ * the object to adapt.
+ * @return the adapter for the target.
+ * @generated
+ */
+ @Override
+ public Adapter createAdapter(Notifier target) {
+ return modelSwitch.doSwitch((EObject) target);
+ }
+
+ /**
+ * Creates a new adapter for an object of class
+ * '{@link org.eclipse.set.model.simplemerge.SComparison
+ * SComparison}'. 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.
+ *
+ *
+ * @return the new adapter.
+ * @see org.eclipse.set.model.simplemerge.SComparison
+ * @generated
+ */
+ public Adapter createSComparisonAdapter() {
+ return null;
+ }
+
+ /**
+ * Creates a new adapter for an object of class
+ * '{@link org.eclipse.set.model.simplemerge.SMatch SMatch}'. 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.
+ *
+ * @return the new adapter.
+ * @see org.eclipse.set.model.simplemerge.SMatch
+ * @generated
+ */
+ public Adapter createSMatchAdapter() {
+ return null;
+ }
+
+ /**
+ * Creates a new adapter for the default case. This
+ * default implementation returns null.
+ *
+ * @return the new adapter.
+ * @generated
+ */
+ public Adapter createEObjectAdapter() {
+ return null;
+ }
+
+} // SimplemergeAdapterFactory
diff --git a/java/bundles/org.eclipse.set.model.simplemerge/src/org/eclipse/set/model/simplemerge/util/SimplemergeSwitch.java b/java/bundles/org.eclipse.set.model.simplemerge/src/org/eclipse/set/model/simplemerge/util/SimplemergeSwitch.java
new file mode 100644
index 0000000000..cabfc5d8fd
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.simplemerge/src/org/eclipse/set/model/simplemerge/util/SimplemergeSwitch.java
@@ -0,0 +1,146 @@
+/**
+ * Copyright (c) 2018 DB Netz AG and others.
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v2.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v20.html
+ */
+package org.eclipse.set.model.simplemerge.util;
+
+import org.eclipse.emf.ecore.EObject;
+import org.eclipse.emf.ecore.EPackage;
+
+import org.eclipse.emf.ecore.util.Switch;
+
+import org.eclipse.set.model.simplemerge.*;
+
+/**
+ * The Switch for the model's inheritance
+ * hierarchy. It supports the call {@link #doSwitch(EObject) doSwitch(object)}
+ * to invoke the caseXXX method for each class of the model,
+ * starting with the actual class of the object and proceeding up the
+ * inheritance hierarchy until a non-null result is returned, which is the
+ * result of the switch.
+ *
+ * @see org.eclipse.set.model.simplemerge.SimplemergePackage
+ * @generated
+ */
+public class SimplemergeSwitch extends Switch {
+ /**
+ * The cached model package
+ *
+ * @generated
+ */
+ protected static SimplemergePackage modelPackage;
+
+ /**
+ * Creates an instance of the switch.
+ *
+ * @generated
+ */
+ public SimplemergeSwitch() {
+ if (modelPackage == null) {
+ modelPackage = SimplemergePackage.eINSTANCE;
+ }
+ }
+
+ /**
+ * Checks whether this is a switch for the given package.
+ *
+ * @param ePackage
+ * the package in question.
+ * @return whether this is a switch for the given package.
+ * @generated
+ */
+ @Override
+ protected boolean isSwitchFor(EPackage ePackage) {
+ return ePackage == modelPackage;
+ }
+
+ /**
+ * Calls caseXXX for each class of the model until one returns
+ * a non null result; it yields that result.
+ *
+ * @return the first non-null result returned by a caseXXX
+ * call.
+ * @generated
+ */
+ @Override
+ protected T doSwitch(int classifierID, EObject theEObject) {
+ switch (classifierID) {
+ case SimplemergePackage.SCOMPARISON: {
+ SComparison sComparison = (SComparison) theEObject;
+ T result = caseSComparison(sComparison);
+ if (result == null)
+ result = defaultCase(theEObject);
+ return result;
+ }
+ case SimplemergePackage.SMATCH: {
+ SMatch sMatch = (SMatch) theEObject;
+ T result = caseSMatch(sMatch);
+ if (result == null)
+ result = defaultCase(theEObject);
+ return result;
+ }
+ default:
+ return defaultCase(theEObject);
+ }
+ }
+
+ /**
+ * Returns the result of interpreting the object as an instance of
+ * 'SComparison'. This implementation
+ * returns null; returning a non-null result will terminate the switch.
+ *
+ * @param object
+ * the target of the switch.
+ * @return the result of interpreting the object as an instance of
+ * 'SComparison'.
+ * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
+ * @generated
+ */
+ public T caseSComparison(SComparison object) {
+ return null;
+ }
+
+ /**
+ * Returns the result of interpreting the object as an instance of
+ * 'SMatch'. This implementation returns
+ * null; returning a non-null result will terminate the switch.
+ *
+ * @param object
+ * the target of the switch.
+ * @return the result of interpreting the object as an instance of
+ * 'SMatch'.
+ * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
+ * @generated
+ */
+ public T caseSMatch(SMatch object) {
+ return null;
+ }
+
+ /**
+ * Returns the result of interpreting the object as an instance of
+ * 'EObject'. This implementation returns
+ * null; returning a non-null result will terminate the switch, but this is
+ * the last case anyway.
+ *
+ * @param object
+ * the target of the switch.
+ * @return the result of interpreting the object as an instance of
+ * 'EObject'.
+ * @see #doSwitch(org.eclipse.emf.ecore.EObject)
+ * @generated
+ */
+ @Override
+ public T defaultCase(EObject object) {
+ return null;
+ }
+
+} // SimplemergeSwitch
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/.classpath b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/.classpath
new file mode 100644
index 0000000000..97bf0dc637
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/.classpath
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/.project b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/.project
new file mode 100644
index 0000000000..8c88370424
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/.project
@@ -0,0 +1,34 @@
+
+
+ org.eclipse.set.model.temporaryintegration.edit
+
+
+
+
+
+ org.eclipse.jdt.core.javabuilder
+
+
+
+
+ org.eclipse.pde.ManifestBuilder
+
+
+
+
+ org.eclipse.pde.SchemaBuilder
+
+
+
+
+ net.sf.eclipsecs.core.CheckstyleBuilder
+
+
+
+
+
+ org.eclipse.jdt.core.javanature
+ org.eclipse.pde.PluginNature
+ net.sf.eclipsecs.core.CheckstyleNature
+
+
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/.settings/org.eclipse.core.resources.prefs b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/.settings/org.eclipse.core.resources.prefs
new file mode 100644
index 0000000000..99f26c0203
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/.settings/org.eclipse.core.resources.prefs
@@ -0,0 +1,2 @@
+eclipse.preferences.version=1
+encoding/=UTF-8
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/.settings/org.eclipse.jdt.core.prefs b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/.settings/org.eclipse.jdt.core.prefs
new file mode 100644
index 0000000000..37b5965b6c
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/.settings/org.eclipse.jdt.core.prefs
@@ -0,0 +1,118 @@
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.annotation.inheritNullAnnotations=disabled
+org.eclipse.jdt.core.compiler.annotation.missingNonNullByDefaultAnnotation=ignore
+org.eclipse.jdt.core.compiler.annotation.nonnull=org.eclipse.jdt.annotation.NonNull
+org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annotation.NonNullByDefault
+org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
+org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=21
+org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
+org.eclipse.jdt.core.compiler.compliance=21
+org.eclipse.jdt.core.compiler.debug.lineNumber=generate
+org.eclipse.jdt.core.compiler.debug.localVariable=generate
+org.eclipse.jdt.core.compiler.debug.sourceFile=generate
+org.eclipse.jdt.core.compiler.doc.comment.support=disabled
+org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.autoboxing=warning
+org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
+org.eclipse.jdt.core.compiler.problem.deadCode=warning
+org.eclipse.jdt.core.compiler.problem.deprecation=warning
+org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
+org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
+org.eclipse.jdt.core.compiler.problem.discouragedReference=ignore
+org.eclipse.jdt.core.compiler.problem.emptyStatement=warning
+org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=ignore
+org.eclipse.jdt.core.compiler.problem.fallthroughCase=warning
+org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
+org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore
+org.eclipse.jdt.core.compiler.problem.finalParameterBound=warning
+org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning
+org.eclipse.jdt.core.compiler.problem.forbiddenReference=ignore
+org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
+org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled
+org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning
+org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=warning
+org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=ignore
+org.eclipse.jdt.core.compiler.problem.invalidJavadoc=warning
+org.eclipse.jdt.core.compiler.problem.invalidJavadocTags=enabled
+org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsDeprecatedRef=disabled
+org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsNotVisibleRef=disabled
+org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility=public
+org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore
+org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning
+org.eclipse.jdt.core.compiler.problem.missingDefaultCase=ignore
+org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=warning
+org.eclipse.jdt.core.compiler.problem.missingEnumCaseDespiteDefault=disabled
+org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=warning
+org.eclipse.jdt.core.compiler.problem.missingJavadocComments=warning
+org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsOverriding=disabled
+org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsVisibility=public
+org.eclipse.jdt.core.compiler.problem.missingJavadocTagDescription=all_standard_tags
+org.eclipse.jdt.core.compiler.problem.missingJavadocTags=warning
+org.eclipse.jdt.core.compiler.problem.missingJavadocTagsMethodTypeParameters=disabled
+org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding=disabled
+org.eclipse.jdt.core.compiler.problem.missingJavadocTagsVisibility=public
+org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=ignore
+org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotationForInterfaceMethodImplementation=enabled
+org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning
+org.eclipse.jdt.core.compiler.problem.missingSynchronizedOnInheritedMethod=warning
+org.eclipse.jdt.core.compiler.problem.noEffectAssignment=warning
+org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning
+org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=ignore
+org.eclipse.jdt.core.compiler.problem.nonnullParameterAnnotationDropped=warning
+org.eclipse.jdt.core.compiler.problem.nullAnnotationInferenceConflict=error
+org.eclipse.jdt.core.compiler.problem.nullReference=warning
+org.eclipse.jdt.core.compiler.problem.nullSpecViolation=error
+org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=warning
+org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
+org.eclipse.jdt.core.compiler.problem.parameterAssignment=warning
+org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=warning
+org.eclipse.jdt.core.compiler.problem.potentialNullReference=warning
+org.eclipse.jdt.core.compiler.problem.potentiallyUnclosedCloseable=warning
+org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
+org.eclipse.jdt.core.compiler.problem.redundantNullAnnotation=warning
+org.eclipse.jdt.core.compiler.problem.redundantNullCheck=warning
+org.eclipse.jdt.core.compiler.problem.redundantSpecificationOfTypeArguments=ignore
+org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
+org.eclipse.jdt.core.compiler.problem.reportMethodCanBePotentiallyStatic=ignore
+org.eclipse.jdt.core.compiler.problem.reportMethodCanBeStatic=ignore
+org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
+org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
+org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning
+org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
+org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
+org.eclipse.jdt.core.compiler.problem.syntacticNullAnalysisForFields=disabled
+org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
+org.eclipse.jdt.core.compiler.problem.typeParameterHiding=ignore
+org.eclipse.jdt.core.compiler.problem.unavoidableGenericTypeProblems=enabled
+org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
+org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
+org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
+org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
+org.eclipse.jdt.core.compiler.problem.unnecessaryElse=warning
+org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=warning
+org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
+org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning
+org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
+org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
+org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
+org.eclipse.jdt.core.compiler.problem.unusedExceptionParameter=ignore
+org.eclipse.jdt.core.compiler.problem.unusedImport=warning
+org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
+org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
+org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=warning
+org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore
+org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled
+org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled
+org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
+org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
+org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=warning
+org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
+org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
+org.eclipse.jdt.core.compiler.release=enabled
+org.eclipse.jdt.core.compiler.source=21
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/.settings/org.eclipse.pde.prefs b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/.settings/org.eclipse.pde.prefs
new file mode 100644
index 0000000000..40b81612af
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/.settings/org.eclipse.pde.prefs
@@ -0,0 +1,34 @@
+compilers.f.unresolved-features=1
+compilers.f.unresolved-plugins=1
+compilers.incompatible-environment=1
+compilers.p.build=1
+compilers.p.build.bin.includes=1
+compilers.p.build.encodings=2
+compilers.p.build.java.compiler=2
+compilers.p.build.java.compliance=1
+compilers.p.build.missing.output=2
+compilers.p.build.output.library=1
+compilers.p.build.source.library=1
+compilers.p.build.src.includes=1
+compilers.p.deprecated=1
+compilers.p.discouraged-class=1
+compilers.p.internal=1
+compilers.p.missing-packages=2
+compilers.p.missing-version-export-package=2
+compilers.p.missing-version-import-package=2
+compilers.p.missing-version-require-bundle=2
+compilers.p.no-required-att=0
+compilers.p.no.automatic.module=2
+compilers.p.not-externalized-att=2
+compilers.p.service.component.without.lazyactivation=1
+compilers.p.unknown-attribute=1
+compilers.p.unknown-class=1
+compilers.p.unknown-element=1
+compilers.p.unknown-identifier=1
+compilers.p.unknown-resource=1
+compilers.p.unresolved-ex-points=0
+compilers.p.unresolved-import=0
+compilers.s.create-docs=false
+compilers.s.doc-folder=doc
+compilers.s.open-tags=1
+eclipse.preferences.version=1
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/META-INF/MANIFEST.MF b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/META-INF/MANIFEST.MF
new file mode 100644
index 0000000000..1615ec32ca
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/META-INF/MANIFEST.MF
@@ -0,0 +1,20 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %pluginName
+Bundle-SymbolicName: org.eclipse.set.model.temporaryintegration.edit;singleton:=true
+Automatic-Module-Name: org.eclipse.set.model.temporaryintegration.edit
+Bundle-Version: 2.6.0.qualifier
+Bundle-ClassPath: .
+Bundle-Activator: org.eclipse.set.model.temporaryintegration.provider.TemporaryIntegrationEditPlugin$Implementation
+Bundle-Vendor: %providerName
+Bundle-Localization: plugin
+Bundle-RequiredExecutionEnvironment: JavaSE-21
+Export-Package: org.eclipse.set.model.temporaryintegration.provider
+Require-Bundle: org.eclipse.core.runtime,
+ org.eclipse.set.model.temporaryintegration;visibility:=reexport,
+ org.eclipse.emf.edit;visibility:=reexport,
+ org.eclipse.set.model.simplemerge;visibility:=reexport,
+ org.eclipse.set.model.simplemerge.edit;visibility:=reexport,
+ org.eclipse.set.model.planpro;visibility:=reexport,
+ org.eclipse.set.model.planpro.edit;visibility:=reexport
+Bundle-ActivationPolicy: lazy
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/build.properties b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/build.properties
new file mode 100644
index 0000000000..aa060dce6f
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/build.properties
@@ -0,0 +1,9 @@
+#
+
+bin.includes = .,\
+ META-INF/,\
+ plugin.xml,\
+ plugin.properties
+jars.compile.order = .
+source.. = src/
+output.. = bin/
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Allg_AttributeGroup_aussenelementansteuerungArt_Aussenelementansteuerung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Allg_AttributeGroup_aussenelementansteuerungArt_Aussenelementansteuerung_Art_TypeClass.gif
new file mode 100644
index 0000000000..73b08f706e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Allg_AttributeGroup_aussenelementansteuerungArt_Aussenelementansteuerung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Allg_AttributeGroup_bauart_Bauart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Allg_AttributeGroup_bauart_Bauart_TypeClass.gif
new file mode 100644
index 0000000000..8eb45613da
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Allg_AttributeGroup_bauart_Bauart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Energieversorgung_AttributeGroup_energieversorgungArtErsatz_Energieversorgung_Art_Ersatz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Energieversorgung_AttributeGroup_energieversorgungArtErsatz_Energieversorgung_Art_Ersatz_TypeClass.gif
new file mode 100644
index 0000000000..a573a9e5f2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Energieversorgung_AttributeGroup_energieversorgungArtErsatz_Energieversorgung_Art_Ersatz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Energieversorgung_AttributeGroup_energieversorgungArt_Energieversorgung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Energieversorgung_AttributeGroup_energieversorgungArt_Energieversorgung_Art_TypeClass.gif
new file mode 100644
index 0000000000..e06d6105a5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Energieversorgung_AttributeGroup_energieversorgungArt_Energieversorgung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Energieversorgung_AttributeGroup_iDEnergiePrimaer_ID_Energie_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Energieversorgung_AttributeGroup_iDEnergiePrimaer_ID_Energie_TypeClass.gif
new file mode 100644
index 0000000000..dab1fbcac7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Energieversorgung_AttributeGroup_iDEnergiePrimaer_ID_Energie_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Energieversorgung_AttributeGroup_iDEnergieSekundaer_ID_Energie_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Energieversorgung_AttributeGroup_iDEnergieSekundaer_ID_Energie_TypeClass.gif
new file mode 100644
index 0000000000..dab1fbcac7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_Energieversorgung_AttributeGroup_iDEnergieSekundaer_ID_Energie_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_gFKKategorie_GFK_Kategorie_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_gFKKategorie_GFK_Kategorie_TypeClass.gif
new file mode 100644
index 0000000000..52da918726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_gFKKategorie_GFK_Kategorie_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockBlauV4_IP_Adressblock_Blau_V4_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockBlauV4_IP_Adressblock_Blau_V4_TypeClass.gif
new file mode 100644
index 0000000000..7cdaee671e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockBlauV4_IP_Adressblock_Blau_V4_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockBlauV6_IP_Adressblock_Blau_V6_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockBlauV6_IP_Adressblock_Blau_V6_TypeClass.gif
new file mode 100644
index 0000000000..20e5447502
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockBlauV6_IP_Adressblock_Blau_V6_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockGrauV4_IP_Adressblock_Grau_V4_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockGrauV4_IP_Adressblock_Grau_V4_TypeClass.gif
new file mode 100644
index 0000000000..758dafb7cd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockGrauV4_IP_Adressblock_Grau_V4_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockGrauV6_IP_Adressblock_Grau_V6_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockGrauV6_IP_Adressblock_Grau_V6_TypeClass.gif
new file mode 100644
index 0000000000..6a3b9031ec
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockGrauV6_IP_Adressblock_Grau_V6_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_regionalbereich_Regionalbereich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_regionalbereich_Regionalbereich_TypeClass.gif
new file mode 100644
index 0000000000..8ab34c64a3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAEA_GFK_IP_Adressblock_AttributeGroup_regionalbereich_Regionalbereich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_Bezeichnung_AttributeGroup_nIDSP_NID_SP_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_Bezeichnung_AttributeGroup_nIDSP_NID_SP_TypeClass.gif
new file mode 100644
index 0000000000..86d00fa0c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_Bezeichnung_AttributeGroup_nIDSP_NID_SP_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_abstandATOHaltVorEoA_Abstand_ATO_Halt_Vor_EoA_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_abstandATOHaltVorEoA_Abstand_ATO_Halt_Vor_EoA_TypeClass.gif
new file mode 100644
index 0000000000..0dccd278a6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_abstandATOHaltVorEoA_Abstand_ATO_Halt_Vor_EoA_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_bezeichnung_ATO_Segment_Profile_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_bezeichnung_ATO_Segment_Profile_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..803d12d6f3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_bezeichnung_ATO_Segment_Profile_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_iDATOTSInstanzNachbar_ID_ATO_TS_Instanz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_iDATOTSInstanzNachbar_ID_ATO_TS_Instanz_TypeClass.gif
new file mode 100644
index 0000000000..4f6577726e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_iDATOTSInstanzNachbar_ID_ATO_TS_Instanz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_iDATOTSInstanz_ID_ATO_TS_Instanz_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_iDATOTSInstanz_ID_ATO_TS_Instanz_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..48f1260612
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_iDATOTSInstanz_ID_ATO_TS_Instanz_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_iDETCSKante_ID_ETCS_Kante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_iDETCSKante_ID_ETCS_Kante_TypeClass.gif
new file mode 100644
index 0000000000..fbd2adb6d2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_iDETCSKante_ID_ETCS_Kante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..03366e35d0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Segment_Profile_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_TS_Instanz_Adresse_AttributeGroup_nIDATOTS_NID_ATOTS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_TS_Instanz_Adresse_AttributeGroup_nIDATOTS_NID_ATOTS_TypeClass.gif
new file mode 100644
index 0000000000..63e7a6f58b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_TS_Instanz_Adresse_AttributeGroup_nIDATOTS_NID_ATOTS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_TS_Instanz_Adresse_AttributeGroup_nIDCATOTS_NID_C_ATOTS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_TS_Instanz_Adresse_AttributeGroup_nIDCATOTS_NID_C_ATOTS_TypeClass.gif
new file mode 100644
index 0000000000..ad8a4e4ee0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_TS_Instanz_Adresse_AttributeGroup_nIDCATOTS_NID_C_ATOTS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_TS_Instanz_aTOTSInstanzAdresse_ATO_TS_Instanz_Adresse_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_TS_Instanz_aTOTSInstanzAdresse_ATO_TS_Instanz_Adresse_AttributeGroup.gif
new file mode 100644
index 0000000000..5236dceda7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_TS_Instanz_aTOTSInstanzAdresse_ATO_TS_Instanz_Adresse_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_TS_Instanz_iDUnterbringung_ID_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_TS_Instanz_iDUnterbringung_ID_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..7732968311
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_TS_Instanz_iDUnterbringung_ID_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_Allg_AttributeGroup_erreichungstoleranz_Erreichungstoleranz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_Allg_AttributeGroup_erreichungstoleranz_Erreichungstoleranz_TypeClass.gif
new file mode 100644
index 0000000000..10c4e2ea02
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_Allg_AttributeGroup_erreichungstoleranz_Erreichungstoleranz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_Allg_AttributeGroup_haltetoleranz_Haltetoleranz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_Allg_AttributeGroup_haltetoleranz_Haltetoleranz_TypeClass.gif
new file mode 100644
index 0000000000..9414605a12
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_Allg_AttributeGroup_haltetoleranz_Haltetoleranz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_Allg_AttributeGroup_nIDTP_NID_TP_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_Allg_AttributeGroup_nIDTP_NID_TP_TypeClass.gif
new file mode 100644
index 0000000000..9414605a12
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_Allg_AttributeGroup_nIDTP_NID_TP_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_Bezeichnung_AttributeGroup_bezeichnungATOTP_Bezeichnung_ATO_TP_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_Bezeichnung_AttributeGroup_bezeichnungATOTP_Bezeichnung_ATO_TP_TypeClass.gif
new file mode 100644
index 0000000000..bcd32f703d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_Bezeichnung_AttributeGroup_bezeichnungATOTP_Bezeichnung_ATO_TP_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_aTOTimingPointAllg_ATO_Timing_Point_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_aTOTimingPointAllg_ATO_Timing_Point_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..2371ef2aa0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_aTOTimingPointAllg_ATO_Timing_Point_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_bezeichnung_ATO_Timing_Point_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_bezeichnung_ATO_Timing_Point_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..2339bb9ac6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_bezeichnung_ATO_Timing_Point_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_iDSignal_ID_Signal_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_iDSignal_ID_Signal_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..1f06e1f1aa
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateATO_Timing_Point_iDSignal_ID_Signal_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Allg_AttributeGroup_nameAkteur10_Name_Akteur_10_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Allg_AttributeGroup_nameAkteur10_Name_Akteur_10_TypeClass.gif
new file mode 100644
index 0000000000..e30b4015d6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Allg_AttributeGroup_nameAkteur10_Name_Akteur_10_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Allg_AttributeGroup_nameAkteur5_Name_Akteur_5_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Allg_AttributeGroup_nameAkteur5_Name_Akteur_5_TypeClass.gif
new file mode 100644
index 0000000000..f2eedabaf1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Allg_AttributeGroup_nameAkteur5_Name_Akteur_5_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Allg_AttributeGroup_nameAkteur_Name_Akteur_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Allg_AttributeGroup_nameAkteur_Name_Akteur_TypeClass.gif
new file mode 100644
index 0000000000..f0b400c3f0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Allg_AttributeGroup_nameAkteur_Name_Akteur_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Zuordnung_anhangDokumentation_Anhang.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Zuordnung_anhangDokumentation_Anhang.gif
new file mode 100644
index 0000000000..b03123db08
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Zuordnung_anhangDokumentation_Anhang.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Zuordnung_datum_Datum_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Zuordnung_datum_Datum_TypeClass.gif
new file mode 100644
index 0000000000..99e6aae4cd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Zuordnung_datum_Datum_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Zuordnung_handelnder_Akteur.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Zuordnung_handelnder_Akteur.gif
new file mode 100644
index 0000000000..e9245bcdf6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Zuordnung_handelnder_Akteur.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Zuordnung_identRolle_Ident_Rolle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Zuordnung_identRolle_Ident_Rolle_TypeClass.gif
new file mode 100644
index 0000000000..505a5ef121
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_Zuordnung_identRolle_Ident_Rolle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_akteurAllg_Akteur_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_akteurAllg_Akteur_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..c85d5ad3a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_akteurAllg_Akteur_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_kontaktdaten_Organisation.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_kontaktdaten_Organisation.gif
new file mode 100644
index 0000000000..dfd6d3cfd9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAkteur_kontaktdaten_Organisation.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAnhang_Allg_AttributeGroup_anhangArt_Anhang_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAnhang_Allg_AttributeGroup_anhangArt_Anhang_Art_TypeClass.gif
new file mode 100644
index 0000000000..09b55686f5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAnhang_Allg_AttributeGroup_anhangArt_Anhang_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAnhang_Allg_AttributeGroup_dateiname_Dateiname_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAnhang_Allg_AttributeGroup_dateiname_Dateiname_TypeClass.gif
new file mode 100644
index 0000000000..b98197751d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAnhang_Allg_AttributeGroup_dateiname_Dateiname_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAnhang_Allg_AttributeGroup_dateityp_Dateityp_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAnhang_Allg_AttributeGroup_dateityp_Dateityp_TypeClass.gif
new file mode 100644
index 0000000000..be1a5503f0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAnhang_Allg_AttributeGroup_dateityp_Dateityp_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAnhang_anhangAllg_Anhang_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAnhang_anhangAllg_Anhang_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..e272d25980
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAnhang_anhangAllg_Anhang_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAusgabe_Fachdaten_lSTZustandStart_LST_Zustand.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAusgabe_Fachdaten_lSTZustandStart_LST_Zustand.gif
new file mode 100644
index 0000000000..b72dc20b46
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAusgabe_Fachdaten_lSTZustandStart_LST_Zustand.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAusgabe_Fachdaten_lSTZustandZiel_LST_Zustand.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAusgabe_Fachdaten_lSTZustandZiel_LST_Zustand.gif
new file mode 100644
index 0000000000..b72dc20b46
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAusgabe_Fachdaten_lSTZustandZiel_LST_Zustand.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAusgabe_Fachdaten_untergewerkArt_Untergewerk_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAusgabe_Fachdaten_untergewerkArt_Untergewerk_Art_TypeClass.gif
new file mode 100644
index 0000000000..205071f215
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAusgabe_Fachdaten_untergewerkArt_Untergewerk_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_Bezeichnung_AttributeGroup_bezeichnungAEA_Bezeichnung_AEA_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_Bezeichnung_AttributeGroup_bezeichnungAEA_Bezeichnung_AEA_TypeClass.gif
new file mode 100644
index 0000000000..7402e2232e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_Bezeichnung_AttributeGroup_bezeichnungAEA_Bezeichnung_AEA_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_aEAAllg_AEA_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_aEAAllg_AEA_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..975d734c8a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_aEAAllg_AEA_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_aEAEnergieversorgung_AEA_Energieversorgung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_aEAEnergieversorgung_AEA_Energieversorgung_AttributeGroup.gif
new file mode 100644
index 0000000000..388fb52f1e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_aEAEnergieversorgung_AEA_Energieversorgung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_aEAGFKIPAdressblock_AEA_GFK_IP_Adressblock_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_aEAGFKIPAdressblock_AEA_GFK_IP_Adressblock_AttributeGroup.gif
new file mode 100644
index 0000000000..1b2d814f92
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_aEAGFKIPAdressblock_AEA_GFK_IP_Adressblock_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_bezeichnung_Aussenelementansteuerung_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_bezeichnung_Aussenelementansteuerung_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..388fb52f1e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_bezeichnung_Aussenelementansteuerung_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_iDInformationPrimaer_ID_Information_Primaer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_iDInformationPrimaer_ID_Information_Primaer_TypeClass.gif
new file mode 100644
index 0000000000..e93d4eec79
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_iDInformationPrimaer_ID_Information_Primaer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_iDInformationSekundaer_ID_Aussenelementansteuerung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_iDInformationSekundaer_ID_Aussenelementansteuerung_TypeClass.gif
new file mode 100644
index 0000000000..e47a63a305
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_iDInformationSekundaer_ID_Aussenelementansteuerung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_iDOertlichkeitGesteuert_ID_Oertlichkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_iDOertlichkeitGesteuert_ID_Oertlichkeit_TypeClass.gif
new file mode 100644
index 0000000000..148227bfd0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_iDOertlichkeitGesteuert_ID_Oertlichkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_iDOertlichkeitNamensgebend_ID_Oertlichkeit_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_iDOertlichkeitNamensgebend_ID_Oertlichkeit_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..834778fb99
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_iDOertlichkeitNamensgebend_ID_Oertlichkeit_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_iDUnterbringung_ID_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_iDUnterbringung_ID_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..59763f447c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateAussenelementansteuerung_iDUnterbringung_ID_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_AB_Teilsystem_AttributeGroup_bSOTeilsystemArt_BSO_Teilsystem_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_AB_Teilsystem_AttributeGroup_bSOTeilsystemArt_BSO_Teilsystem_Art_TypeClass.gif
new file mode 100644
index 0000000000..ed66130ca3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_AB_Teilsystem_AttributeGroup_bSOTeilsystemArt_BSO_Teilsystem_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockBlau_IP_Adressblock_Blau_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockBlau_IP_Adressblock_Blau_TypeClass.gif
new file mode 100644
index 0000000000..95d9b6809c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockBlau_IP_Adressblock_Blau_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockGrau_IP_Adressblock_Grau_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockGrau_IP_Adressblock_Grau_TypeClass.gif
new file mode 100644
index 0000000000..9a2800ce35
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockGrau_IP_Adressblock_Grau_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_bSOIPABTeilsystem_BSO_IP_AB_Teilsystem_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_bSOIPABTeilsystem_BSO_IP_AB_Teilsystem_AttributeGroup.gif
new file mode 100644
index 0000000000..1d991c2d20
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_bSOIPABTeilsystem_BSO_IP_AB_Teilsystem_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV4_IP_Adressblock_Blau_V4_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV4_IP_Adressblock_Blau_V4_TypeClass.gif
new file mode 100644
index 0000000000..6b99a7f3dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV4_IP_Adressblock_Blau_V4_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV6_IP_Adressblock_Blau_V6_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV6_IP_Adressblock_Blau_V6_TypeClass.gif
new file mode 100644
index 0000000000..5aeef18d59
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV6_IP_Adressblock_Blau_V6_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV4_IP_Adressblock_Grau_V4_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV4_IP_Adressblock_Grau_V4_TypeClass.gif
new file mode 100644
index 0000000000..7a99bf2680
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV4_IP_Adressblock_Grau_V4_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV6_IP_Adressblock_Grau_V6_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV6_IP_Adressblock_Grau_V6_TypeClass.gif
new file mode 100644
index 0000000000..a6753909ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV6_IP_Adressblock_Grau_V6_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_regionalbereich_Regionalbereich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_regionalbereich_Regionalbereich_TypeClass.gif
new file mode 100644
index 0000000000..e7e086fa97
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBSO_IP_Adressblock_AttributeGroup_regionalbereich_Regionalbereich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Abhaengigkeit_Fue_AttributeGroup_autoHet_Auto_Het_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Abhaengigkeit_Fue_AttributeGroup_autoHet_Auto_Het_TypeClass.gif
new file mode 100644
index 0000000000..a37ddd6bc2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Abhaengigkeit_Fue_AttributeGroup_autoHet_Auto_Het_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Abhaengigkeit_Fue_AttributeGroup_fueSchaltfall_Fue_Schaltfall_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Abhaengigkeit_Fue_AttributeGroup_fueSchaltfall_Fue_Schaltfall_TypeClass.gif
new file mode 100644
index 0000000000..40237034e5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Abhaengigkeit_Fue_AttributeGroup_fueSchaltfall_Fue_Schaltfall_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Abhaengigkeit_Fue_AttributeGroup_stoerhaltHaltfall_Stoerhalt_Haltfall_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Abhaengigkeit_Fue_AttributeGroup_stoerhaltHaltfall_Stoerhalt_Haltfall_TypeClass.gif
new file mode 100644
index 0000000000..3483523fe0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Abhaengigkeit_Fue_AttributeGroup_stoerhaltHaltfall_Stoerhalt_Haltfall_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Abhaengigkeit_Fue_AttributeGroup_stoerhaltMerkhinweis_Stoerhalt_Merkhinweis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Abhaengigkeit_Fue_AttributeGroup_stoerhaltMerkhinweis_Stoerhalt_Merkhinweis_TypeClass.gif
new file mode 100644
index 0000000000..1e01c877ff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Abhaengigkeit_Fue_AttributeGroup_stoerhaltMerkhinweis_Stoerhalt_Merkhinweis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Abhaengigkeit_Fue_AttributeGroup_zeitueberschreitungsmeldung_Zeitueberschreitungsmeldung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Abhaengigkeit_Fue_AttributeGroup_zeitueberschreitungsmeldung_Zeitueberschreitungsmeldung_TypeClass.gif
new file mode 100644
index 0000000000..43ae2dfc67
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Abhaengigkeit_Fue_AttributeGroup_zeitueberschreitungsmeldung_Zeitueberschreitungsmeldung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUEBauart_BUE_Bauart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUEBauart_BUE_Bauart_TypeClass.gif
new file mode 100644
index 0000000000..d441dad32e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUEBauart_BUE_Bauart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUEBuestra_BUE_Buestra_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUEBuestra_BUE_Buestra_TypeClass.gif
new file mode 100644
index 0000000000..ef7a76ee44
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUEBuestra_BUE_Buestra_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUEMitGFR_BUE_Mit_GFR_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUEMitGFR_BUE_Mit_GFR_TypeClass.gif
new file mode 100644
index 0000000000..325b0b98c7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUEMitGFR_BUE_Mit_GFR_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUESicherungsart_BUE_Sicherungsart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUESicherungsart_BUE_Sicherungsart_TypeClass.gif
new file mode 100644
index 0000000000..1c1a5efaf9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUESicherungsart_BUE_Sicherungsart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUEStrasse_BUE_Strasse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUEStrasse_BUE_Strasse_TypeClass.gif
new file mode 100644
index 0000000000..4154e57faf
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUEStrasse_BUE_Strasse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUETechnik_BUE_Technik_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUETechnik_BUE_Technik_TypeClass.gif
new file mode 100644
index 0000000000..953202770b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Allg_AttributeGroup_bUETechnik_BUE_Technik_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Fuss_Rad_AttributeGroup_fussRadwegArt_Fuss_Radweg_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Fuss_Rad_AttributeGroup_fussRadwegArt_Fuss_Radweg_Art_TypeClass.gif
new file mode 100644
index 0000000000..937120ba4f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Fuss_Rad_AttributeGroup_fussRadwegArt_Fuss_Radweg_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Fuss_Rad_AttributeGroup_fussRadwegSeite_Fuss_Radweg_Seite_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Fuss_Rad_AttributeGroup_fussRadwegSeite_Fuss_Radweg_Seite_TypeClass.gif
new file mode 100644
index 0000000000..8d9cbe9d42
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Fuss_Rad_AttributeGroup_fussRadwegSeite_Fuss_Radweg_Seite_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_baulast_Baulast_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_baulast_Baulast_TypeClass.gif
new file mode 100644
index 0000000000..6defd936b6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_baulast_Baulast_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_fahrbahnBefestigungGleis_Fahrbahn_Befestigung_Gleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_fahrbahnBefestigungGleis_Fahrbahn_Befestigung_Gleis_TypeClass.gif
new file mode 100644
index 0000000000..b6cc9ca21b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_fahrbahnBefestigungGleis_Fahrbahn_Befestigung_Gleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_fahrbahnBefestigung_Fahrbahn_Befestigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_fahrbahnBefestigung_Fahrbahn_Befestigung_TypeClass.gif
new file mode 100644
index 0000000000..527229bf76
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_fahrbahnBefestigung_Fahrbahn_Befestigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_fahrbahnBreite_Fahrbahn_Breite_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_fahrbahnBreite_Fahrbahn_Breite_TypeClass.gif
new file mode 100644
index 0000000000..212161926c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_fahrbahnBreite_Fahrbahn_Breite_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_klassifizierung_Klassifizierung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_klassifizierung_Klassifizierung_TypeClass.gif
new file mode 100644
index 0000000000..a0a1713d5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_klassifizierung_Klassifizierung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_kreuzungswinkel_Kreuzungswinkel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_kreuzungswinkel_Kreuzungswinkel_TypeClass.gif
new file mode 100644
index 0000000000..527229bf76
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_Allg_AttributeGroup_kreuzungswinkel_Kreuzungswinkel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_bUEAnlageFussRad_BUE_Anlage_Fuss_Rad_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_bUEAnlageFussRad_BUE_Anlage_Fuss_Rad_AttributeGroup.gif
new file mode 100644
index 0000000000..628a5cdd1d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_bUEAnlageFussRad_BUE_Anlage_Fuss_Rad_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_bUEAnlageStrasseAllg_BUE_Anlage_Strasse_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_bUEAnlageStrasseAllg_BUE_Anlage_Strasse_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..42586633e4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_bUEAnlageStrasseAllg_BUE_Anlage_Strasse_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..4a6adcc963
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_Strasse_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_Allg_AttributeGroup_vMaxSchiene_V_Max_Schiene_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_Allg_AttributeGroup_vMaxSchiene_V_Max_Schiene_TypeClass.gif
new file mode 100644
index 0000000000..ee9dd1959f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_Allg_AttributeGroup_vMaxSchiene_V_Max_Schiene_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_Allg_AttributeGroup_vMaxStrasse_V_Max_Strasse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_Allg_AttributeGroup_vMaxStrasse_V_Max_Strasse_TypeClass.gif
new file mode 100644
index 0000000000..486225ee11
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_Allg_AttributeGroup_vMaxStrasse_V_Max_Strasse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_Allg_AttributeGroup_vMinFussweg_V_Min_Fussweg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_Allg_AttributeGroup_vMinFussweg_V_Min_Fussweg_TypeClass.gif
new file mode 100644
index 0000000000..578475a4fc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_Allg_AttributeGroup_vMinFussweg_V_Min_Fussweg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_Allg_AttributeGroup_vMinSchiene_V_Min_Schiene_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_Allg_AttributeGroup_vMinSchiene_V_Min_Schiene_TypeClass.gif
new file mode 100644
index 0000000000..266d26776c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_Allg_AttributeGroup_vMinSchiene_V_Min_Schiene_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_Allg_AttributeGroup_vMinStrasse_V_Min_Strasse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_Allg_AttributeGroup_vMinStrasse_V_Min_Strasse_TypeClass.gif
new file mode 100644
index 0000000000..0af290a7a3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_Allg_AttributeGroup_vMinStrasse_V_Min_Strasse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_bUEAnlageVAllg_BUE_Anlage_V_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_bUEAnlageVAllg_BUE_Anlage_V_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..dd7d81f5d1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_bUEAnlageVAllg_BUE_Anlage_V_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..c41c6fc9d2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_V_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_bUEAnlageAllg_BUE_Anlage_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_bUEAnlageAllg_BUE_Anlage_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..c19972e76b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_bUEAnlageAllg_BUE_Anlage_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_bezeichnung_Bezeichnung_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_bezeichnung_Bezeichnung_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..a461190522
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_bezeichnung_Bezeichnung_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_iDAEABUEAnschaltung_ID_Aussenelementansteuerung_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_iDAEABUEAnschaltung_ID_Aussenelementansteuerung_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..49e7eb98b2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_iDAEABUEAnschaltung_ID_Aussenelementansteuerung_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_iDBUESchnittstelle_ID_BUE_Schnittstelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_iDBUESchnittstelle_ID_BUE_Schnittstelle_TypeClass.gif
new file mode 100644
index 0000000000..c6407cdae5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Anlage_iDBUESchnittstelle_ID_BUE_Schnittstelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Ausschaltung_iDBUEGleisbezGefahrraum_ID_BUE_Gleisbezogener_Gefahrraum_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Ausschaltung_iDBUEGleisbezGefahrraum_ID_BUE_Gleisbezogener_Gefahrraum_TypeClass.gif
new file mode 100644
index 0000000000..cb6c57e155
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Ausschaltung_iDBUEGleisbezGefahrraum_ID_BUE_Gleisbezogener_Gefahrraum_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Bedien_Anz_Element_Allg_AttributeGroup_bUEHandschalteinrichtung_BUE_Handschalteinrichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Bedien_Anz_Element_Allg_AttributeGroup_bUEHandschalteinrichtung_BUE_Handschalteinrichtung_TypeClass.gif
new file mode 100644
index 0000000000..f075771bb8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Bedien_Anz_Element_Allg_AttributeGroup_bUEHandschalteinrichtung_BUE_Handschalteinrichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Bedien_Anz_Element_Allg_AttributeGroup_iDBedienAnzeigeElement_ID_Bedien_Anzeige_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Bedien_Anz_Element_Allg_AttributeGroup_iDBedienAnzeigeElement_ID_Bedien_Anzeige_Element_TypeClass.gif
new file mode 100644
index 0000000000..43d93ae509
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Bedien_Anz_Element_Allg_AttributeGroup_iDBedienAnzeigeElement_ID_Bedien_Anzeige_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Bedien_Anz_Element_Allg_AttributeGroup_iDHandschaltWirkfunktion_ID_Handschalt_Wirkfunktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Bedien_Anz_Element_Allg_AttributeGroup_iDHandschaltWirkfunktion_ID_Handschalt_Wirkfunktion_TypeClass.gif
new file mode 100644
index 0000000000..bc2f6d54ed
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Bedien_Anz_Element_Allg_AttributeGroup_iDHandschaltWirkfunktion_ID_Handschalt_Wirkfunktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Bedien_Anzeige_Element_bUEBedienAnzElementAllg_BUE_Bedien_Anz_Element_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Bedien_Anzeige_Element_bUEBedienAnzElementAllg_BUE_Bedien_Anz_Element_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..c3dd92014c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Bedien_Anzeige_Element_bUEBedienAnzElementAllg_BUE_Bedien_Anz_Element_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Deckendes_Signal_Zuordnung_iDBUEEinschaltung_ID_BUE_Einschaltung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Deckendes_Signal_Zuordnung_iDBUEEinschaltung_ID_BUE_Einschaltung_TypeClass.gif
new file mode 100644
index 0000000000..2f87e1e2ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Deckendes_Signal_Zuordnung_iDBUEEinschaltung_ID_BUE_Einschaltung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Deckendes_Signal_Zuordnung_iDSignal_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Deckendes_Signal_Zuordnung_iDSignal_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..96534e62e9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Deckendes_Signal_Zuordnung_iDSignal_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Deckendes_Signal_Zuordnung_sicherheitsabstand_Sicherheitsabstand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Deckendes_Signal_Zuordnung_sicherheitsabstand_Sicherheitsabstand_TypeClass.gif
new file mode 100644
index 0000000000..7affd573b9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Deckendes_Signal_Zuordnung_sicherheitsabstand_Sicherheitsabstand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_einschaltverzErrechnet_Einschaltverz_Errechnet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_einschaltverzErrechnet_Einschaltverz_Errechnet_TypeClass.gif
new file mode 100644
index 0000000000..34611db616
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_einschaltverzErrechnet_Einschaltverz_Errechnet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_einschaltverzGewaehlt_Einschaltverz_Gewaehlt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_einschaltverzGewaehlt_Einschaltverz_Gewaehlt_TypeClass.gif
new file mode 100644
index 0000000000..842a526e7d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_einschaltverzGewaehlt_Einschaltverz_Gewaehlt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_haltezeit_Haltezeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_haltezeit_Haltezeit_TypeClass.gif
new file mode 100644
index 0000000000..4837c02332
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_haltezeit_Haltezeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_kurzzugschaltung_Kurzzugschaltung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_kurzzugschaltung_Kurzzugschaltung_TypeClass.gif
new file mode 100644
index 0000000000..471b87fb76
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_kurzzugschaltung_Kurzzugschaltung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_signalverzErrechnet_Signalverz_Errechnet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_signalverzErrechnet_Signalverz_Errechnet_TypeClass.gif
new file mode 100644
index 0000000000..56785afedb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_signalverzErrechnet_Signalverz_Errechnet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_signalverzGewaehlt_Signalverz_Gewaehlt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_signalverzGewaehlt_Signalverz_Gewaehlt_TypeClass.gif
new file mode 100644
index 0000000000..7e625fe710
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_signalverzGewaehlt_Signalverz_Gewaehlt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_teilvorgabezeit_Teilvorgabezeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_teilvorgabezeit_Teilvorgabezeit_TypeClass.gif
new file mode 100644
index 0000000000..3a09ff4812
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Hp_AttributeGroup_teilvorgabezeit_Teilvorgabezeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Zuordnung_iDBUEEinschaltung_ID_BUE_Einschaltung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Zuordnung_iDBUEEinschaltung_ID_BUE_Einschaltung_TypeClass.gif
new file mode 100644
index 0000000000..a35176a55f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Zuordnung_iDBUEEinschaltung_ID_BUE_Einschaltung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Zuordnung_iDBUEGleisbezGefahrraum_ID_BUE_Gleisbezogener_Gefahrraum_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Zuordnung_iDBUEGleisbezGefahrraum_ID_BUE_Gleisbezogener_Gefahrraum_TypeClass.gif
new file mode 100644
index 0000000000..0c843f9912
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_Zuordnung_iDBUEGleisbezGefahrraum_ID_BUE_Gleisbezogener_Gefahrraum_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_bUEEinschaltungHp_BUE_Einschaltung_Hp_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_bUEEinschaltungHp_BUE_Einschaltung_Hp_AttributeGroup.gif
new file mode 100644
index 0000000000..47428eb188
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_bUEEinschaltungHp_BUE_Einschaltung_Hp_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_bUEFunktionsueberwachung_BUE_Funktionsueberwachung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_bUEFunktionsueberwachung_BUE_Funktionsueberwachung_TypeClass.gif
new file mode 100644
index 0000000000..dd0931290c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Einschaltung_bUEFunktionsueberwachung_BUE_Funktionsueberwachung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gefahrraum_Eckpunkt_Bezeichnung_AttributeGroup_bezeichnungBUEGFREckpunkt_Bezeichnung_BUE_GFR_Eckpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gefahrraum_Eckpunkt_Bezeichnung_AttributeGroup_bezeichnungBUEGFREckpunkt_Bezeichnung_BUE_GFR_Eckpunkt_TypeClass.gif
new file mode 100644
index 0000000000..8390ecacad
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gefahrraum_Eckpunkt_Bezeichnung_AttributeGroup_bezeichnungBUEGFREckpunkt_Bezeichnung_BUE_GFR_Eckpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gefahrraum_Eckpunkt_bezeichnung_BUE_Gefahrraum_Eckpunkt_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gefahrraum_Eckpunkt_bezeichnung_BUE_Gefahrraum_Eckpunkt_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..1808fc8a0f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gefahrraum_Eckpunkt_bezeichnung_BUE_Gefahrraum_Eckpunkt_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gefahrraum_Eckpunkt_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gefahrraum_Eckpunkt_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..fc69df4333
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gefahrraum_Eckpunkt_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gleisbezogener_Gefahrraum_ersatzsteckerGleisbezogen_Ersatzstecker_Gleisbezogen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gleisbezogener_Gefahrraum_ersatzsteckerGleisbezogen_Ersatzstecker_Gleisbezogen_TypeClass.gif
new file mode 100644
index 0000000000..4bf40a9824
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gleisbezogener_Gefahrraum_ersatzsteckerGleisbezogen_Ersatzstecker_Gleisbezogen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gleisbezogener_Gefahrraum_gleisAmBue_Gleis_Am_Bue_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gleisbezogener_Gefahrraum_gleisAmBue_Gleis_Am_Bue_TypeClass.gif
new file mode 100644
index 0000000000..d19385ddf8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gleisbezogener_Gefahrraum_gleisAmBue_Gleis_Am_Bue_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gleisbezogener_Gefahrraum_iDBUEAnlage_ID_BUE_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gleisbezogener_Gefahrraum_iDBUEAnlage_ID_BUE_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..970be05e66
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Gleisbezogener_Gefahrraum_iDBUEAnlage_ID_BUE_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kante_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kante_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..1ca5318648
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kante_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_Koordinaten_AttributeGroup_iDGEOPunkt_ID_GEO_Punkt_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_Koordinaten_AttributeGroup_iDGEOPunkt_ID_GEO_Punkt_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..845de0f9bd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_Koordinaten_AttributeGroup_iDGEOPunkt_ID_GEO_Punkt_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_Koordinaten_AttributeGroup_pixelKoordinateX_Pixel_Koordinate_X_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_Koordinaten_AttributeGroup_pixelKoordinateX_Pixel_Koordinate_X_TypeClass.gif
new file mode 100644
index 0000000000..4b9f986cbd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_Koordinaten_AttributeGroup_pixelKoordinateX_Pixel_Koordinate_X_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_Koordinaten_AttributeGroup_pixelKoordinateY_Pixel_Koordinate_Y_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_Koordinaten_AttributeGroup_pixelKoordinateY_Pixel_Koordinate_Y_TypeClass.gif
new file mode 100644
index 0000000000..8fc21667b1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_Koordinaten_AttributeGroup_pixelKoordinateY_Pixel_Koordinate_Y_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_bUEKreuzungsplanKoordinaten_BUE_Kreuzungsplan_Koordinaten_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_bUEKreuzungsplanKoordinaten_BUE_Kreuzungsplan_Koordinaten_AttributeGroup.gif
new file mode 100644
index 0000000000..0a7b807576
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_bUEKreuzungsplanKoordinaten_BUE_Kreuzungsplan_Koordinaten_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_iDAnhangKreuzungsplan_ID_Anhang_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_iDAnhangKreuzungsplan_ID_Anhang_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..411e41cfbd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_iDAnhangKreuzungsplan_ID_Anhang_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..f43e956455
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Kreuzungsplan_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_Allg_AttributeGroup_bUENachlaufzeit_BUE_Nachlaufzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_Allg_AttributeGroup_bUENachlaufzeit_BUE_Nachlaufzeit_TypeClass.gif
new file mode 100644
index 0000000000..d36652c832
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_Allg_AttributeGroup_bUENachlaufzeit_BUE_Nachlaufzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_Allg_AttributeGroup_bUEVorlaufzeit_BUE_Vorlaufzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_Allg_AttributeGroup_bUEVorlaufzeit_BUE_Vorlaufzeit_TypeClass.gif
new file mode 100644
index 0000000000..5bd29bdb69
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_Allg_AttributeGroup_bUEVorlaufzeit_BUE_Vorlaufzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_Allg_AttributeGroup_hpErsatzstecker_Hp_Ersatzstecker_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_Allg_AttributeGroup_hpErsatzstecker_Hp_Ersatzstecker_TypeClass.gif
new file mode 100644
index 0000000000..00f46c76ac
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_Allg_AttributeGroup_hpErsatzstecker_Hp_Ersatzstecker_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_Allg_AttributeGroup_lFUEImpuls_LFUE_Impuls_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_Allg_AttributeGroup_lFUEImpuls_LFUE_Impuls_TypeClass.gif
new file mode 100644
index 0000000000..d8f51cfbeb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_Allg_AttributeGroup_lFUEImpuls_LFUE_Impuls_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_bUEAbhaengigkeitFue_BUE_Abhaengigkeit_Fue_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_bUEAbhaengigkeitFue_BUE_Abhaengigkeit_Fue_AttributeGroup.gif
new file mode 100644
index 0000000000..5006a4caf3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_bUEAbhaengigkeitFue_BUE_Abhaengigkeit_Fue_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_bUESchnittstelleAllg_BUE_Schnittstelle_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_bUESchnittstelleAllg_BUE_Schnittstelle_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..5ab79ac60e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_bUESchnittstelleAllg_BUE_Schnittstelle_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_iDStellelement_ID_Stellelement_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_iDStellelement_ID_Stellelement_TypeClass.gif
new file mode 100644
index 0000000000..85d1620bc7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Schnittstelle_iDStellelement_ID_Stellelement_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Spezifisches_Signal_iDBUEAnlage_ID_BUE_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Spezifisches_Signal_iDBUEAnlage_ID_BUE_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..dd0931290c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Spezifisches_Signal_iDBUEAnlage_ID_BUE_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Spezifisches_Signal_iDBUEEinschaltung_ID_BUE_Einschaltung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Spezifisches_Signal_iDBUEEinschaltung_ID_BUE_Einschaltung_TypeClass.gif
new file mode 100644
index 0000000000..11943a3c05
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Spezifisches_Signal_iDBUEEinschaltung_ID_BUE_Einschaltung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Spezifisches_Signal_iDSignal_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Spezifisches_Signal_iDSignal_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..fc9baba599
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_Spezifisches_Signal_iDSignal_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_WS_Fstr_Zuordnung_iDBUEEinschaltung_ID_BUE_Einschaltung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_WS_Fstr_Zuordnung_iDBUEEinschaltung_ID_BUE_Einschaltung_TypeClass.gif
new file mode 100644
index 0000000000..6075ab8296
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_WS_Fstr_Zuordnung_iDBUEEinschaltung_ID_BUE_Einschaltung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_WS_Fstr_Zuordnung_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_WS_Fstr_Zuordnung_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif
new file mode 100644
index 0000000000..fee426e9e2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBUE_WS_Fstr_Zuordnung_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Anlage_Bezeichnung_AttributeGroup_bezeichnungBahnsteigAnlage_Bezeichnung_Bahnsteig_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Anlage_Bezeichnung_AttributeGroup_bezeichnungBahnsteigAnlage_Bezeichnung_Bahnsteig_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..dd7b99881d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Anlage_Bezeichnung_AttributeGroup_bezeichnungBahnsteigAnlage_Bezeichnung_Bahnsteig_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Anlage_bezeichnung_Bahnsteig_Anlage_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Anlage_bezeichnung_Bahnsteig_Anlage_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..a825df2992
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Anlage_bezeichnung_Bahnsteig_Anlage_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Dach_iDBahnsteigKante_ID_Bahnsteig_Kante_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Dach_iDBahnsteigKante_ID_Bahnsteig_Kante_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..7e2fd2ea3b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Dach_iDBahnsteigKante_ID_Bahnsteig_Kante_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_Allg_AttributeGroup_lageZumGleis_Lage_Zum_Gleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_Allg_AttributeGroup_lageZumGleis_Lage_Zum_Gleis_TypeClass.gif
new file mode 100644
index 0000000000..b3b0b3f8a8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_Allg_AttributeGroup_lageZumGleis_Lage_Zum_Gleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_Allg_AttributeGroup_systemhoehe_Systemhoehe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_Allg_AttributeGroup_systemhoehe_Systemhoehe_TypeClass.gif
new file mode 100644
index 0000000000..78bc4558b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_Allg_AttributeGroup_systemhoehe_Systemhoehe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_Bezeichnung_AttributeGroup_bezeichnungBahnsteigKante_Bezeichnung_Bahnsteig_Kante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_Bezeichnung_AttributeGroup_bezeichnungBahnsteigKante_Bezeichnung_Bahnsteig_Kante_TypeClass.gif
new file mode 100644
index 0000000000..1c0d080785
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_Bezeichnung_AttributeGroup_bezeichnungBahnsteigKante_Bezeichnung_Bahnsteig_Kante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_bahnsteigKanteAllg_Bahnsteig_Kante_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_bahnsteigKanteAllg_Bahnsteig_Kante_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..5ab79ac60e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_bahnsteigKanteAllg_Bahnsteig_Kante_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_bezeichnung_Bahnsteig_Kante_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_bezeichnung_Bahnsteig_Kante_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..d34ba7412b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_bezeichnung_Bahnsteig_Kante_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_iDBahnsteigAnlage_ID_Bahnsteig_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_iDBahnsteigAnlage_ID_Bahnsteig_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..025f0306c7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Kante_iDBahnsteigAnlage_ID_Bahnsteig_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Zugang_Allg_AttributeGroup_bahnsteigZugangArt_Bahnsteig_Zugang_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Zugang_Allg_AttributeGroup_bahnsteigZugangArt_Bahnsteig_Zugang_Art_TypeClass.gif
new file mode 100644
index 0000000000..ddf2faab46
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Zugang_Allg_AttributeGroup_bahnsteigZugangArt_Bahnsteig_Zugang_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Zugang_Allg_AttributeGroup_hauptzugang_Hauptzugang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Zugang_Allg_AttributeGroup_hauptzugang_Hauptzugang_TypeClass.gif
new file mode 100644
index 0000000000..7cd77d70d2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Zugang_Allg_AttributeGroup_hauptzugang_Hauptzugang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Zugang_bahnsteigZugangAllg_Bahnsteig_Zugang_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Zugang_bahnsteigZugangAllg_Bahnsteig_Zugang_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..d1da83e1fb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Zugang_bahnsteigZugangAllg_Bahnsteig_Zugang_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Zugang_iDBahnsteigAnlage_ID_Bahnsteig_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Zugang_iDBahnsteigAnlage_ID_Bahnsteig_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..c39f97857c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBahnsteig_Zugang_iDBahnsteigAnlage_ID_Bahnsteig_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_anordnungImDP_Anordnung_Im_DP_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_anordnungImDP_Anordnung_Im_DP_TypeClass.gif
new file mode 100644
index 0000000000..1ca5318648
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_anordnungImDP_Anordnung_Im_DP_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_baliseGeraetestand_Balise_Geraetestand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_baliseGeraetestand_Balise_Geraetestand_TypeClass.gif
new file mode 100644
index 0000000000..0b5901d214
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_baliseGeraetestand_Balise_Geraetestand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_balisenhalter_Balisenhalter_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_balisenhalter_Balisenhalter_TypeClass.gif
new file mode 100644
index 0000000000..30db790de3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_balisenhalter_Balisenhalter_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_fabrikat_Fabrikat_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_fabrikat_Fabrikat_TypeClass.gif
new file mode 100644
index 0000000000..794d350b60
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_fabrikat_Fabrikat_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif
new file mode 100644
index 0000000000..0ce91c4366
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_hinweisBalisenbefestigung_Hinweis_Balisenbefestigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_hinweisBalisenbefestigung_Hinweis_Balisenbefestigung_TypeClass.gif
new file mode 100644
index 0000000000..84f9729ecb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_hinweisBalisenbefestigung_Hinweis_Balisenbefestigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_montageabweichung_Montageabweichung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_montageabweichung_Montageabweichung_TypeClass.gif
new file mode 100644
index 0000000000..1ca5318648
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_Allg_AttributeGroup_montageabweichung_Montageabweichung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_baliseAllg_Balise_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_baliseAllg_Balise_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..3d537d9cf8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_baliseAllg_Balise_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_iDDatenpunkt_ID_Datenpunkt_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_iDDatenpunkt_ID_Datenpunkt_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..a35176a55f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBalise_iDDatenpunkt_ID_Datenpunkt_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasisAttribut_AttributeGroup_iDBearbeitungsvermerk_ID_Bearbeitungsvermerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasisAttribut_AttributeGroup_iDBearbeitungsvermerk_ID_Bearbeitungsvermerk_TypeClass.gif
new file mode 100644
index 0000000000..59c4adae07
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasisAttribut_AttributeGroup_iDBearbeitungsvermerk_ID_Bearbeitungsvermerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_Allg_AttributeGroup_bestandsschutz_Bestandsschutz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_Allg_AttributeGroup_bestandsschutz_Bestandsschutz_TypeClass.gif
new file mode 100644
index 0000000000..1cdf90bcb7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_Allg_AttributeGroup_bestandsschutz_Bestandsschutz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_Allg_AttributeGroup_datumRegelwerk_Datum_Regelwerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_Allg_AttributeGroup_datumRegelwerk_Datum_Regelwerk_TypeClass.gif
new file mode 100644
index 0000000000..7601130ed7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_Allg_AttributeGroup_datumRegelwerk_Datum_Regelwerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_Allg_AttributeGroup_iDAnhangRegelwerkBesonders_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_Allg_AttributeGroup_iDAnhangRegelwerkBesonders_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..0dabd12b1d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_Allg_AttributeGroup_iDAnhangRegelwerkBesonders_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_Allg_AttributeGroup_objektzustandBesonders_Objektzustand_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_Allg_AttributeGroup_objektzustandBesonders_Objektzustand_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..151ba5d1e5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_Allg_AttributeGroup_objektzustandBesonders_Objektzustand_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_basisObjektAllg_Basis_Objekt_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_basisObjektAllg_Basis_Objekt_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..c591c37aff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_basisObjektAllg_Basis_Objekt_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_iDBearbeitungsvermerk_ID_Bearbeitungsvermerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_iDBearbeitungsvermerk_ID_Bearbeitungsvermerk_TypeClass.gif
new file mode 100644
index 0000000000..59d30291b8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_iDBearbeitungsvermerk_ID_Bearbeitungsvermerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_iDOertlichkeitAusgabe_ID_Oertlichkeit_Ausgabe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_iDOertlichkeitAusgabe_ID_Oertlichkeit_Ausgabe_TypeClass.gif
new file mode 100644
index 0000000000..fefdeb48a8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_iDOertlichkeitAusgabe_ID_Oertlichkeit_Ausgabe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_objektreferenzen_Objektreferenzen_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_objektreferenzen_Objektreferenzen_AttributeGroup.gif
new file mode 100644
index 0000000000..63deb7e8cc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBasis_Objekt_objektreferenzen_Objektreferenzen_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_bVDarstellungInPlan_BV_Darstellung_In_Plan_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_bVDarstellungInPlan_BV_Darstellung_In_Plan_TypeClass.gif
new file mode 100644
index 0000000000..4a6adcc963
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_bVDarstellungInPlan_BV_Darstellung_In_Plan_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_bVKategorie_BV_Kategorie_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_bVKategorie_BV_Kategorie_TypeClass.gif
new file mode 100644
index 0000000000..3df71fca2c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_bVKategorie_BV_Kategorie_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_bearbeitungsvermerkRolle_Bearbeitungsvermerk_Rolle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_bearbeitungsvermerkRolle_Bearbeitungsvermerk_Rolle_TypeClass.gif
new file mode 100644
index 0000000000..ab320caa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_bearbeitungsvermerkRolle_Bearbeitungsvermerk_Rolle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_bestandsrelevanz_Bestandsrelevanz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_bestandsrelevanz_Bestandsrelevanz_TypeClass.gif
new file mode 100644
index 0000000000..a4ff5f70fd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_bestandsrelevanz_Bestandsrelevanz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_kommentar_Kommentar_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_kommentar_Kommentar_TypeClass.gif
new file mode 100644
index 0000000000..b4bcd2315f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_kommentar_Kommentar_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_kurztext_Kurztext_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_kurztext_Kurztext_TypeClass.gif
new file mode 100644
index 0000000000..3cafe5d16f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_kurztext_Kurztext_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_zeitBearbeitungsvermerk_Zeit_Bearbeitungsvermerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_zeitBearbeitungsvermerk_Zeit_Bearbeitungsvermerk_TypeClass.gif
new file mode 100644
index 0000000000..320d117825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_Allg_AttributeGroup_zeitBearbeitungsvermerk_Zeit_Bearbeitungsvermerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_bearbeitungsvermerkAllg_Bearbeitungsvermerk_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_bearbeitungsvermerkAllg_Bearbeitungsvermerk_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..8f218cb68a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_bearbeitungsvermerkAllg_Bearbeitungsvermerk_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_iDAnhang_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_iDAnhang_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..2f084ae6e1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBearbeitungsvermerk_iDAnhang_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anrueckabschnitt_Bezeichnung_AttributeGroup_bezBedAnrueckabschnitt_Bez_Bed_Anrueckabschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anrueckabschnitt_Bezeichnung_AttributeGroup_bezBedAnrueckabschnitt_Bez_Bed_Anrueckabschnitt_TypeClass.gif
new file mode 100644
index 0000000000..7c3493998c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anrueckabschnitt_Bezeichnung_AttributeGroup_bezBedAnrueckabschnitt_Bez_Bed_Anrueckabschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anrueckabschnitt_bezeichnung_Bedien_Anrueckabschnitt_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anrueckabschnitt_bezeichnung_Bedien_Anrueckabschnitt_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..c4063fe661
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anrueckabschnitt_bezeichnung_Bedien_Anrueckabschnitt_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anrueckabschnitt_iDGleisAbschnittDarstellen_ID_Gleis_Abschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anrueckabschnitt_iDGleisAbschnittDarstellen_ID_Gleis_Abschnitt_TypeClass.gif
new file mode 100644
index 0000000000..5d64176e70
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anrueckabschnitt_iDGleisAbschnittDarstellen_ID_Gleis_Abschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anrueckabschnitt_iDGleisAbschnittPosition_ID_Gleis_Abschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anrueckabschnitt_iDGleisAbschnittPosition_ID_Gleis_Abschnitt_TypeClass.gif
new file mode 100644
index 0000000000..5d64176e70
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anrueckabschnitt_iDGleisAbschnittPosition_ID_Gleis_Abschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_Allg_AttributeGroup_melder_Melder_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_Allg_AttributeGroup_melder_Melder_TypeClass.gif
new file mode 100644
index 0000000000..55d7be5a91
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_Allg_AttributeGroup_melder_Melder_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_Allg_AttributeGroup_schalter_Schalter_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_Allg_AttributeGroup_schalter_Schalter_TypeClass.gif
new file mode 100644
index 0000000000..11f3aea0ec
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_Allg_AttributeGroup_schalter_Schalter_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_Allg_AttributeGroup_taste_Taste_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_Allg_AttributeGroup_taste_Taste_TypeClass.gif
new file mode 100644
index 0000000000..7ea4283fe9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_Allg_AttributeGroup_taste_Taste_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_Bezeichnung_AttributeGroup_bezBedAnzeigeElement_Bez_Bed_Anzeige_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_Bezeichnung_AttributeGroup_bezBedAnzeigeElement_Bez_Bed_Anzeige_Element_TypeClass.gif
new file mode 100644
index 0000000000..5d70e42c42
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_Bezeichnung_AttributeGroup_bezBedAnzeigeElement_Bez_Bed_Anzeige_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_bedienAnzeigeElementAllg_Bedien_Anzeige_Element_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_bedienAnzeigeElementAllg_Bedien_Anzeige_Element_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..7926c34197
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_bedienAnzeigeElementAllg_Bedien_Anzeige_Element_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_bezeichnung_Bedien_Anzeige_Element_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_bezeichnung_Bedien_Anzeige_Element_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..d847f1b240
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_bezeichnung_Bedien_Anzeige_Element_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_iDBedienEinrichtungOertlich_ID_Bedien_Einrichtung_Oertlich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_iDBedienEinrichtungOertlich_ID_Bedien_Einrichtung_Oertlich_TypeClass.gif
new file mode 100644
index 0000000000..0456ccd112
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_iDBedienEinrichtungOertlich_ID_Bedien_Einrichtung_Oertlich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_iDVerknuepftesElement_ID_Verknuepftes_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_iDVerknuepftesElement_ID_Verknuepftes_Element_TypeClass.gif
new file mode 100644
index 0000000000..eb470e4612
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Anzeige_Element_iDVerknuepftesElement_ID_Verknuepftes_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_aWert_A_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_aWert_A_Wert_TypeClass.gif
new file mode 100644
index 0000000000..c0e9653ac2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_aWert_A_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_bWert_B_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_bWert_B_Wert_TypeClass.gif
new file mode 100644
index 0000000000..d4656df57c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_bWert_B_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_cWert_C_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_cWert_C_Wert_TypeClass.gif
new file mode 100644
index 0000000000..c68f4ae3c6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_cWert_C_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_dDWert_DD_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_dDWert_DD_Wert_TypeClass.gif
new file mode 100644
index 0000000000..2833425da4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_dDWert_DD_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_xWert_X_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_xWert_X_Wert_TypeClass.gif
new file mode 100644
index 0000000000..fb5bcb5cd2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_xWert_X_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_yWert_Y_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_yWert_Y_Wert_TypeClass.gif
new file mode 100644
index 0000000000..236984d2d5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_yWert_Y_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_yYWert_YY_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_yYWert_YY_Wert_TypeClass.gif
new file mode 100644
index 0000000000..0d9f24061d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Adressformel_AttributeGroup_yYWert_YY_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_anbindungIB2_Anbindung_IB2_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_anbindungIB2_Anbindung_IB2_TypeClass.gif
new file mode 100644
index 0000000000..3119072e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_anbindungIB2_Anbindung_IB2_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_anbindungIB3_Anbindung_IB3_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_anbindungIB3_Anbindung_IB3_TypeClass.gif
new file mode 100644
index 0000000000..b45e46ab23
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_anbindungIB3_Anbindung_IB3_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif
new file mode 100644
index 0000000000..7ffb512dc3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_schrankreihe_Schrankreihe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_schrankreihe_Schrankreihe_TypeClass.gif
new file mode 100644
index 0000000000..4c78beecc1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_schrankreihe_Schrankreihe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_steuerbezirksname_Steuerbezirksname_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_steuerbezirksname_Steuerbezirksname_TypeClass.gif
new file mode 100644
index 0000000000..0403fbdaff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_steuerbezirksname_Steuerbezirksname_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_steuerbezirksnummer_Steuerbezirksnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_steuerbezirksnummer_Steuerbezirksnummer_TypeClass.gif
new file mode 100644
index 0000000000..d2e2c36a1b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Allg_AttributeGroup_steuerbezirksnummer_Steuerbezirksnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Anhaenge_AttributeGroup_iDAnhangAnbindungIB2_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Anhaenge_AttributeGroup_iDAnhangAnbindungIB2_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..9f36b38d34
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Anhaenge_AttributeGroup_iDAnhangAnbindungIB2_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Anhaenge_AttributeGroup_iDAnhangAnbindungIB3_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Anhaenge_AttributeGroup_iDAnhangAnbindungIB3_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..9f36b38d34
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Anhaenge_AttributeGroup_iDAnhangAnbindungIB3_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Anhaenge_AttributeGroup_iDAnhangSteuerbezUebersicht_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Anhaenge_AttributeGroup_iDAnhangSteuerbezUebersicht_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..9f36b38d34
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_Anhaenge_AttributeGroup_iDAnhangSteuerbezUebersicht_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_bedienBezirkAdressformel_Bedien_Bezirk_Adressformel_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_bedienBezirkAdressformel_Bedien_Bezirk_Adressformel_AttributeGroup.gif
new file mode 100644
index 0000000000..3799bd45b6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_bedienBezirkAdressformel_Bedien_Bezirk_Adressformel_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_bedienBezirkAllg_Bedien_Bezirk_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_bedienBezirkAllg_Bedien_Bezirk_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..c591c37aff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_bedienBezirkAllg_Bedien_Bezirk_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_bedienBezirkAnhaenge_Bedien_Bezirk_Anhaenge_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_bedienBezirkAnhaenge_Bedien_Bezirk_Anhaenge_AttributeGroup.gif
new file mode 100644
index 0000000000..589ded3dfb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_bedienBezirkAnhaenge_Bedien_Bezirk_Anhaenge_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_iDBedienZentrale_ID_Bedien_Zentrale_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_iDBedienZentrale_ID_Bedien_Zentrale_TypeClass.gif
new file mode 100644
index 0000000000..b9619a09d5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Bezirk_iDBedienZentrale_ID_Bedien_Zentrale_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einricht_Oertlich_Allg_AttributeGroup_bedienEinrichtBauart_Bedien_Einricht_Bauart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einricht_Oertlich_Allg_AttributeGroup_bedienEinrichtBauart_Bedien_Einricht_Bauart_TypeClass.gif
new file mode 100644
index 0000000000..6cb3a27759
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einricht_Oertlich_Allg_AttributeGroup_bedienEinrichtBauart_Bedien_Einricht_Bauart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einricht_Oertlich_Allg_AttributeGroup_hupeAnschaltzeit_Hupe_Anschaltzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einricht_Oertlich_Allg_AttributeGroup_hupeAnschaltzeit_Hupe_Anschaltzeit_TypeClass.gif
new file mode 100644
index 0000000000..fb87467162
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einricht_Oertlich_Allg_AttributeGroup_hupeAnschaltzeit_Hupe_Anschaltzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_Bezeichnung_AttributeGroup_bedienEinrichtOertlBez_Bedien_Einricht_Oertl_Bez_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_Bezeichnung_AttributeGroup_bedienEinrichtOertlBez_Bedien_Einricht_Oertl_Bez_TypeClass.gif
new file mode 100644
index 0000000000..252ab407d1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_Bezeichnung_AttributeGroup_bedienEinrichtOertlBez_Bedien_Einricht_Oertl_Bez_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_bedienEinrichtOertlichAllg_Bedien_Einricht_Oertlich_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_bedienEinrichtOertlichAllg_Bedien_Einricht_Oertlich_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..513f25d218
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_bedienEinrichtOertlichAllg_Bedien_Einricht_Oertlich_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_bezeichnung_Bedien_Einrichtung_Oertlich_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_bezeichnung_Bedien_Einrichtung_Oertlich_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..1b80aea5fd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_bezeichnung_Bedien_Einrichtung_Oertlich_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_iDAnhangBenutzeroberflaeche_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_iDAnhangBenutzeroberflaeche_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..2f084ae6e1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_iDAnhangBenutzeroberflaeche_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_iDAussenelementansteuerung_ID_Aussenelementansteuerung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_iDAussenelementansteuerung_ID_Aussenelementansteuerung_TypeClass.gif
new file mode 100644
index 0000000000..9c6b7fcd48
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_iDAussenelementansteuerung_ID_Aussenelementansteuerung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_iDUnterbringung_ID_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_iDUnterbringung_ID_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..02153a7fa0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Einrichtung_Oertlich_iDUnterbringung_ID_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_GBT_Allg_AttributeGroup_rueckschauzeit_Rueckschauzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_GBT_Allg_AttributeGroup_rueckschauzeit_Rueckschauzeit_TypeClass.gif
new file mode 100644
index 0000000000..481390b636
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_GBT_Allg_AttributeGroup_rueckschauzeit_Rueckschauzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_GBT_Allg_AttributeGroup_vorschauzeit_Vorschauzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_GBT_Allg_AttributeGroup_vorschauzeit_Vorschauzeit_TypeClass.gif
new file mode 100644
index 0000000000..6cb8e23a3b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_GBT_Allg_AttributeGroup_vorschauzeit_Vorschauzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_GBT_bedienGBTAllg_Bedien_GBT_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_GBT_bedienGBTAllg_Bedien_GBT_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..c19972e76b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_GBT_bedienGBTAllg_Bedien_GBT_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_GBT_iDAnhangVorgabeGBT_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_GBT_iDAnhangVorgabeGBT_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..1b76a8a7e8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_GBT_iDAnhangVorgabeGBT_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_GBT_iDBedienBezirk_ID_Bedien_Bezirk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_GBT_iDBedienBezirk_ID_Bedien_Bezirk_TypeClass.gif
new file mode 100644
index 0000000000..73b29f99d2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_GBT_iDBedienBezirk_ID_Bedien_Bezirk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Anhaenge_AttributeGroup_iDAnhangMonitoraufteilung_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Anhaenge_AttributeGroup_iDAnhangMonitoraufteilung_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..171603a747
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Anhaenge_AttributeGroup_iDAnhangMonitoraufteilung_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Anhaenge_AttributeGroup_iDAnhangRichtungssinn_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Anhaenge_AttributeGroup_iDAnhangRichtungssinn_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..171603a747
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Anhaenge_AttributeGroup_iDAnhangRichtungssinn_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Anhaenge_AttributeGroup_iDAnhangVorgabeBELU_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Anhaenge_AttributeGroup_iDAnhangVorgabeBELU_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..171603a747
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Anhaenge_AttributeGroup_iDAnhangVorgabeBELU_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Bild_Allg_AttributeGroup_oberflaecheBildart_Oberflaeche_Bildart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Bild_Allg_AttributeGroup_oberflaecheBildart_Oberflaeche_Bildart_TypeClass.gif
new file mode 100644
index 0000000000..2d3a78e68d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Bild_Allg_AttributeGroup_oberflaecheBildart_Oberflaeche_Bildart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Bild_Allg_AttributeGroup_oberflaecheZustaendigkeit_Oberflaeche_Zustaendigkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Bild_Allg_AttributeGroup_oberflaecheZustaendigkeit_Oberflaeche_Zustaendigkeit_TypeClass.gif
new file mode 100644
index 0000000000..84d32674ac
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Bild_Allg_AttributeGroup_oberflaecheZustaendigkeit_Oberflaeche_Zustaendigkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Bild_bedienOberflaecheBildAllg_Bedien_Oberflaeche_Bild_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Bild_bedienOberflaecheBildAllg_Bedien_Oberflaeche_Bild_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..61e87ecee1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Bild_bedienOberflaecheBildAllg_Bedien_Oberflaeche_Bild_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Bild_iDBedienOberflaeche_ID_Bedien_Oberflaeche_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Bild_iDBedienOberflaeche_ID_Bedien_Oberflaeche_TypeClass.gif
new file mode 100644
index 0000000000..4d9762f2ed
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Bild_iDBedienOberflaeche_ID_Bedien_Oberflaeche_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Bild_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Bild_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..8a87700f4c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_Bild_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_bedienOberflaecheAnhaenge_Bedien_Oberflaeche_Anhaenge_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_bedienOberflaecheAnhaenge_Bedien_Oberflaeche_Anhaenge_AttributeGroup.gif
new file mode 100644
index 0000000000..e45936a8f3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_bedienOberflaecheAnhaenge_Bedien_Oberflaeche_Anhaenge_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_iDBedienBezirk_ID_Bedien_Bezirk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_iDBedienBezirk_ID_Bedien_Bezirk_TypeClass.gif
new file mode 100644
index 0000000000..a172db7410
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oberflaeche_iDBedienBezirk_ID_Bedien_Bezirk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oertlichkeit_Kennzahlen_AttributeGroup_betriebsstellenbezeichner_Betriebsstellenbezeichner_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oertlichkeit_Kennzahlen_AttributeGroup_betriebsstellenbezeichner_Betriebsstellenbezeichner_TypeClass.gif
new file mode 100644
index 0000000000..998cc1047e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oertlichkeit_Kennzahlen_AttributeGroup_betriebsstellenbezeichner_Betriebsstellenbezeichner_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oertlichkeit_Kennzahlen_AttributeGroup_kennzahl_Kennzahl_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oertlichkeit_Kennzahlen_AttributeGroup_kennzahl_Kennzahl_TypeClass.gif
new file mode 100644
index 0000000000..b1d6682d38
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oertlichkeit_Kennzahlen_AttributeGroup_kennzahl_Kennzahl_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oertlichkeit_bedienOertlichkeitKennzahlen_Bedien_Oertlichkeit_Kennzahlen_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oertlichkeit_bedienOertlichkeitKennzahlen_Bedien_Oertlichkeit_Kennzahlen_AttributeGroup.gif
new file mode 100644
index 0000000000..763f24446e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oertlichkeit_bedienOertlichkeitKennzahlen_Bedien_Oertlichkeit_Kennzahlen_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oertlichkeit_iDBedienBezirk_ID_Bedien_Bezirk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oertlichkeit_iDBedienBezirk_ID_Bedien_Bezirk_TypeClass.gif
new file mode 100644
index 0000000000..9d5b0302e6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oertlichkeit_iDBedienBezirk_ID_Bedien_Bezirk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oertlichkeit_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oertlichkeit_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..5baef5a950
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Oertlichkeit_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_Allg_AttributeGroup_bedienPlatzArt_Bedien_Platz_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_Allg_AttributeGroup_bedienPlatzArt_Bedien_Platz_Art_TypeClass.gif
new file mode 100644
index 0000000000..f9c132ceac
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_Allg_AttributeGroup_bedienPlatzArt_Bedien_Platz_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_Allg_AttributeGroup_bedienplatzbezeichnung_Bedienplatzbezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_Allg_AttributeGroup_bedienplatzbezeichnung_Bedienplatzbezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..d59b3c9d8b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_Allg_AttributeGroup_bedienplatzbezeichnung_Bedienplatzbezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_Allg_AttributeGroup_bedienplatznummer_Bedienplatznummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_Allg_AttributeGroup_bedienplatznummer_Bedienplatznummer_TypeClass.gif
new file mode 100644
index 0000000000..7303e2d130
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_Allg_AttributeGroup_bedienplatznummer_Bedienplatznummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_Allg_AttributeGroup_bedienraumnummer_Bedienraumnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_Allg_AttributeGroup_bedienraumnummer_Bedienraumnummer_TypeClass.gif
new file mode 100644
index 0000000000..9398ddafde
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_Allg_AttributeGroup_bedienraumnummer_Bedienraumnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_bedienPlatzAllg_Bedien_Platz_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_bedienPlatzAllg_Bedien_Platz_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..44af2e5cd8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_bedienPlatzAllg_Bedien_Platz_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_iDAnhangMoebelplanAufriss_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_iDAnhangMoebelplanAufriss_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..500f429ea8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_iDAnhangMoebelplanAufriss_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_iDAnhangMoebelplanGrundriss_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_iDAnhangMoebelplanGrundriss_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..500f429ea8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_iDAnhangMoebelplanGrundriss_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_iDBedienBezirk_ID_Bedien_Bezirk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_iDBedienBezirk_ID_Bedien_Bezirk_TypeClass.gif
new file mode 100644
index 0000000000..b591a5fa39
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_iDBedienBezirk_ID_Bedien_Bezirk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_iDESTWZentraleinheit_ID_ESTW_Zentraleinheit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_iDESTWZentraleinheit_ID_ESTW_Zentraleinheit_TypeClass.gif
new file mode 100644
index 0000000000..16bcbbf87c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_iDESTWZentraleinheit_ID_ESTW_Zentraleinheit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_iDUnterbringung_ID_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_iDUnterbringung_ID_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..d4b7df4075
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Platz_iDUnterbringung_ID_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Standort_Bezeichnung_AttributeGroup_bezeichnungBSO_Bezeichnung_BSO_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Standort_Bezeichnung_AttributeGroup_bezeichnungBSO_Bezeichnung_BSO_TypeClass.gif
new file mode 100644
index 0000000000..7738511b80
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Standort_Bezeichnung_AttributeGroup_bezeichnungBSO_Bezeichnung_BSO_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Standort_bSOIPAdressblock_BSO_IP_Adressblock_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Standort_bSOIPAdressblock_BSO_IP_Adressblock_AttributeGroup.gif
new file mode 100644
index 0000000000..1c99c0ab31
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Standort_bSOIPAdressblock_BSO_IP_Adressblock_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Standort_bezeichnung_Bedien_Standort_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Standort_bezeichnung_Bedien_Standort_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..00fdba3ec4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Standort_bezeichnung_Bedien_Standort_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Standort_iDUnterbringung_ID_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Standort_iDUnterbringung_ID_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..8d9cbe9d42
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Standort_iDUnterbringung_ID_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_Bezeichnung_AttributeGroup_bezBedZentrale_Bez_Bed_Zentrale_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_Bezeichnung_AttributeGroup_bezBedZentrale_Bez_Bed_Zentrale_TypeClass.gif
new file mode 100644
index 0000000000..19c4a599d7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_Bezeichnung_AttributeGroup_bezBedZentrale_Bez_Bed_Zentrale_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_bezeichnung_Bedien_Zentrale_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_bezeichnung_Bedien_Zentrale_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..b3b0b3f8a8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_bezeichnung_Bedien_Zentrale_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_iDAnhangPlanBedienraum_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_iDAnhangPlanBedienraum_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..201754f640
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_iDAnhangPlanBedienraum_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_iDAnhangPlanRechnerraum_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_iDAnhangPlanRechnerraum_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..201754f640
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_iDAnhangPlanRechnerraum_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..f3a1336d8c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_iDStrecke_ID_Strecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_iDStrecke_ID_Strecke_TypeClass.gif
new file mode 100644
index 0000000000..7b80ba2100
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedien_Zentrale_iDStrecke_ID_Strecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Besondere_AttributeGroup_artBedingung_Art_Bedingung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Besondere_AttributeGroup_artBedingung_Art_Bedingung_TypeClass.gif
new file mode 100644
index 0000000000..7fd40f1869
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Besondere_AttributeGroup_artBedingung_Art_Bedingung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_PZB_AttributeGroup_iDPZBElement_ID_PZB_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_PZB_AttributeGroup_iDPZBElement_ID_PZB_Element_TypeClass.gif
new file mode 100644
index 0000000000..e969b63585
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_PZB_AttributeGroup_iDPZBElement_ID_PZB_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_PZB_AttributeGroup_wirksam_Wirksam_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_PZB_AttributeGroup_wirksam_Wirksam_TypeClass.gif
new file mode 100644
index 0000000000..8e4853e096
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_PZB_AttributeGroup_wirksam_Wirksam_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Signal_AttributeGroup_iDSignalSignalbegriff_ID_Signal_Signalbegriff_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Signal_AttributeGroup_iDSignalSignalbegriff_ID_Signal_Signalbegriff_TypeClass.gif
new file mode 100644
index 0000000000..eeaa06b985
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Signal_AttributeGroup_iDSignalSignalbegriff_ID_Signal_Signalbegriff_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Signal_AttributeGroup_iDSignalbegriffWeiterer_ID_Signal_Signalbegriff_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Signal_AttributeGroup_iDSignalbegriffWeiterer_ID_Signal_Signalbegriff_TypeClass.gif
new file mode 100644
index 0000000000..eeaa06b985
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Signal_AttributeGroup_iDSignalbegriffWeiterer_ID_Signal_Signalbegriff_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Signal_AttributeGroup_verwendungAlsRueckfall_Verwendung_Als_Rueckfall_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Signal_AttributeGroup_verwendungAlsRueckfall_Verwendung_Als_Rueckfall_TypeClass.gif
new file mode 100644
index 0000000000..748e96d807
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Signal_AttributeGroup_verwendungAlsRueckfall_Verwendung_Als_Rueckfall_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Sonstige_AttributeGroup_anlagenteilSonstige_Anlagenteil_Sonstige_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Sonstige_AttributeGroup_anlagenteilSonstige_Anlagenteil_Sonstige_TypeClass.gif
new file mode 100644
index 0000000000..15309fdc8f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Sonstige_AttributeGroup_anlagenteilSonstige_Anlagenteil_Sonstige_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Sonstige_AttributeGroup_textBedingung_Text_Bedingung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Sonstige_AttributeGroup_textBedingung_Text_Bedingung_TypeClass.gif
new file mode 100644
index 0000000000..3090830045
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Sonstige_AttributeGroup_textBedingung_Text_Bedingung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Weiche_AttributeGroup_bedingungWeichenlage_Bedingung_Weichenlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Weiche_AttributeGroup_bedingungWeichenlage_Bedingung_Weichenlage_TypeClass.gif
new file mode 100644
index 0000000000..4096600c25
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Weiche_AttributeGroup_bedingungWeichenlage_Bedingung_Weichenlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Weiche_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Weiche_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..263f6e6940
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBedingung_Weiche_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBereich_Objekt_Teilbereich_AttributeGroup_begrenzungA_Begrenzung_A_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBereich_Objekt_Teilbereich_AttributeGroup_begrenzungA_Begrenzung_A_TypeClass.gif
new file mode 100644
index 0000000000..fee466dd24
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBereich_Objekt_Teilbereich_AttributeGroup_begrenzungA_Begrenzung_A_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBereich_Objekt_Teilbereich_AttributeGroup_begrenzungB_Begrenzung_B_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBereich_Objekt_Teilbereich_AttributeGroup_begrenzungB_Begrenzung_B_TypeClass.gif
new file mode 100644
index 0000000000..932a9f76a5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBereich_Objekt_Teilbereich_AttributeGroup_begrenzungB_Begrenzung_B_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBereich_Objekt_Teilbereich_AttributeGroup_iDTOPKante_ID_TOP_Kante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBereich_Objekt_Teilbereich_AttributeGroup_iDTOPKante_ID_TOP_Kante_TypeClass.gif
new file mode 100644
index 0000000000..1b80aea5fd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBereich_Objekt_Teilbereich_AttributeGroup_iDTOPKante_ID_TOP_Kante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBereich_Objekt_Teilbereich_AttributeGroup_richtungsbezug_Richtungsbezug_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBereich_Objekt_Teilbereich_AttributeGroup_richtungsbezug_Richtungsbezug_TypeClass.gif
new file mode 100644
index 0000000000..eeaa06b985
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBereich_Objekt_Teilbereich_AttributeGroup_richtungsbezug_Richtungsbezug_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBereich_Objekt_bereichObjektTeilbereich_Bereich_Objekt_Teilbereich_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBereich_Objekt_bereichObjektTeilbereich_Bereich_Objekt_Teilbereich_AttributeGroup.gif
new file mode 100644
index 0000000000..5ab63a0a5b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBereich_Objekt_bereichObjektTeilbereich_Bereich_Objekt_Teilbereich_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_bezeichnungAussenanlage_Bezeichnung_Aussenanlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_bezeichnungAussenanlage_Bezeichnung_Aussenanlage_TypeClass.gif
new file mode 100644
index 0000000000..a0c6a283e7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_bezeichnungAussenanlage_Bezeichnung_Aussenanlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_bezeichnungLageplanKurz_Bezeichnung_Lageplan_Kurz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_bezeichnungLageplanKurz_Bezeichnung_Lageplan_Kurz_TypeClass.gif
new file mode 100644
index 0000000000..dc3ca18415
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_bezeichnungLageplanKurz_Bezeichnung_Lageplan_Kurz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_bezeichnungLageplanLang_Bezeichnung_Lageplan_Lang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_bezeichnungLageplanLang_Bezeichnung_Lageplan_Lang_TypeClass.gif
new file mode 100644
index 0000000000..cbab8f9c16
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_bezeichnungLageplanLang_Bezeichnung_Lageplan_Lang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_bezeichnungTabelle_Bezeichnung_Tabelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_bezeichnungTabelle_Bezeichnung_Tabelle_TypeClass.gif
new file mode 100644
index 0000000000..cba683610a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_bezeichnungTabelle_Bezeichnung_Tabelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_kennzahl_Kennzahl_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_kennzahl_Kennzahl_TypeClass.gif
new file mode 100644
index 0000000000..f5b2b6f12d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_kennzahl_Kennzahl_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_oertlicherElementname_Oertlicher_Elementname_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_oertlicherElementname_Oertlicher_Elementname_TypeClass.gif
new file mode 100644
index 0000000000..570aef8c6b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBezeichnung_Element_AttributeGroup_oertlicherElementname_Oertlicher_Elementname_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_ESG_Bed_Ausstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_ESG_Bed_Ausstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..0056d63c98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_ESG_Bed_Ausstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_ESG_Bed_Ausstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_ESG_Bed_Ausstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif
new file mode 100644
index 0000000000..eb4dbff07c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_ESG_Bed_Ausstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_L2_Bed_Einstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_L2_Bed_Einstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..16dbb0e676
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_L2_Bed_Einstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_L2_Bed_Einstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_L2_Bed_Einstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif
new file mode 100644
index 0000000000..04a67489e4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_L2_Bed_Einstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_LZB_Bed_Einstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_LZB_Bed_Einstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..2e9fe7e1ba
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_LZB_Bed_Einstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_LZB_Bed_Einstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_LZB_Bed_Einstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif
new file mode 100644
index 0000000000..cbc9f8d445
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_LZB_Bed_Einstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_Ohne_Bed_Einstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_Ohne_Bed_Einstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..3ffbd19e5e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_Ohne_Bed_Einstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_Ohne_Bed_Einstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_Ohne_Bed_Einstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif
new file mode 100644
index 0000000000..ddd2316b4e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_Ohne_Bed_Einstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_PZB_Bed_Einstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_PZB_Bed_Einstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..0056d63c98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_PZB_Bed_Einstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_PZB_Bed_Einstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_PZB_Bed_Einstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif
new file mode 100644
index 0000000000..eb4dbff07c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_PZB_Bed_Einstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_ZBS_Bed_Einstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_ZBS_Bed_Einstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..ae6b2e6429
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_ZBS_Bed_Einstieg_AttributeGroup_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_ZBS_Bed_Einstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_ZBS_Bed_Einstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif
new file mode 100644
index 0000000000..79bc043f1c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_Nach_ZBS_Bed_Einstieg_AttributeGroup_wLage_W_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_bezStreckeBTS1_Bez_Strecke_BTS_1_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_bezStreckeBTS1_Bez_Strecke_BTS_1_TypeClass.gif
new file mode 100644
index 0000000000..6714c4b294
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_bezStreckeBTS1_Bez_Strecke_BTS_1_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_bezStreckeBTS2_Bez_Strecke_BTS_2_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_bezStreckeBTS2_Bez_Strecke_BTS_2_TypeClass.gif
new file mode 100644
index 0000000000..b154e735ed
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_bezStreckeBTS2_Bez_Strecke_BTS_2_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_bezStreckeBTS3_Bez_Strecke_BTS_3_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_bezStreckeBTS3_Bez_Strecke_BTS_3_TypeClass.gif
new file mode 100644
index 0000000000..ec2e46d280
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_bezStreckeBTS3_Bez_Strecke_BTS_3_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_kmBTS1_Km_BTS_1_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_kmBTS1_Km_BTS_1_TypeClass.gif
new file mode 100644
index 0000000000..6ca73bf37b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_kmBTS1_Km_BTS_1_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_kmBTS2_Km_BTS_2_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_kmBTS2_Km_BTS_2_TypeClass.gif
new file mode 100644
index 0000000000..c0bbad3430
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_kmBTS2_Km_BTS_2_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_kmBTS3_Km_BTS_3_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_kmBTS3_Km_BTS_3_TypeClass.gif
new file mode 100644
index 0000000000..2b855e64d3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_kmBTS3_Km_BTS_3_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBinaerdaten_Datei_AttributeGroup_dateiname_Dateiname_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBinaerdaten_Datei_AttributeGroup_dateiname_Dateiname_TypeClass.gif
new file mode 100644
index 0000000000..f87f97d3ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBinaerdaten_Datei_AttributeGroup_dateiname_Dateiname_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBinaerdaten_Datei_AttributeGroup_dateitypBinaerdatei_Dateityp_Binaerdatei_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBinaerdaten_Datei_AttributeGroup_dateitypBinaerdatei_Dateityp_Binaerdatei_TypeClass.gif
new file mode 100644
index 0000000000..253bf552e3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBinaerdaten_Datei_AttributeGroup_dateitypBinaerdatei_Dateityp_Binaerdatei_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBinaerdaten_binaerdatenDatei_Binaerdaten_Datei_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBinaerdaten_binaerdatenDatei_Binaerdaten_Datei_AttributeGroup.gif
new file mode 100644
index 0000000000..f73697b64c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBinaerdaten_binaerdatenDatei_Binaerdaten_Datei_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBinaerdaten_daten_Daten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBinaerdaten_daten_Daten_TypeClass.gif
new file mode 100644
index 0000000000..96aea643e3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBinaerdaten_daten_Daten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_Allg_AttributeGroup_schaltung_Schaltung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_Allg_AttributeGroup_schaltung_Schaltung_TypeClass.gif
new file mode 100644
index 0000000000..452784a506
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_Allg_AttributeGroup_schaltung_Schaltung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_Allg_AttributeGroup_schutzuebertrager_Schutzuebertrager_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_Allg_AttributeGroup_schutzuebertrager_Schutzuebertrager_TypeClass.gif
new file mode 100644
index 0000000000..d553a7a516
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_Allg_AttributeGroup_schutzuebertrager_Schutzuebertrager_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_blockAnlageAllg_Block_Anlage_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_blockAnlageAllg_Block_Anlage_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..01e1a01338
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_blockAnlageAllg_Block_Anlage_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_iDBlockElementA_ID_Block_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_iDBlockElementA_ID_Block_Element_TypeClass.gif
new file mode 100644
index 0000000000..bdcd7fffee
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_iDBlockElementA_ID_Block_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_iDBlockElementB_ID_Block_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_iDBlockElementB_ID_Block_Element_TypeClass.gif
new file mode 100644
index 0000000000..bdcd7fffee
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_iDBlockElementB_ID_Block_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_iDGleisBezeichnung_ID_Gleis_Bezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_iDGleisBezeichnung_ID_Gleis_Bezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..bdcd7fffee
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Anlage_iDGleisBezeichnung_ID_Gleis_Bezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Allg_AttributeGroup_blockBauform_Block_Bauform_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Allg_AttributeGroup_blockBauform_Block_Bauform_TypeClass.gif
new file mode 100644
index 0000000000..471254323f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Allg_AttributeGroup_blockBauform_Block_Bauform_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Allg_AttributeGroup_rueckblockwecker_Rueckblockwecker_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Allg_AttributeGroup_rueckblockwecker_Rueckblockwecker_TypeClass.gif
new file mode 100644
index 0000000000..8997497557
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Allg_AttributeGroup_rueckblockwecker_Rueckblockwecker_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Allg_AttributeGroup_vorblockwecker_Vorblockwecker_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Allg_AttributeGroup_vorblockwecker_Vorblockwecker_TypeClass.gif
new file mode 100644
index 0000000000..1c1a5efaf9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Allg_AttributeGroup_vorblockwecker_Vorblockwecker_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Erlaubnis_AttributeGroup_autoErlaubnisholen_Auto_Erlaubnisholen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Erlaubnis_AttributeGroup_autoErlaubnisholen_Auto_Erlaubnisholen_TypeClass.gif
new file mode 100644
index 0000000000..0217157fa0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Erlaubnis_AttributeGroup_autoErlaubnisholen_Auto_Erlaubnisholen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Erlaubnis_AttributeGroup_autoErlaubnisruecklauf_Auto_Erlaubnisruecklauf_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Erlaubnis_AttributeGroup_autoErlaubnisruecklauf_Auto_Erlaubnisruecklauf_TypeClass.gif
new file mode 100644
index 0000000000..8a52761d16
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Erlaubnis_AttributeGroup_autoErlaubnisruecklauf_Auto_Erlaubnisruecklauf_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Erlaubnis_AttributeGroup_erlaubnisStaendigVorhanden_Erlaubnis_Staendig_Vorhanden_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Erlaubnis_AttributeGroup_erlaubnisStaendigVorhanden_Erlaubnis_Staendig_Vorhanden_TypeClass.gif
new file mode 100644
index 0000000000..5aacb3fcbf
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Erlaubnis_AttributeGroup_erlaubnisStaendigVorhanden_Erlaubnis_Staendig_Vorhanden_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Erlaubnis_AttributeGroup_erlaubnisabgabespeicherung_Erlaubnisabgabespeicherung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Erlaubnis_AttributeGroup_erlaubnisabgabespeicherung_Erlaubnisabgabespeicherung_TypeClass.gif
new file mode 100644
index 0000000000..b1cadb396e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Erlaubnis_AttributeGroup_erlaubnisabgabespeicherung_Erlaubnisabgabespeicherung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Erlaubnis_AttributeGroup_erlaubnisholen_Erlaubnisholen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Erlaubnis_AttributeGroup_erlaubnisholen_Erlaubnisholen_TypeClass.gif
new file mode 100644
index 0000000000..e0e45bdcaf
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_Erlaubnis_AttributeGroup_erlaubnisholen_Erlaubnisholen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_blockElementAllg_Block_Element_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_blockElementAllg_Block_Element_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..c19972e76b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_blockElementAllg_Block_Element_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_blockElementErlaubnis_Block_Element_Erlaubnis_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_blockElementErlaubnis_Block_Element_Erlaubnis_AttributeGroup.gif
new file mode 100644
index 0000000000..c3dd92014c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_blockElementErlaubnis_Block_Element_Erlaubnis_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_iDBlockStrecke_ID_Block_Strecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_iDBlockStrecke_ID_Block_Strecke_TypeClass.gif
new file mode 100644
index 0000000000..c44b7cfad9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_iDBlockStrecke_ID_Block_Strecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_iDRaeumungspruefung_ID_Schaltmittel_Zuordnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_iDRaeumungspruefung_ID_Schaltmittel_Zuordnung_TypeClass.gif
new file mode 100644
index 0000000000..12de541e7f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_iDRaeumungspruefung_ID_Schaltmittel_Zuordnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_iDSignal_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_iDSignal_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..efc256e308
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_iDSignal_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_iDZugschlussmeldung_ID_Bedien_Anzeige_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_iDZugschlussmeldung_ID_Bedien_Anzeige_Element_TypeClass.gif
new file mode 100644
index 0000000000..981b7874e5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Element_iDZugschlussmeldung_ID_Bedien_Anzeige_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_betriebsfuehrung_Betriebsfuehrung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_betriebsfuehrung_Betriebsfuehrung_TypeClass.gif
new file mode 100644
index 0000000000..fa715663b5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_betriebsfuehrung_Betriebsfuehrung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_bremsweg_Bremsweg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_bremsweg_Bremsweg_TypeClass.gif
new file mode 100644
index 0000000000..d6e65ce8a1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_bremsweg_Bremsweg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_streckeArt_Strecke_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_streckeArt_Strecke_Art_TypeClass.gif
new file mode 100644
index 0000000000..abc4689522
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_streckeArt_Strecke_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_streckengeschwindigkeit_Streckengeschwindigkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_streckengeschwindigkeit_Streckengeschwindigkeit_TypeClass.gif
new file mode 100644
index 0000000000..f63515e9af
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_streckengeschwindigkeit_Streckengeschwindigkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_traktionArtElektrisch_Traktion_Art_Elektrisch_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_traktionArtElektrisch_Traktion_Art_Elektrisch_TypeClass.gif
new file mode 100644
index 0000000000..2a9f5b6928
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_traktionArtElektrisch_Traktion_Art_Elektrisch_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_zugbeeinflussungArt_Zugbeeinflussung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_zugbeeinflussungArt_Zugbeeinflussung_Art_TypeClass.gif
new file mode 100644
index 0000000000..c2235ab275
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_zugbeeinflussungArt_Zugbeeinflussung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_zusatzinformation_Zusatzinformation_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_zusatzinformation_Zusatzinformation_TypeClass.gif
new file mode 100644
index 0000000000..86a616f83b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_Allg_AttributeGroup_zusatzinformation_Zusatzinformation_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_blockStreckeAllg_Block_Strecke_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_blockStreckeAllg_Block_Strecke_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..1c58915b71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_blockStreckeAllg_Block_Strecke_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_iDBetriebsstelleNachbar_ID_Oertlichkeit_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_iDBetriebsstelleNachbar_ID_Oertlichkeit_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..6219c0d7bb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_iDBetriebsstelleNachbar_ID_Oertlichkeit_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_iDKnotenbahnhof_ID_Oertlichkeit_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_iDKnotenbahnhof_ID_Oertlichkeit_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..6219c0d7bb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_iDKnotenbahnhof_ID_Oertlichkeit_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_iDStreckeBremsweg_ID_Strecke_Bremsweg_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_iDStreckeBremsweg_ID_Strecke_Bremsweg_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..2cbcfe13f5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_iDStreckeBremsweg_ID_Strecke_Bremsweg_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_iDStrecke_ID_Strecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_iDStrecke_ID_Strecke_TypeClass.gif
new file mode 100644
index 0000000000..e43add45e3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateBlock_Strecke_iDStrecke_ID_Strecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_aTOSegmentProfile_ATO_Segment_Profile.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_aTOSegmentProfile_ATO_Segment_Profile.gif
new file mode 100644
index 0000000000..e9bdf38603
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_aTOSegmentProfile_ATO_Segment_Profile.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_aTOTSInstanz_ATO_TS_Instanz.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_aTOTSInstanz_ATO_TS_Instanz.gif
new file mode 100644
index 0000000000..9221f55c97
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_aTOTSInstanz_ATO_TS_Instanz.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_aTOTimingPoint_ATO_Timing_Point.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_aTOTimingPoint_ATO_Timing_Point.gif
new file mode 100644
index 0000000000..d31be0d688
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_aTOTimingPoint_ATO_Timing_Point.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_anhang_Anhang.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_anhang_Anhang.gif
new file mode 100644
index 0000000000..d695231564
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_anhang_Anhang.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_aussenelementansteuerung_Aussenelementansteuerung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_aussenelementansteuerung_Aussenelementansteuerung.gif
new file mode 100644
index 0000000000..d959954a67
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_aussenelementansteuerung_Aussenelementansteuerung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEAnlageStrasse_BUE_Anlage_Strasse.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEAnlageStrasse_BUE_Anlage_Strasse.gif
new file mode 100644
index 0000000000..c44845289f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEAnlageStrasse_BUE_Anlage_Strasse.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEAnlageV_BUE_Anlage_V.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEAnlageV_BUE_Anlage_V.gif
new file mode 100644
index 0000000000..e81c185d38
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEAnlageV_BUE_Anlage_V.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEAnlage_BUE_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEAnlage_BUE_Anlage.gif
new file mode 100644
index 0000000000..3093c78a17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEAnlage_BUE_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEAusschaltung_BUE_Ausschaltung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEAusschaltung_BUE_Ausschaltung.gif
new file mode 100644
index 0000000000..3799bd45b6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEAusschaltung_BUE_Ausschaltung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEBedienAnzeigeElement_BUE_Bedien_Anzeige_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEBedienAnzeigeElement_BUE_Bedien_Anzeige_Element.gif
new file mode 100644
index 0000000000..3093c78a17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEBedienAnzeigeElement_BUE_Bedien_Anzeige_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEDeckendesSignalZuordnung_BUE_Deckendes_Signal_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEDeckendesSignalZuordnung_BUE_Deckendes_Signal_Zuordnung.gif
new file mode 100644
index 0000000000..40a3b0173a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEDeckendesSignalZuordnung_BUE_Deckendes_Signal_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEEinschaltungZuordnung_BUE_Einschaltung_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEEinschaltungZuordnung_BUE_Einschaltung_Zuordnung.gif
new file mode 100644
index 0000000000..e9bdf38603
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEEinschaltungZuordnung_BUE_Einschaltung_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEEinschaltung_BUE_Einschaltung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEEinschaltung_BUE_Einschaltung.gif
new file mode 100644
index 0000000000..63dbadf56c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEEinschaltung_BUE_Einschaltung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEGefahrraumEckpunkt_BUE_Gefahrraum_Eckpunkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEGefahrraumEckpunkt_BUE_Gefahrraum_Eckpunkt.gif
new file mode 100644
index 0000000000..40a3b0173a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEGefahrraumEckpunkt_BUE_Gefahrraum_Eckpunkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEGleisbezogenerGefahrraum_BUE_Gleisbezogener_Gefahrraum.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEGleisbezogenerGefahrraum_BUE_Gleisbezogener_Gefahrraum.gif
new file mode 100644
index 0000000000..f7a01deeba
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEGleisbezogenerGefahrraum_BUE_Gleisbezogener_Gefahrraum.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEKante_BUE_Kante.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEKante_BUE_Kante.gif
new file mode 100644
index 0000000000..59d30291b8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEKante_BUE_Kante.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEKreuzungsplan_BUE_Kreuzungsplan.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEKreuzungsplan_BUE_Kreuzungsplan.gif
new file mode 100644
index 0000000000..6664d2939c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEKreuzungsplan_BUE_Kreuzungsplan.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUESchnittstelle_BUE_Schnittstelle.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUESchnittstelle_BUE_Schnittstelle.gif
new file mode 100644
index 0000000000..51539add5b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUESchnittstelle_BUE_Schnittstelle.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUESpezifischesSignal_BUE_Spezifisches_Signal.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUESpezifischesSignal_BUE_Spezifisches_Signal.gif
new file mode 100644
index 0000000000..63dbadf56c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUESpezifischesSignal_BUE_Spezifisches_Signal.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEWSFstrZuordnung_BUE_WS_Fstr_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEWSFstrZuordnung_BUE_WS_Fstr_Zuordnung.gif
new file mode 100644
index 0000000000..76d2d36452
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bUEWSFstrZuordnung_BUE_WS_Fstr_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bahnsteigAnlage_Bahnsteig_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bahnsteigAnlage_Bahnsteig_Anlage.gif
new file mode 100644
index 0000000000..bad30bb8e3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bahnsteigAnlage_Bahnsteig_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bahnsteigDach_Bahnsteig_Dach.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bahnsteigDach_Bahnsteig_Dach.gif
new file mode 100644
index 0000000000..f7a01deeba
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bahnsteigDach_Bahnsteig_Dach.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bahnsteigKante_Bahnsteig_Kante.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bahnsteigKante_Bahnsteig_Kante.gif
new file mode 100644
index 0000000000..51539add5b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bahnsteigKante_Bahnsteig_Kante.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bahnsteigZugang_Bahnsteig_Zugang.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bahnsteigZugang_Bahnsteig_Zugang.gif
new file mode 100644
index 0000000000..c881050c14
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bahnsteigZugang_Bahnsteig_Zugang.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_balise_Balise.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_balise_Balise.gif
new file mode 100644
index 0000000000..e9bdf38603
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_balise_Balise.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bearbeitungsvermerk_Bearbeitungsvermerk.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bearbeitungsvermerk_Bearbeitungsvermerk.gif
new file mode 100644
index 0000000000..cdcc329291
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bearbeitungsvermerk_Bearbeitungsvermerk.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienAnrueckabschnitt_Bedien_Anrueckabschnitt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienAnrueckabschnitt_Bedien_Anrueckabschnitt.gif
new file mode 100644
index 0000000000..f564476a4e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienAnrueckabschnitt_Bedien_Anrueckabschnitt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienAnzeigeElement_Bedien_Anzeige_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienAnzeigeElement_Bedien_Anzeige_Element.gif
new file mode 100644
index 0000000000..9221f55c97
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienAnzeigeElement_Bedien_Anzeige_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienBezirk_Bedien_Bezirk.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienBezirk_Bedien_Bezirk.gif
new file mode 100644
index 0000000000..7cb2132b35
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienBezirk_Bedien_Bezirk.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienEinrichtungOertlich_Bedien_Einrichtung_Oertlich.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienEinrichtungOertlich_Bedien_Einrichtung_Oertlich.gif
new file mode 100644
index 0000000000..cdcc329291
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienEinrichtungOertlich_Bedien_Einrichtung_Oertlich.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienGBT_Bedien_GBT.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienGBT_Bedien_GBT.gif
new file mode 100644
index 0000000000..3093c78a17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienGBT_Bedien_GBT.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienOberflaecheBild_Bedien_Oberflaeche_Bild.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienOberflaecheBild_Bedien_Oberflaeche_Bild.gif
new file mode 100644
index 0000000000..cbb9f425ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienOberflaecheBild_Bedien_Oberflaeche_Bild.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienOberflaeche_Bedien_Oberflaeche.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienOberflaeche_Bedien_Oberflaeche.gif
new file mode 100644
index 0000000000..bad30bb8e3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienOberflaeche_Bedien_Oberflaeche.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienOertlichkeit_Bedien_Oertlichkeit.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienOertlichkeit_Bedien_Oertlichkeit.gif
new file mode 100644
index 0000000000..391d0b3131
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienOertlichkeit_Bedien_Oertlichkeit.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienPlatz_Bedien_Platz.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienPlatz_Bedien_Platz.gif
new file mode 100644
index 0000000000..407220bf47
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienPlatz_Bedien_Platz.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienStandort_Bedien_Standort.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienStandort_Bedien_Standort.gif
new file mode 100644
index 0000000000..d51b61d9ef
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienStandort_Bedien_Standort.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienZentrale_Bedien_Zentrale.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienZentrale_Bedien_Zentrale.gif
new file mode 100644
index 0000000000..b689e7a00b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_bedienZentrale_Bedien_Zentrale.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_binaerdaten_Binaerdaten.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_binaerdaten_Binaerdaten.gif
new file mode 100644
index 0000000000..d959954a67
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_binaerdaten_Binaerdaten.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_blockAnlage_Block_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_blockAnlage_Block_Anlage.gif
new file mode 100644
index 0000000000..011b758fdb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_blockAnlage_Block_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_blockElement_Block_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_blockElement_Block_Element.gif
new file mode 100644
index 0000000000..3093c78a17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_blockElement_Block_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_blockStrecke_Block_Strecke.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_blockStrecke_Block_Strecke.gif
new file mode 100644
index 0000000000..4e5ea6a0d7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_blockStrecke_Block_Strecke.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_datenpunktLink_Datenpunkt_Link.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_datenpunktLink_Datenpunkt_Link.gif
new file mode 100644
index 0000000000..3093c78a17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_datenpunktLink_Datenpunkt_Link.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_datenpunkt_Datenpunkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_datenpunkt_Datenpunkt.gif
new file mode 100644
index 0000000000..63deb7e8cc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_datenpunkt_Datenpunkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eSTWZentraleinheit_ESTW_Zentraleinheit.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eSTWZentraleinheit_ESTW_Zentraleinheit.gif
new file mode 100644
index 0000000000..d31be0d688
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eSTWZentraleinheit_ESTW_Zentraleinheit.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eTCSKante_ETCS_Kante.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eTCSKante_ETCS_Kante.gif
new file mode 100644
index 0000000000..fce4def8ef
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eTCSKante_ETCS_Kante.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eTCSKnoten_ETCS_Knoten.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eTCSKnoten_ETCS_Knoten.gif
new file mode 100644
index 0000000000..b689e7a00b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eTCSKnoten_ETCS_Knoten.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eTCSRichtungsanzeige_ETCS_Richtungsanzeige.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eTCSRichtungsanzeige_ETCS_Richtungsanzeige.gif
new file mode 100644
index 0000000000..6664d2939c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eTCSRichtungsanzeige_ETCS_Richtungsanzeige.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eTCSSignal_ETCS_Signal.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eTCSSignal_ETCS_Signal.gif
new file mode 100644
index 0000000000..e059b62b3e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eTCSSignal_ETCS_Signal.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eTCSWKr_ETCS_W_Kr.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eTCSWKr_ETCS_W_Kr.gif
new file mode 100644
index 0000000000..011b758fdb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eTCSWKr_ETCS_W_Kr.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eVModul_EV_Modul.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eVModul_EV_Modul.gif
new file mode 100644
index 0000000000..63dbadf56c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_eVModul_EV_Modul.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fMAAnlage_FMA_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fMAAnlage_FMA_Anlage.gif
new file mode 100644
index 0000000000..c881050c14
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fMAAnlage_FMA_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fMAElement_FMA_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fMAElement_FMA_Element.gif
new file mode 100644
index 0000000000..b689e7a00b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fMAElement_FMA_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fMAKomponente_FMA_Komponente.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fMAKomponente_FMA_Komponente.gif
new file mode 100644
index 0000000000..c44845289f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fMAKomponente_FMA_Komponente.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fTAnschaltbedingung_FT_Anschaltbedingung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fTAnschaltbedingung_FT_Anschaltbedingung.gif
new file mode 100644
index 0000000000..fce4def8ef
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fTAnschaltbedingung_FT_Anschaltbedingung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fTFahrwegTeil_FT_Fahrweg_Teil.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fTFahrwegTeil_FT_Fahrweg_Teil.gif
new file mode 100644
index 0000000000..51539add5b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fTFahrwegTeil_FT_Fahrweg_Teil.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fachtelegramm_Fachtelegramm.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fachtelegramm_Fachtelegramm.gif
new file mode 100644
index 0000000000..02c6c3c694
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fachtelegramm_Fachtelegramm.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_flaFreimeldeZuordnung_Fla_Freimelde_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_flaFreimeldeZuordnung_Fla_Freimelde_Zuordnung.gif
new file mode 100644
index 0000000000..407220bf47
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_flaFreimeldeZuordnung_Fla_Freimelde_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_flaSchutz_Fla_Schutz.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_flaSchutz_Fla_Schutz.gif
new file mode 100644
index 0000000000..fdf618977f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_flaSchutz_Fla_Schutz.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_flaZwieschutz_Fla_Zwieschutz.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_flaZwieschutz_Fla_Zwieschutz.gif
new file mode 100644
index 0000000000..e9bdf38603
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_flaZwieschutz_Fla_Zwieschutz.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrAbhaengigkeit_Fstr_Abhaengigkeit.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrAbhaengigkeit_Fstr_Abhaengigkeit.gif
new file mode 100644
index 0000000000..f564476a4e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrAbhaengigkeit_Fstr_Abhaengigkeit.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrAneinanderZuordnung_Fstr_Aneinander_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrAneinanderZuordnung_Fstr_Aneinander_Zuordnung.gif
new file mode 100644
index 0000000000..26da63c4c8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrAneinanderZuordnung_Fstr_Aneinander_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrAneinander_Fstr_Aneinander.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrAneinander_Fstr_Aneinander.gif
new file mode 100644
index 0000000000..304981bb11
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrAneinander_Fstr_Aneinander.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrDWegWKr_Fstr_DWeg_W_Kr.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrDWegWKr_Fstr_DWeg_W_Kr.gif
new file mode 100644
index 0000000000..d959954a67
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrDWegWKr_Fstr_DWeg_W_Kr.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrDWeg_Fstr_DWeg.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrDWeg_Fstr_DWeg.gif
new file mode 100644
index 0000000000..3799bd45b6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrDWeg_Fstr_DWeg.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrFahrweg_Fstr_Fahrweg.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrFahrweg_Fstr_Fahrweg.gif
new file mode 100644
index 0000000000..05dc620268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrFahrweg_Fstr_Fahrweg.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrNichthaltfall_Fstr_Nichthaltfall.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrNichthaltfall_Fstr_Nichthaltfall.gif
new file mode 100644
index 0000000000..cbb9f425ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrNichthaltfall_Fstr_Nichthaltfall.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrRangierFlaZuordnung_Fstr_Rangier_Fla_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrRangierFlaZuordnung_Fstr_Rangier_Fla_Zuordnung.gif
new file mode 100644
index 0000000000..02c6c3c694
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrRangierFlaZuordnung_Fstr_Rangier_Fla_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrSignalisierung_Fstr_Signalisierung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrSignalisierung_Fstr_Signalisierung.gif
new file mode 100644
index 0000000000..e2bf8c1fb4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrSignalisierung_Fstr_Signalisierung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrUmfahrpunkt_Fstr_Umfahrpunkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrUmfahrpunkt_Fstr_Umfahrpunkt.gif
new file mode 100644
index 0000000000..40a3b0173a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrUmfahrpunkt_Fstr_Umfahrpunkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrZugRangier_Fstr_Zug_Rangier.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrZugRangier_Fstr_Zug_Rangier.gif
new file mode 100644
index 0000000000..f7a01deeba
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_fstrZugRangier_Fstr_Zug_Rangier.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gEOKante_GEO_Kante.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gEOKante_GEO_Kante.gif
new file mode 100644
index 0000000000..4e5ea6a0d7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gEOKante_GEO_Kante.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gEOKnoten_GEO_Knoten.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gEOKnoten_GEO_Knoten.gif
new file mode 100644
index 0000000000..d31be0d688
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gEOKnoten_GEO_Knoten.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gEOPunkt_GEO_Punkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gEOPunkt_GEO_Punkt.gif
new file mode 100644
index 0000000000..d31be0d688
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gEOPunkt_GEO_Punkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gFRAnlage_GFR_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gFRAnlage_GFR_Anlage.gif
new file mode 100644
index 0000000000..d959954a67
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gFRAnlage_GFR_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gFRElement_GFR_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gFRElement_GFR_Element.gif
new file mode 100644
index 0000000000..4ac9c84f95
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gFRElement_GFR_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gFRTripelspiegel_GFR_Tripelspiegel.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gFRTripelspiegel_GFR_Tripelspiegel.gif
new file mode 100644
index 0000000000..fefdeb48a8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gFRTripelspiegel_GFR_Tripelspiegel.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_geschwindigkeitsprofil_Geschwindigkeitsprofil.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_geschwindigkeitsprofil_Geschwindigkeitsprofil.gif
new file mode 100644
index 0000000000..59d30291b8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_geschwindigkeitsprofil_Geschwindigkeitsprofil.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisAbschluss_Gleis_Abschluss.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisAbschluss_Gleis_Abschluss.gif
new file mode 100644
index 0000000000..2fde4889b9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisAbschluss_Gleis_Abschluss.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisAbschnitt_Gleis_Abschnitt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisAbschnitt_Gleis_Abschnitt.gif
new file mode 100644
index 0000000000..304981bb11
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisAbschnitt_Gleis_Abschnitt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisArt_Gleis_Art.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisArt_Gleis_Art.gif
new file mode 100644
index 0000000000..b4a2918a05
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisArt_Gleis_Art.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisBaubereich_Gleis_Baubereich.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisBaubereich_Gleis_Baubereich.gif
new file mode 100644
index 0000000000..76d2d36452
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisBaubereich_Gleis_Baubereich.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisBezeichnung_Gleis_Bezeichnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisBezeichnung_Gleis_Bezeichnung.gif
new file mode 100644
index 0000000000..3093c78a17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisBezeichnung_Gleis_Bezeichnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisFahrbahn_Gleis_Fahrbahn.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisFahrbahn_Gleis_Fahrbahn.gif
new file mode 100644
index 0000000000..9221f55c97
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisFahrbahn_Gleis_Fahrbahn.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisLichtraum_Gleis_Lichtraum.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisLichtraum_Gleis_Lichtraum.gif
new file mode 100644
index 0000000000..c28f2e6aa6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisLichtraum_Gleis_Lichtraum.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisSchaltgruppe_Gleis_Schaltgruppe.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisSchaltgruppe_Gleis_Schaltgruppe.gif
new file mode 100644
index 0000000000..5560b51391
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_gleisSchaltgruppe_Gleis_Schaltgruppe.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_hoehenlinie_Hoehenlinie.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_hoehenlinie_Hoehenlinie.gif
new file mode 100644
index 0000000000..391d0b3131
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_hoehenlinie_Hoehenlinie.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_hoehenpunkt_Hoehenpunkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_hoehenpunkt_Hoehenpunkt.gif
new file mode 100644
index 0000000000..1d169590e8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_hoehenpunkt_Hoehenpunkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_kabelVerteilpunkt_Kabel_Verteilpunkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_kabelVerteilpunkt_Kabel_Verteilpunkt.gif
new file mode 100644
index 0000000000..289eb8bf38
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_kabelVerteilpunkt_Kabel_Verteilpunkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_kabel_Kabel.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_kabel_Kabel.gif
new file mode 100644
index 0000000000..2fde4889b9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_kabel_Kabel.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_lEUAnlage_LEU_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_lEUAnlage_LEU_Anlage.gif
new file mode 100644
index 0000000000..b9619a09d5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_lEUAnlage_LEU_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_lEUModul_LEU_Modul.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_lEUModul_LEU_Modul.gif
new file mode 100644
index 0000000000..589ded3dfb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_lEUModul_LEU_Modul.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_lEUSchaltkasten_LEU_Schaltkasten.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_lEUSchaltkasten_LEU_Schaltkasten.gif
new file mode 100644
index 0000000000..f564476a4e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_lEUSchaltkasten_LEU_Schaltkasten.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_lieferobjekt_Lieferobjekt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_lieferobjekt_Lieferobjekt.gif
new file mode 100644
index 0000000000..c44845289f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_lieferobjekt_Lieferobjekt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_luftTelegramm_Luft_Telegramm.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_luftTelegramm_Luft_Telegramm.gif
new file mode 100644
index 0000000000..d51b61d9ef
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_luftTelegramm_Luft_Telegramm.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_markanterPunkt_Markanter_Punkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_markanterPunkt_Markanter_Punkt.gif
new file mode 100644
index 0000000000..05dc620268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_markanterPunkt_Markanter_Punkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_nBBedienAnzeigeElement_NB_Bedien_Anzeige_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_nBBedienAnzeigeElement_NB_Bedien_Anzeige_Element.gif
new file mode 100644
index 0000000000..bad30bb8e3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_nBBedienAnzeigeElement_NB_Bedien_Anzeige_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_nBZoneElement_NB_Zone_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_nBZoneElement_NB_Zone_Element.gif
new file mode 100644
index 0000000000..5560b51391
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_nBZoneElement_NB_Zone_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_nBZoneGrenze_NB_Zone_Grenze.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_nBZoneGrenze_NB_Zone_Grenze.gif
new file mode 100644
index 0000000000..63deb7e8cc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_nBZoneGrenze_NB_Zone_Grenze.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_nBZone_NB_Zone.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_nBZone_NB_Zone.gif
new file mode 100644
index 0000000000..c44845289f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_nBZone_NB_Zone.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_nB_NB.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_nB_NB.gif
new file mode 100644
index 0000000000..63dbadf56c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_nB_NB.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_oertlichkeit_Oertlichkeit.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_oertlichkeit_Oertlichkeit.gif
new file mode 100644
index 0000000000..f7a01deeba
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_oertlichkeit_Oertlichkeit.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_pZBElementZuordnung_PZB_Element_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_pZBElementZuordnung_PZB_Element_Zuordnung.gif
new file mode 100644
index 0000000000..4e5ea6a0d7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_pZBElementZuordnung_PZB_Element_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_pZBElement_PZB_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_pZBElement_PZB_Element.gif
new file mode 100644
index 0000000000..c881050c14
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_pZBElement_PZB_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_pZBZuordnungSignal_PZB_Zuordnung_Signal.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_pZBZuordnungSignal_PZB_Zuordnung_Signal.gif
new file mode 100644
index 0000000000..c881050c14
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_pZBZuordnungSignal_PZB_Zuordnung_Signal.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_progDateiGruppe_Prog_Datei_Gruppe.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_progDateiGruppe_Prog_Datei_Gruppe.gif
new file mode 100644
index 0000000000..4ac9c84f95
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_progDateiGruppe_Prog_Datei_Gruppe.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_proxyObjekt_Proxy_Objekt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_proxyObjekt_Proxy_Objekt.gif
new file mode 100644
index 0000000000..289eb8bf38
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_proxyObjekt_Proxy_Objekt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_rBC_RBC.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_rBC_RBC.gif
new file mode 100644
index 0000000000..02c6c3c694
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_rBC_RBC.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_regelzeichnungParameter_Regelzeichnung_Parameter.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_regelzeichnungParameter_Regelzeichnung_Parameter.gif
new file mode 100644
index 0000000000..2fde4889b9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_regelzeichnungParameter_Regelzeichnung_Parameter.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_regelzeichnung_Regelzeichnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_regelzeichnung_Regelzeichnung.gif
new file mode 100644
index 0000000000..e059b62b3e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_regelzeichnung_Regelzeichnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schaltmittelFstrZuordnung_Schaltmittel_Fstr_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schaltmittelFstrZuordnung_Schaltmittel_Fstr_Zuordnung.gif
new file mode 100644
index 0000000000..7cb2132b35
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schaltmittelFstrZuordnung_Schaltmittel_Fstr_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schaltmittelZuordnung_Schaltmittel_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schaltmittelZuordnung_Schaltmittel_Zuordnung.gif
new file mode 100644
index 0000000000..c9faf2dede
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schaltmittelZuordnung_Schaltmittel_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schloss_Schloss.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schloss_Schloss.gif
new file mode 100644
index 0000000000..7cb2132b35
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schloss_Schloss.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schlosskombination_Schlosskombination.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schlosskombination_Schlosskombination.gif
new file mode 100644
index 0000000000..cdcc329291
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schlosskombination_Schlosskombination.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schluessel_Schluessel.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schluessel_Schluessel.gif
new file mode 100644
index 0000000000..207b658fbb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schluessel_Schluessel.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schluesselsperre_Schluesselsperre.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schluesselsperre_Schluesselsperre.gif
new file mode 100644
index 0000000000..4e5ea6a0d7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schluesselsperre_Schluesselsperre.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schrankenantrieb_Schrankenantrieb.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schrankenantrieb_Schrankenantrieb.gif
new file mode 100644
index 0000000000..cbb9f425ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_schrankenantrieb_Schrankenantrieb.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_signalBefestigung_Signal_Befestigung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_signalBefestigung_Signal_Befestigung.gif
new file mode 100644
index 0000000000..391d0b3131
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_signalBefestigung_Signal_Befestigung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_signalFankZuordnung_Signal_Fank_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_signalFankZuordnung_Signal_Fank_Zuordnung.gif
new file mode 100644
index 0000000000..1d169590e8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_signalFankZuordnung_Signal_Fank_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_signalRahmen_Signal_Rahmen.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_signalRahmen_Signal_Rahmen.gif
new file mode 100644
index 0000000000..e9bdf38603
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_signalRahmen_Signal_Rahmen.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_signalSignalbegriff_Signal_Signalbegriff.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_signalSignalbegriff_Signal_Signalbegriff.gif
new file mode 100644
index 0000000000..38e8cc2ed1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_signalSignalbegriff_Signal_Signalbegriff.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_signal_Signal.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_signal_Signal.gif
new file mode 100644
index 0000000000..76d2d36452
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_signal_Signal.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_sonstigerPunkt_Sonstiger_Punkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_sonstigerPunkt_Sonstiger_Punkt.gif
new file mode 100644
index 0000000000..74d3e585a6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_sonstigerPunkt_Sonstiger_Punkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_stellBereich_Stell_Bereich.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_stellBereich_Stell_Bereich.gif
new file mode 100644
index 0000000000..d695231564
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_stellBereich_Stell_Bereich.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_stellelement_Stellelement.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_stellelement_Stellelement.gif
new file mode 100644
index 0000000000..407220bf47
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_stellelement_Stellelement.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_streckeBremsweg_Strecke_Bremsweg.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_streckeBremsweg_Strecke_Bremsweg.gif
new file mode 100644
index 0000000000..e9bdf38603
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_streckeBremsweg_Strecke_Bremsweg.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_streckePunkt_Strecke_Punkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_streckePunkt_Strecke_Punkt.gif
new file mode 100644
index 0000000000..c28f2e6aa6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_streckePunkt_Strecke_Punkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_strecke_Strecke.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_strecke_Strecke.gif
new file mode 100644
index 0000000000..4ac9c84f95
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_strecke_Strecke.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_tOPKante_TOP_Kante.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_tOPKante_TOP_Kante.gif
new file mode 100644
index 0000000000..c44845289f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_tOPKante_TOP_Kante.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_tOPKnoten_TOP_Knoten.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_tOPKnoten_TOP_Knoten.gif
new file mode 100644
index 0000000000..d695231564
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_tOPKnoten_TOP_Knoten.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_technikStandort_Technik_Standort.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_technikStandort_Technik_Standort.gif
new file mode 100644
index 0000000000..e059b62b3e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_technikStandort_Technik_Standort.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_technischerBereich_Technischer_Bereich.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_technischerBereich_Technischer_Bereich.gif
new file mode 100644
index 0000000000..3799bd45b6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_technischerBereich_Technischer_Bereich.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_technischerPunkt_Technischer_Punkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_technischerPunkt_Technischer_Punkt.gif
new file mode 100644
index 0000000000..02c6c3c694
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_technischerPunkt_Technischer_Punkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_trasseKante_Trasse_Kante.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_trasseKante_Trasse_Kante.gif
new file mode 100644
index 0000000000..c501776925
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_trasseKante_Trasse_Kante.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_trasseKante_Trasse_Kante_child_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_trasseKante_Trasse_Kante_child_AttributeGroup.gif
new file mode 100644
index 0000000000..e81c185d38
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_trasseKante_Trasse_Kante_child_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_trasseKnoten_Trasse_Knoten.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_trasseKnoten_Trasse_Knoten.gif
new file mode 100644
index 0000000000..6664d2939c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_trasseKnoten_Trasse_Knoten.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_ueberhoehung_Ueberhoehung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_ueberhoehung_Ueberhoehung.gif
new file mode 100644
index 0000000000..43035507ee
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_ueberhoehung_Ueberhoehung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_ueberhoehungslinie_Ueberhoehungslinie.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_ueberhoehungslinie_Ueberhoehungslinie.gif
new file mode 100644
index 0000000000..e2bf8c1fb4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_ueberhoehungslinie_Ueberhoehungslinie.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_uebertragungsweg_Uebertragungsweg.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_uebertragungsweg_Uebertragungsweg.gif
new file mode 100644
index 0000000000..9221f55c97
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_uebertragungsweg_Uebertragungsweg.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_unterbringung_Unterbringung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_unterbringung_Unterbringung.gif
new file mode 100644
index 0000000000..51539add5b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_unterbringung_Unterbringung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_verkehrszeichen_Verkehrszeichen.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_verkehrszeichen_Verkehrszeichen.gif
new file mode 100644
index 0000000000..304981bb11
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_verkehrszeichen_Verkehrszeichen.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_wKrAnlage_W_Kr_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_wKrAnlage_W_Kr_Anlage.gif
new file mode 100644
index 0000000000..c591c37aff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_wKrAnlage_W_Kr_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_wKrGspElement_W_Kr_Gsp_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_wKrGspElement_W_Kr_Gsp_Element.gif
new file mode 100644
index 0000000000..407220bf47
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_wKrGspElement_W_Kr_Gsp_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_wKrGspKomponente_W_Kr_Gsp_Komponente.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_wKrGspKomponente_W_Kr_Gsp_Komponente.gif
new file mode 100644
index 0000000000..9221f55c97
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_wKrGspKomponente_W_Kr_Gsp_Komponente.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_weichenlaufketteZuordnung_Weichenlaufkette_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_weichenlaufketteZuordnung_Weichenlaufkette_Zuordnung.gif
new file mode 100644
index 0000000000..1d169590e8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_weichenlaufketteZuordnung_Weichenlaufkette_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_weichenlaufkette_Weichenlaufkette.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_weichenlaufkette_Weichenlaufkette.gif
new file mode 100644
index 0000000000..589ded3dfb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_weichenlaufkette_Weichenlaufkette.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zBSSchutzstrecke_ZBS_Schutzstrecke.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zBSSchutzstrecke_ZBS_Schutzstrecke.gif
new file mode 100644
index 0000000000..e81c185d38
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zBSSchutzstrecke_ZBS_Schutzstrecke.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zBSSignal_ZBS_Signal.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zBSSignal_ZBS_Signal.gif
new file mode 100644
index 0000000000..289eb8bf38
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zBSSignal_ZBS_Signal.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLDLPAbschnitt_ZL_DLP_Abschnitt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLDLPAbschnitt_ZL_DLP_Abschnitt.gif
new file mode 100644
index 0000000000..fdf618977f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLDLPAbschnitt_ZL_DLP_Abschnitt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLDLPFstr_ZL_DLP_Fstr.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLDLPFstr_ZL_DLP_Fstr.gif
new file mode 100644
index 0000000000..d959954a67
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLDLPFstr_ZL_DLP_Fstr.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLFstrAnstoss_ZL_Fstr_Anstoss.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLFstrAnstoss_ZL_Fstr_Anstoss.gif
new file mode 100644
index 0000000000..589ded3dfb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLFstrAnstoss_ZL_Fstr_Anstoss.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLFstr_ZL_Fstr.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLFstr_ZL_Fstr.gif
new file mode 100644
index 0000000000..e81c185d38
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLFstr_ZL_Fstr.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLSignalgruppeZuordnung_ZL_Signalgruppe_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLSignalgruppeZuordnung_ZL_Signalgruppe_Zuordnung.gif
new file mode 100644
index 0000000000..407220bf47
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLSignalgruppeZuordnung_ZL_Signalgruppe_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLSignalgruppe_ZL_Signalgruppe.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLSignalgruppe_ZL_Signalgruppe.gif
new file mode 100644
index 0000000000..4ac9c84f95
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLSignalgruppe_ZL_Signalgruppe.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLVBusBesondereAnlage_ZLV_Bus_Besondere_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLVBusBesondereAnlage_ZLV_Bus_Besondere_Anlage.gif
new file mode 100644
index 0000000000..fefdeb48a8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLVBusBesondereAnlage_ZLV_Bus_Besondere_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLVBusUSZuordnung_ZLV_Bus_US_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLVBusUSZuordnung_ZLV_Bus_US_Zuordnung.gif
new file mode 100644
index 0000000000..011b758fdb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLVBusUSZuordnung_ZLV_Bus_US_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLVBus_ZLV_Bus.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLVBus_ZLV_Bus.gif
new file mode 100644
index 0000000000..51539add5b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zLVBus_ZLV_Bus.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zL_ZL.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zL_ZL.gif
new file mode 100644
index 0000000000..05dc620268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zL_ZL.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNAkustik_ZN_Akustik.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNAkustik_ZN_Akustik.gif
new file mode 100644
index 0000000000..5560b51391
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNAkustik_ZN_Akustik.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNAnzeigefeld_ZN_Anzeigefeld.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNAnzeigefeld_ZN_Anzeigefeld.gif
new file mode 100644
index 0000000000..9b14586f01
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNAnzeigefeld_ZN_Anzeigefeld.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNFortschaltKriterium_ZN_Fortschalt_Kriterium.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNFortschaltKriterium_ZN_Fortschalt_Kriterium.gif
new file mode 100644
index 0000000000..e059b62b3e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNFortschaltKriterium_ZN_Fortschalt_Kriterium.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNTelegramm84Zuordnung_ZN_Telegramm_84_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNTelegramm84Zuordnung_ZN_Telegramm_84_Zuordnung.gif
new file mode 100644
index 0000000000..40a3b0173a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNTelegramm84Zuordnung_ZN_Telegramm_84_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNTelegramm85Zuordnung_ZN_Telegramm_85_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNTelegramm85Zuordnung_ZN_Telegramm_85_Zuordnung.gif
new file mode 100644
index 0000000000..6664d2939c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNTelegramm85Zuordnung_ZN_Telegramm_85_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNUnterstation_ZN_Unterstation.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNUnterstation_ZN_Unterstation.gif
new file mode 100644
index 0000000000..e059b62b3e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNUnterstation_ZN_Unterstation.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNZBS_ZN_ZBS.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNZBS_ZN_ZBS.gif
new file mode 100644
index 0000000000..74d3e585a6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zNZBS_ZN_ZBS.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zN_ZN.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zN_ZN.gif
new file mode 100644
index 0000000000..c501776925
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zN_ZN.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zUBBereichsgrenze_ZUB_Bereichsgrenze.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zUBBereichsgrenze_ZUB_Bereichsgrenze.gif
new file mode 100644
index 0000000000..cdcc329291
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zUBBereichsgrenze_ZUB_Bereichsgrenze.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zUBStreckeneigenschaft_ZUB_Streckeneigenschaft.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zUBStreckeneigenschaft_ZUB_Streckeneigenschaft.gif
new file mode 100644
index 0000000000..b689e7a00b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zUBStreckeneigenschaft_ZUB_Streckeneigenschaft.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zugeinwirkung_Zugeinwirkung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zugeinwirkung_Zugeinwirkung.gif
new file mode 100644
index 0000000000..4ac9c84f95
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateContainer_AttributeGroup_zugeinwirkung_Zugeinwirkung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Bezug_Funktional_AttributeGroup_dPBezugFunktionalArt_DP_Bezug_Funktional_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Bezug_Funktional_AttributeGroup_dPBezugFunktionalArt_DP_Bezug_Funktional_Art_TypeClass.gif
new file mode 100644
index 0000000000..7515406d97
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Bezug_Funktional_AttributeGroup_dPBezugFunktionalArt_DP_Bezug_Funktional_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Bezug_Funktional_AttributeGroup_iDDPBezugFunktional_ID_DP_Bezug_Funktional_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Bezug_Funktional_AttributeGroup_iDDPBezugFunktional_ID_DP_Bezug_Funktional_TypeClass.gif
new file mode 100644
index 0000000000..7515406d97
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Bezug_Funktional_AttributeGroup_iDDPBezugFunktional_ID_DP_Bezug_Funktional_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_ETCS_Adresse_AttributeGroup_nIDBG_NID_BG_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_ETCS_Adresse_AttributeGroup_nIDBG_NID_BG_TypeClass.gif
new file mode 100644
index 0000000000..c9af92d891
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_ETCS_Adresse_AttributeGroup_nIDBG_NID_BG_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_ETCS_Adresse_AttributeGroup_nIDC_NID_C_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_ETCS_Adresse_AttributeGroup_nIDC_NID_C_TypeClass.gif
new file mode 100644
index 0000000000..a3671bee34
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_ETCS_Adresse_AttributeGroup_nIDC_NID_C_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_AttributeGroup_eTCSSystemVersion_ETCS_System_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_AttributeGroup_eTCSSystemVersion_ETCS_System_Version_TypeClass.gif
new file mode 100644
index 0000000000..2dde1a2a0e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_AttributeGroup_eTCSSystemVersion_ETCS_System_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_AttributeGroup_iDFTAnschaltbedingung_ID_FT_Anschaltbedingung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_AttributeGroup_iDFTAnschaltbedingung_ID_FT_Anschaltbedingung_TypeClass.gif
new file mode 100644
index 0000000000..ff618e2776
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_AttributeGroup_iDFTAnschaltbedingung_ID_FT_Anschaltbedingung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_AttributeGroup_iDFachtelegramm_ID_Fachtelegramm_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_AttributeGroup_iDFachtelegramm_ID_Fachtelegramm_TypeClass.gif
new file mode 100644
index 0000000000..3d5488ecbc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_AttributeGroup_iDFachtelegramm_ID_Fachtelegramm_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_AttributeGroup_sRSVersion_SRS_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_AttributeGroup_sRSVersion_SRS_Version_TypeClass.gif
new file mode 100644
index 0000000000..85812b6ce6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_AttributeGroup_sRSVersion_SRS_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_ESG_AttributeGroup_eTCSSystemVersion_ETCS_System_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_ESG_AttributeGroup_eTCSSystemVersion_ETCS_System_Version_TypeClass.gif
new file mode 100644
index 0000000000..880f2572d8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_ESG_AttributeGroup_eTCSSystemVersion_ETCS_System_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_ESG_AttributeGroup_iDFTAnschaltbedingungGeplant_ID_FT_Anschaltbedingung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_ESG_AttributeGroup_iDFTAnschaltbedingungGeplant_ID_FT_Anschaltbedingung_TypeClass.gif
new file mode 100644
index 0000000000..2bf1e9af94
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_ESG_AttributeGroup_iDFTAnschaltbedingungGeplant_ID_FT_Anschaltbedingung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_ESG_AttributeGroup_iDFTAnschaltbedingungRealisiert_ID_FT_Anschaltbedingung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_ESG_AttributeGroup_iDFTAnschaltbedingungRealisiert_ID_FT_Anschaltbedingung_TypeClass.gif
new file mode 100644
index 0000000000..2bf1e9af94
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_ESG_AttributeGroup_iDFTAnschaltbedingungRealisiert_ID_FT_Anschaltbedingung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_ESG_AttributeGroup_iDFachtelegramm_ID_Fachtelegramm_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_ESG_AttributeGroup_iDFachtelegramm_ID_Fachtelegramm_TypeClass.gif
new file mode 100644
index 0000000000..267893188f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_ESG_AttributeGroup_iDFachtelegramm_ID_Fachtelegramm_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_ESG_AttributeGroup_sRSVersion_SRS_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_ESG_AttributeGroup_sRSVersion_SRS_Version_TypeClass.gif
new file mode 100644
index 0000000000..f3e037faa8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Telegramm_ESG_AttributeGroup_sRSVersion_SRS_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypArt_DP_Typ_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypArt_DP_Typ_Art_TypeClass.gif
new file mode 100644
index 0000000000..c60711d77f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypArt_DP_Typ_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGESG_DP_Typ_GESG_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGESG_DP_Typ_GESG_AttributeGroup.gif
new file mode 100644
index 0000000000..4a48673153
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGESG_DP_Typ_GESG_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGETCS_DP_Typ_GETCS_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGETCS_DP_Typ_GETCS_AttributeGroup.gif
new file mode 100644
index 0000000000..1af04eb061
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGETCS_DP_Typ_GETCS_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGGNT_DP_Typ_GGNT_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGGNT_DP_Typ_GGNT_AttributeGroup.gif
new file mode 100644
index 0000000000..788a4f2ce6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGGNT_DP_Typ_GGNT_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGSonst_DP_Typ_GSonst_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGSonst_DP_Typ_GSonst_AttributeGroup.gif
new file mode 100644
index 0000000000..99ae775708
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGSonst_DP_Typ_GSonst_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGTrans_DP_Typ_GTrans_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGTrans_DP_Typ_GTrans_AttributeGroup.gif
new file mode 100644
index 0000000000..3ea4b78b9e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGTrans_DP_Typ_GTrans_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGZBS_DP_Typ_GZBS_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGZBS_DP_Typ_GZBS_AttributeGroup.gif
new file mode 100644
index 0000000000..f7e0ea73df
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_AttributeGroup_dPTypGZBS_DP_Typ_GZBS_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GESG_AttributeGroup_dPTypESG_DP_Typ_ESG_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GESG_AttributeGroup_dPTypESG_DP_Typ_ESG_TypeClass.gif
new file mode 100644
index 0000000000..33f4da09f6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GESG_AttributeGroup_dPTypESG_DP_Typ_ESG_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GESG_AttributeGroup_dPVerlinkt_DP_Verlinkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GESG_AttributeGroup_dPVerlinkt_DP_Verlinkt_TypeClass.gif
new file mode 100644
index 0000000000..1f3ebd6d67
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GESG_AttributeGroup_dPVerlinkt_DP_Verlinkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GESG_AttributeGroup_lfdNrAmBezugspunkt_Lfd_Nr_Am_Bezugspunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GESG_AttributeGroup_lfdNrAmBezugspunkt_Lfd_Nr_Am_Bezugspunkt_TypeClass.gif
new file mode 100644
index 0000000000..07919a46dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GESG_AttributeGroup_lfdNrAmBezugspunkt_Lfd_Nr_Am_Bezugspunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GETCS_AttributeGroup_dPATO_DP_ATO_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GETCS_AttributeGroup_dPATO_DP_ATO_TypeClass.gif
new file mode 100644
index 0000000000..49d98d937a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GETCS_AttributeGroup_dPATO_DP_ATO_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GETCS_AttributeGroup_dPTypETCS_DP_Typ_ETCS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GETCS_AttributeGroup_dPTypETCS_DP_Typ_ETCS_TypeClass.gif
new file mode 100644
index 0000000000..68313aef7a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GETCS_AttributeGroup_dPTypETCS_DP_Typ_ETCS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GETCS_AttributeGroup_iDDPBezugFunktional_ID_DP_Bezug_Funktional_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GETCS_AttributeGroup_iDDPBezugFunktional_ID_DP_Bezug_Funktional_TypeClass.gif
new file mode 100644
index 0000000000..82fdfc3e72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GETCS_AttributeGroup_iDDPBezugFunktional_ID_DP_Bezug_Funktional_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GETCS_AttributeGroup_verkuerzterAbstand_Verkuerzter_Abstand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GETCS_AttributeGroup_verkuerzterAbstand_Verkuerzter_Abstand_TypeClass.gif
new file mode 100644
index 0000000000..babcc9eb47
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GETCS_AttributeGroup_verkuerzterAbstand_Verkuerzter_Abstand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GGNT_AttributeGroup_dPTypGNT_DP_Typ_GNT_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GGNT_AttributeGroup_dPTypGNT_DP_Typ_GNT_TypeClass.gif
new file mode 100644
index 0000000000..9bf4a1ad80
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GGNT_AttributeGroup_dPTypGNT_DP_Typ_GNT_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GSonst_AttributeGroup_anwendungSonst_Anwendung_Sonst_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GSonst_AttributeGroup_anwendungSonst_Anwendung_Sonst_TypeClass.gif
new file mode 100644
index 0000000000..9a3eff9513
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GSonst_AttributeGroup_anwendungSonst_Anwendung_Sonst_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GSonst_AttributeGroup_dPTypSonst_DP_Typ_Sonst_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GSonst_AttributeGroup_dPTypSonst_DP_Typ_Sonst_TypeClass.gif
new file mode 100644
index 0000000000..84d142daee
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GSonst_AttributeGroup_dPTypSonst_DP_Typ_Sonst_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GTrans_AttributeGroup_dPTypTrans_DP_Typ_Trans_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GTrans_AttributeGroup_dPTypTrans_DP_Typ_Trans_TypeClass.gif
new file mode 100644
index 0000000000..7ffb512dc3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GTrans_AttributeGroup_dPTypTrans_DP_Typ_Trans_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GZBS_AttributeGroup_dPTypZBS_DP_Typ_ZBS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GZBS_AttributeGroup_dPTypZBS_DP_Typ_ZBS_TypeClass.gif
new file mode 100644
index 0000000000..90821e36f3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDP_Typ_GZBS_AttributeGroup_dPTypZBS_DP_Typ_ZBS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_anwendungssystem_Anwendungssystem_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_anwendungssystem_Anwendungssystem_TypeClass.gif
new file mode 100644
index 0000000000..d534bceb90
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_anwendungssystem_Anwendungssystem_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_ausrichtung_Ausrichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_ausrichtung_Ausrichtung_TypeClass.gif
new file mode 100644
index 0000000000..70b94f3a49
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_ausrichtung_Ausrichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_datenpunktBeschreibung_Datenpunkt_Beschreibung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_datenpunktBeschreibung_Datenpunkt_Beschreibung_TypeClass.gif
new file mode 100644
index 0000000000..53a716ee74
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_datenpunktBeschreibung_Datenpunkt_Beschreibung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_datenpunktLaenge_Datenpunkt_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_datenpunktLaenge_Datenpunkt_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..4ec7362a76
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_datenpunktLaenge_Datenpunkt_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_sonstigeStandortangabe_Sonstige_Standortangabe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_sonstigeStandortangabe_Sonstige_Standortangabe_TypeClass.gif
new file mode 100644
index 0000000000..fe0e4b2b82
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_sonstigeStandortangabe_Sonstige_Standortangabe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_standortangabeBalisenschild_Standortangabe_Balisenschild_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_standortangabeBalisenschild_Standortangabe_Balisenschild_TypeClass.gif
new file mode 100644
index 0000000000..3a4e9adb3b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Allg_AttributeGroup_standortangabeBalisenschild_Standortangabe_Balisenschild_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Einmesspunkt_AttributeGroup_abstandEinmesspunkt_Abstand_Einmesspunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Einmesspunkt_AttributeGroup_abstandEinmesspunkt_Abstand_Einmesspunkt_TypeClass.gif
new file mode 100644
index 0000000000..eb8204ca8e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Einmesspunkt_AttributeGroup_abstandEinmesspunkt_Abstand_Einmesspunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Einmesspunkt_AttributeGroup_iDEinmesspunkt_ID_Markanter_Punkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Einmesspunkt_AttributeGroup_iDEinmesspunkt_ID_Markanter_Punkt_TypeClass.gif
new file mode 100644
index 0000000000..14bbb4b8b1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Einmesspunkt_AttributeGroup_iDEinmesspunkt_ID_Markanter_Punkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_anwendungESG_Anwendung_ESG_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_anwendungESG_Anwendung_ESG_TypeClass.gif
new file mode 100644
index 0000000000..981b7874e5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_anwendungESG_Anwendung_ESG_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_anwendungGNT_Anwendung_GNT_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_anwendungGNT_Anwendung_GNT_TypeClass.gif
new file mode 100644
index 0000000000..561bc08cff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_anwendungGNT_Anwendung_GNT_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_iDDPLinkStart_ID_Datenpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_iDDPLinkStart_ID_Datenpunkt_TypeClass.gif
new file mode 100644
index 0000000000..619a36c574
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_iDDPLinkStart_ID_Datenpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_iDDPLinkZiel_ID_Datenpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_iDDPLinkZiel_ID_Datenpunkt_TypeClass.gif
new file mode 100644
index 0000000000..619a36c574
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_iDDPLinkZiel_ID_Datenpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_iDFachtelegramm_ID_Fachtelegramm_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_iDFachtelegramm_ID_Fachtelegramm_TypeClass.gif
new file mode 100644
index 0000000000..61e5d4d482
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_iDFachtelegramm_ID_Fachtelegramm_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_linkDistanz_Link_Distanz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_linkDistanz_Link_Distanz_TypeClass.gif
new file mode 100644
index 0000000000..1b76a8a7e8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_linkDistanz_Link_Distanz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_zBSMerkmale_ZBS_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_zBSMerkmale_ZBS_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..de48ec6202
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_zBSMerkmale_ZBS_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_zielDPAusrichtung_Ziel_DP_Ausrichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_zielDPAusrichtung_Ziel_DP_Ausrichtung_TypeClass.gif
new file mode 100644
index 0000000000..5e6c9c1b28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_Link_zielDPAusrichtung_Ziel_DP_Ausrichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_dPBezugFunktional_DP_Bezug_Funktional_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_dPBezugFunktional_DP_Bezug_Funktional_AttributeGroup.gif
new file mode 100644
index 0000000000..95d9b6809c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_dPBezugFunktional_DP_Bezug_Funktional_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_dPETCSAdresse_DP_ETCS_Adresse_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_dPETCSAdresse_DP_ETCS_Adresse_AttributeGroup.gif
new file mode 100644
index 0000000000..0643d859aa
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_dPETCSAdresse_DP_ETCS_Adresse_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_dPTelegrammESG_DP_Telegramm_ESG_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_dPTelegrammESG_DP_Telegramm_ESG_AttributeGroup.gif
new file mode 100644
index 0000000000..01f032eb60
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_dPTelegrammESG_DP_Telegramm_ESG_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_dPTelegramm_DP_Telegramm_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_dPTelegramm_DP_Telegramm_AttributeGroup.gif
new file mode 100644
index 0000000000..7af4f6be97
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_dPTelegramm_DP_Telegramm_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_dPTyp_DP_Typ_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_dPTyp_DP_Typ_AttributeGroup.gif
new file mode 100644
index 0000000000..c91bd29f6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_dPTyp_DP_Typ_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_datenpunktAllg_Datenpunkt_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_datenpunktAllg_Datenpunkt_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..723b09f95f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_datenpunktAllg_Datenpunkt_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_datenpunktEinmesspunkt_Datenpunkt_Einmesspunkt_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_datenpunktEinmesspunkt_Datenpunkt_Einmesspunkt_AttributeGroup.gif
new file mode 100644
index 0000000000..16c3e21097
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_datenpunktEinmesspunkt_Datenpunkt_Einmesspunkt_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_iDRBC_ID_RBC_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_iDRBC_ID_RBC_TypeClass.gif
new file mode 100644
index 0000000000..4bbf122431
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_iDRBC_ID_RBC_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_lEUSteuernde_LEU_Steuernde_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_lEUSteuernde_LEU_Steuernde_AttributeGroup.gif
new file mode 100644
index 0000000000..0f44e117a6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDatenpunkt_lEUSteuernde_LEU_Steuernde_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDocumentRoot_planProLayoutinfo_PlanPro_Layoutinfo.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDocumentRoot_planProLayoutinfo_PlanPro_Layoutinfo.gif
new file mode 100644
index 0000000000..5a43b3d474
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDocumentRoot_planProLayoutinfo_PlanPro_Layoutinfo.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDocumentRoot_planProSchnittstelle_PlanPro_Schnittstelle.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDocumentRoot_planProSchnittstelle_PlanPro_Schnittstelle.gif
new file mode 100644
index 0000000000..29e698e053
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateDocumentRoot_planProSchnittstelle_PlanPro_Schnittstelle.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Individuelle_Merkmale_AttributeGroup_eSGIndErlaeuterung_ESG_Ind_Erlaeuterung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Individuelle_Merkmale_AttributeGroup_eSGIndErlaeuterung_ESG_Ind_Erlaeuterung_TypeClass.gif
new file mode 100644
index 0000000000..99e6aae4cd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Individuelle_Merkmale_AttributeGroup_eSGIndErlaeuterung_ESG_Ind_Erlaeuterung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Individuelle_Merkmale_AttributeGroup_eSGIndParameter_ESG_Ind_Parameter_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Individuelle_Merkmale_AttributeGroup_eSGIndParameter_ESG_Ind_Parameter_TypeClass.gif
new file mode 100644
index 0000000000..981646d0aa
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Individuelle_Merkmale_AttributeGroup_eSGIndParameter_ESG_Ind_Parameter_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Individuelle_Merkmale_AttributeGroup_eSGIndParameterwert_ESG_Ind_Parameterwert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Individuelle_Merkmale_AttributeGroup_eSGIndParameterwert_ESG_Ind_Parameterwert_TypeClass.gif
new file mode 100644
index 0000000000..637672eb71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Individuelle_Merkmale_AttributeGroup_eSGIndParameterwert_ESG_Ind_Parameterwert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Individuelle_Merkmale_AttributeGroup_iDAnhangUiG_ID_Anhang_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Individuelle_Merkmale_AttributeGroup_iDAnhangUiG_ID_Anhang_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..5087b0ec10
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Individuelle_Merkmale_AttributeGroup_iDAnhangUiG_ID_Anhang_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_eTCSPaketnummer_ETCS_Paketnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_eTCSPaketnummer_ETCS_Paketnummer_TypeClass.gif
new file mode 100644
index 0000000000..698771192b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_eTCSPaketnummer_ETCS_Paketnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_eTCSParErlaeuterung_ETCS_Par_Erlaeuterung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_eTCSParErlaeuterung_ETCS_Par_Erlaeuterung_TypeClass.gif
new file mode 100644
index 0000000000..2f87e1e2ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_eTCSParErlaeuterung_ETCS_Par_Erlaeuterung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_eTCSParametername_ETCS_Parametername_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_eTCSParametername_ETCS_Parametername_TypeClass.gif
new file mode 100644
index 0000000000..ac3a4fd1c6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_eTCSParametername_ETCS_Parametername_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_eTCSParameterwert_ETCS_Parameterwert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_eTCSParameterwert_ETCS_Parameterwert_TypeClass.gif
new file mode 100644
index 0000000000..288ee3a4e9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_eTCSParameterwert_ETCS_Parameterwert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_rekursion2Nr_Rekursion_2_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_rekursion2Nr_Rekursion_2_Nr_TypeClass.gif
new file mode 100644
index 0000000000..29f98e74f3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_rekursion2Nr_Rekursion_2_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_rekursionNr_Rekursion_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_rekursionNr_Rekursion_Nr_TypeClass.gif
new file mode 100644
index 0000000000..59d6727f1a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESG_Spezifische_Merkmale_AttributeGroup_rekursionNr_Rekursion_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_ZE_Energieversorgung_AttributeGroup_energieversorgungArtErsatz2_Energieversorgung_Art_Ersatz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_ZE_Energieversorgung_AttributeGroup_energieversorgungArtErsatz2_Energieversorgung_Art_Ersatz_TypeClass.gif
new file mode 100644
index 0000000000..dfe521b7dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_ZE_Energieversorgung_AttributeGroup_energieversorgungArtErsatz2_Energieversorgung_Art_Ersatz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_ZE_Energieversorgung_AttributeGroup_energieversorgungArtErsatz_Energieversorgung_Art_Ersatz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_ZE_Energieversorgung_AttributeGroup_energieversorgungArtErsatz_Energieversorgung_Art_Ersatz_TypeClass.gif
new file mode 100644
index 0000000000..dfe521b7dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_ZE_Energieversorgung_AttributeGroup_energieversorgungArtErsatz_Energieversorgung_Art_Ersatz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_ZE_Energieversorgung_AttributeGroup_energieversorgungArt_Energieversorgung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_ZE_Energieversorgung_AttributeGroup_energieversorgungArt_Energieversorgung_Art_TypeClass.gif
new file mode 100644
index 0000000000..d839c758a4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_ZE_Energieversorgung_AttributeGroup_energieversorgungArt_Energieversorgung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_ZE_Energieversorgung_AttributeGroup_iDEnergiePrimaer_ID_Energie_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_ZE_Energieversorgung_AttributeGroup_iDEnergiePrimaer_ID_Energie_TypeClass.gif
new file mode 100644
index 0000000000..975c4746da
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_ZE_Energieversorgung_AttributeGroup_iDEnergiePrimaer_ID_Energie_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_ZE_Energieversorgung_AttributeGroup_iDEnergieSekundaer_ID_Energie_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_ZE_Energieversorgung_AttributeGroup_iDEnergieSekundaer_ID_Energie_TypeClass.gif
new file mode 100644
index 0000000000..975c4746da
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_ZE_Energieversorgung_AttributeGroup_iDEnergieSekundaer_ID_Energie_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_Allg_AttributeGroup_bauart_Bauart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_Allg_AttributeGroup_bauart_Bauart_TypeClass.gif
new file mode 100644
index 0000000000..b2bf170389
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_Allg_AttributeGroup_bauart_Bauart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif
new file mode 100644
index 0000000000..8e5a21bdb7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_Bezeichnung_AttributeGroup_bezeichnungESTWZE_Bezeichnung_ESTW_ZE_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_Bezeichnung_AttributeGroup_bezeichnungESTWZE_Bezeichnung_ESTW_ZE_TypeClass.gif
new file mode 100644
index 0000000000..02f1a9b046
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_Bezeichnung_AttributeGroup_bezeichnungESTWZE_Bezeichnung_ESTW_ZE_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_bezeichnung_ESTW_Zentraleinheit_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_bezeichnung_ESTW_Zentraleinheit_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..2339bb9ac6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_bezeichnung_ESTW_Zentraleinheit_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_eSTWZEEnergieversorgung_ESTW_ZE_Energieversorgung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_eSTWZEEnergieversorgung_ESTW_ZE_Energieversorgung_AttributeGroup.gif
new file mode 100644
index 0000000000..753a5c7e4f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_eSTWZEEnergieversorgung_ESTW_ZE_Energieversorgung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_eSTWZentraleinheitAllg_ESTW_Zentraleinheit_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_eSTWZentraleinheitAllg_ESTW_Zentraleinheit_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..2371ef2aa0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_eSTWZentraleinheitAllg_ESTW_Zentraleinheit_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_iDBedienBezirkVirtuell_ID_Bedien_Bezirk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_iDBedienBezirkVirtuell_ID_Bedien_Bezirk_TypeClass.gif
new file mode 100644
index 0000000000..9cd6c78574
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_iDBedienBezirkVirtuell_ID_Bedien_Bezirk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_iDBedienBezirkZentral_ID_Bedien_Bezirk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_iDBedienBezirkZentral_ID_Bedien_Bezirk_TypeClass.gif
new file mode 100644
index 0000000000..9cd6c78574
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_iDBedienBezirkZentral_ID_Bedien_Bezirk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_iDOertlichkeitNamensgebend_ID_Oertlichkeit_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_iDOertlichkeitNamensgebend_ID_Oertlichkeit_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..79cec2bc9d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_iDOertlichkeitNamensgebend_ID_Oertlichkeit_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_iDUnterbringung_ID_Unterbringung_Technik_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_iDUnterbringung_ID_Unterbringung_Technik_TypeClass.gif
new file mode 100644
index 0000000000..3fdc2eae15
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateESTW_Zentraleinheit_iDUnterbringung_ID_Unterbringung_Technik_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Adresse_AttributeGroup_nIDC_NID_C_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Adresse_AttributeGroup_nIDC_NID_C_TypeClass.gif
new file mode 100644
index 0000000000..180d9c7786
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Adresse_AttributeGroup_nIDC_NID_C_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Adresse_AttributeGroup_nIDRBC_NID_RBC_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Adresse_AttributeGroup_nIDRBC_NID_RBC_TypeClass.gif
new file mode 100644
index 0000000000..08dc4e6511
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Adresse_AttributeGroup_nIDRBC_NID_RBC_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_Bezeichnung_AttributeGroup_bezeichnungETCSKante_Bezeichnung_ETCS_Kante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_Bezeichnung_AttributeGroup_bezeichnungETCSKante_Bezeichnung_ETCS_Kante_TypeClass.gif
new file mode 100644
index 0000000000..182638d768
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_Bezeichnung_AttributeGroup_bezeichnungETCSKante_Bezeichnung_ETCS_Kante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_bezeichnung_ETCS_Kante_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_bezeichnung_ETCS_Kante_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..22168e68b0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_bezeichnung_ETCS_Kante_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_iDETCSKnotenA_ID_ETCS_Knoten_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_iDETCSKnotenA_ID_ETCS_Knoten_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..dd1ad84421
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_iDETCSKnotenA_ID_ETCS_Knoten_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_iDETCSKnotenB_ID_ETCS_Knoten_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_iDETCSKnotenB_ID_ETCS_Knoten_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..dd1ad84421
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_iDETCSKnotenB_ID_ETCS_Knoten_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_iDRBC_ID_RBC_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_iDRBC_ID_RBC_TypeClass.gif
new file mode 100644
index 0000000000..b0e0b10fe2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_iDRBC_ID_RBC_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_iDStrecke_ID_Strecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_iDStrecke_ID_Strecke_TypeClass.gif
new file mode 100644
index 0000000000..5ac844dc30
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_iDStrecke_ID_Strecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_iDTOPKante_ID_TOP_Kante_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_iDTOPKante_ID_TOP_Kante_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..8f1bd136f7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Kante_iDTOPKante_ID_TOP_Kante_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Knoten_iDTOPKnoten_ID_TOP_Knoten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Knoten_iDTOPKnoten_ID_TOP_Knoten_TypeClass.gif
new file mode 100644
index 0000000000..201754f640
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Knoten_iDTOPKnoten_ID_TOP_Knoten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Knoten_knotenAufTOPKante_Knoten_Auf_TOP_Kante_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Knoten_knotenAufTOPKante_Knoten_Auf_TOP_Kante_AttributeGroup.gif
new file mode 100644
index 0000000000..6102025642
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Knoten_knotenAufTOPKante_Knoten_Auf_TOP_Kante_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Richtungsanzeige_iDFstrFahrweg_ID_Fstr_Fahrweg_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Richtungsanzeige_iDFstrFahrweg_ID_Fstr_Fahrweg_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..0855183b08
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Richtungsanzeige_iDFstrFahrweg_ID_Fstr_Fahrweg_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Richtungsanzeige_iDOertlichkeitInRichtung_ID_Oertlichkeit_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Richtungsanzeige_iDOertlichkeitInRichtung_ID_Oertlichkeit_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..eef19355ec
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Richtungsanzeige_iDOertlichkeitInRichtung_ID_Oertlichkeit_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Richtungsanzeige_textmeldung_Textmeldung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Richtungsanzeige_textmeldung_Textmeldung_TypeClass.gif
new file mode 100644
index 0000000000..5d5000a7f1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Richtungsanzeige_textmeldung_Textmeldung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_Allg_AttributeGroup_ausstiegETCSSperre_Ausstieg_ETCS_Sperre_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_Allg_AttributeGroup_ausstiegETCSSperre_Ausstieg_ETCS_Sperre_TypeClass.gif
new file mode 100644
index 0000000000..28525dfe9c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_Allg_AttributeGroup_ausstiegETCSSperre_Ausstieg_ETCS_Sperre_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_Allg_AttributeGroup_dunkelschaltanstoss_Dunkelschaltanstoss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_Allg_AttributeGroup_dunkelschaltanstoss_Dunkelschaltanstoss_TypeClass.gif
new file mode 100644
index 0000000000..b8a285afb4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_Allg_AttributeGroup_dunkelschaltanstoss_Dunkelschaltanstoss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_Allg_AttributeGroup_einstiegErlaubt_Einstieg_Erlaubt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_Allg_AttributeGroup_einstiegErlaubt_Einstieg_Erlaubt_TypeClass.gif
new file mode 100644
index 0000000000..c200e691ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_Allg_AttributeGroup_einstiegErlaubt_Einstieg_Erlaubt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_Allg_AttributeGroup_gruppenID_Gruppen_ID_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_Allg_AttributeGroup_gruppenID_Gruppen_ID_TypeClass.gif
new file mode 100644
index 0000000000..a4565dfc94
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_Allg_AttributeGroup_gruppenID_Gruppen_ID_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_Allg_AttributeGroup_untergruppenID_Untergruppen_ID_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_Allg_AttributeGroup_untergruppenID_Untergruppen_ID_TypeClass.gif
new file mode 100644
index 0000000000..517abc71fc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_Allg_AttributeGroup_untergruppenID_Untergruppen_ID_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_DWeg_AttributeGroup_dWegIntervall200_DWeg_Intervall_200_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_DWeg_AttributeGroup_dWegIntervall200_DWeg_Intervall_200_TypeClass.gif
new file mode 100644
index 0000000000..5a5dc15912
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_DWeg_AttributeGroup_dWegIntervall200_DWeg_Intervall_200_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_DWeg_AttributeGroup_dWegIntervall50200_DWeg_Intervall_50_200_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_DWeg_AttributeGroup_dWegIntervall50200_DWeg_Intervall_50_200_TypeClass.gif
new file mode 100644
index 0000000000..961acc569e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_DWeg_AttributeGroup_dWegIntervall50200_DWeg_Intervall_50_200_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_DWeg_AttributeGroup_dWegIntervall50_DWeg_Intervall_50_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_DWeg_AttributeGroup_dWegIntervall50_DWeg_Intervall_50_TypeClass.gif
new file mode 100644
index 0000000000..3f292b42f5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_DWeg_AttributeGroup_dWegIntervall50_DWeg_Intervall_50_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_TBV_AttributeGroup_tBVMeldepunkt_TBV_Meldepunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_TBV_AttributeGroup_tBVMeldepunkt_TBV_Meldepunkt_TypeClass.gif
new file mode 100644
index 0000000000..3d8effbd7a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_TBV_AttributeGroup_tBVMeldepunkt_TBV_Meldepunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_TBV_AttributeGroup_tBVTunnelbereichLaenge_TBV_Tunnelbereich_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_TBV_AttributeGroup_tBVTunnelbereichLaenge_TBV_Tunnelbereich_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..1edc5b9b23
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_TBV_AttributeGroup_tBVTunnelbereichLaenge_TBV_Tunnelbereich_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_TBV_AttributeGroup_tBVTunnelsignal_TBV_Tunnelsignal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_TBV_AttributeGroup_tBVTunnelsignal_TBV_Tunnelsignal_TypeClass.gif
new file mode 100644
index 0000000000..5101454d39
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_TBV_AttributeGroup_tBVTunnelsignal_TBV_Tunnelsignal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_eTCSGefahrpunktabstandAbweichend_ETCS_Gefahrpunktabstand_Abweichend_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_eTCSGefahrpunktabstandAbweichend_ETCS_Gefahrpunktabstand_Abweichend_TypeClass.gif
new file mode 100644
index 0000000000..1e49376929
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_eTCSGefahrpunktabstandAbweichend_ETCS_Gefahrpunktabstand_Abweichend_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_eTCSSignalAllg_ETCS_Signal_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_eTCSSignalAllg_ETCS_Signal_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..f8b67b8143
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_eTCSSignalAllg_ETCS_Signal_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_eTCSSignalDWeg_ETCS_Signal_DWeg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_eTCSSignalDWeg_ETCS_Signal_DWeg_AttributeGroup.gif
new file mode 100644
index 0000000000..f2b0a1e074
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_eTCSSignalDWeg_ETCS_Signal_DWeg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_eTCSSignalTBV_ETCS_Signal_TBV_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_eTCSSignalTBV_ETCS_Signal_TBV_AttributeGroup.gif
new file mode 100644
index 0000000000..8cd9cfa90b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_eTCSSignalTBV_ETCS_Signal_TBV_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_iDETCSGefahrpunkt2_ID_Markanter_Punkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_iDETCSGefahrpunkt2_ID_Markanter_Punkt_TypeClass.gif
new file mode 100644
index 0000000000..14bbb4b8b1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_iDETCSGefahrpunkt2_ID_Markanter_Punkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_iDETCSGefahrpunkt_ID_Markanter_Punkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_iDETCSGefahrpunkt_ID_Markanter_Punkt_TypeClass.gif
new file mode 100644
index 0000000000..14bbb4b8b1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_iDETCSGefahrpunkt_ID_Markanter_Punkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_iDHOAFBOA_ID_Technischer_Punkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_iDHOAFBOA_ID_Technischer_Punkt_TypeClass.gif
new file mode 100644
index 0000000000..b4db3ff10e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_iDHOAFBOA_ID_Technischer_Punkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_iDRBC_ID_RBC_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_iDRBC_ID_RBC_TypeClass.gif
new file mode 100644
index 0000000000..b4db3ff10e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_iDRBC_ID_RBC_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_iDSignal_ID_Signal_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_iDSignal_ID_Signal_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..f8b67b8143
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_Signal_iDSignal_ID_Signal_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_MUKA_AttributeGroup_gruppenID_Gruppen_ID_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_MUKA_AttributeGroup_gruppenID_Gruppen_ID_TypeClass.gif
new file mode 100644
index 0000000000..ed30ca57b9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_MUKA_AttributeGroup_gruppenID_Gruppen_ID_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_MUKA_AttributeGroup_untergruppenID_Untergruppen_ID_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_MUKA_AttributeGroup_untergruppenID_Untergruppen_ID_TypeClass.gif
new file mode 100644
index 0000000000..978ee2b380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_MUKA_AttributeGroup_untergruppenID_Untergruppen_ID_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_eTCSWKrMUKA_ETCS_W_Kr_MUKA_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_eTCSWKrMUKA_ETCS_W_Kr_MUKA_AttributeGroup.gif
new file mode 100644
index 0000000000..41c86b3dbc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_eTCSWKrMUKA_ETCS_W_Kr_MUKA_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_iDETCSGefahrpunktNebengleis_ID_Markanter_Punkt_Gleis_Abschluss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_iDETCSGefahrpunktNebengleis_ID_Markanter_Punkt_Gleis_Abschluss_TypeClass.gif
new file mode 100644
index 0000000000..52f734635f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_iDETCSGefahrpunktNebengleis_ID_Markanter_Punkt_Gleis_Abschluss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_iDETCSKnoten_ID_ETCS_Knoten_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_iDETCSKnoten_ID_ETCS_Knoten_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..01d709dc78
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_iDETCSKnoten_ID_ETCS_Knoten_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_iDRBC_ID_RBC_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_iDRBC_ID_RBC_TypeClass.gif
new file mode 100644
index 0000000000..4699099c30
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_iDRBC_ID_RBC_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_iDWKrAnlage_ID_W_Kr_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_iDWKrAnlage_ID_W_Kr_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..04b6132ffb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateETCS_W_Kr_iDWKrAnlage_ID_W_Kr_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_ausgangNr_Ausgang_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_ausgangNr_Ausgang_Nr_TypeClass.gif
new file mode 100644
index 0000000000..3a09ff4812
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_ausgangNr_Ausgang_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_maxUnterbrechungszeit_Max_Unterbrechungszeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_maxUnterbrechungszeit_Max_Unterbrechungszeit_TypeClass.gif
new file mode 100644
index 0000000000..30668e32b1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_maxUnterbrechungszeit_Max_Unterbrechungszeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_nennleistung_Nennleistung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_nennleistung_Nennleistung_TypeClass.gif
new file mode 100644
index 0000000000..59766c7821
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_nennleistung_Nennleistung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_spannungArt_Spannung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_spannungArt_Spannung_Art_TypeClass.gif
new file mode 100644
index 0000000000..e413b8bd5a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_spannungArt_Spannung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_spannungToleranzObere_Spannung_Toleranz_Obere_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_spannungToleranzObere_Spannung_Toleranz_Obere_TypeClass.gif
new file mode 100644
index 0000000000..a91d627903
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_spannungToleranzObere_Spannung_Toleranz_Obere_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_spannungToleranzUntere_Spannung_Toleranz_Untere_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_spannungToleranzUntere_Spannung_Toleranz_Untere_TypeClass.gif
new file mode 100644
index 0000000000..30668e32b1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Ausgang_AttributeGroup_spannungToleranzUntere_Spannung_Toleranz_Untere_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Eingang_AttributeGroup_eingangGepuffert_Eingang_Gepuffert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Eingang_AttributeGroup_eingangGepuffert_Eingang_Gepuffert_TypeClass.gif
new file mode 100644
index 0000000000..b60215a012
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Eingang_AttributeGroup_eingangGepuffert_Eingang_Gepuffert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Eingang_AttributeGroup_energieEingangArt_Energie_Eingang_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Eingang_AttributeGroup_energieEingangArt_Energie_Eingang_Art_TypeClass.gif
new file mode 100644
index 0000000000..c82554161f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Eingang_AttributeGroup_energieEingangArt_Energie_Eingang_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Eingang_AttributeGroup_iDEnergieEingang_ID_Energie_Eingang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Eingang_AttributeGroup_iDEnergieEingang_ID_Energie_Eingang_TypeClass.gif
new file mode 100644
index 0000000000..c82554161f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Eingang_AttributeGroup_iDEnergieEingang_ID_Energie_Eingang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Eingang_AttributeGroup_primaerquelle_Primaerquelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Eingang_AttributeGroup_primaerquelle_Primaerquelle_TypeClass.gif
new file mode 100644
index 0000000000..8f218cb68a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Eingang_AttributeGroup_primaerquelle_Primaerquelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Physisch_AttributeGroup_eVModulArt_EV_Modul_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Physisch_AttributeGroup_eVModulArt_EV_Modul_Art_TypeClass.gif
new file mode 100644
index 0000000000..63feef5ec0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Physisch_AttributeGroup_eVModulArt_EV_Modul_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Physisch_AttributeGroup_eVModulEingang_EV_Modul_Eingang_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Physisch_AttributeGroup_eVModulEingang_EV_Modul_Eingang_AttributeGroup.gif
new file mode 100644
index 0000000000..527759b7de
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Physisch_AttributeGroup_eVModulEingang_EV_Modul_Eingang_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Physisch_AttributeGroup_eVModulTyp_EV_Modul_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Physisch_AttributeGroup_eVModulTyp_EV_Modul_Typ_TypeClass.gif
new file mode 100644
index 0000000000..69679e386e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Physisch_AttributeGroup_eVModulTyp_EV_Modul_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Physisch_AttributeGroup_hersteller_Hersteller_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Physisch_AttributeGroup_hersteller_Hersteller_TypeClass.gif
new file mode 100644
index 0000000000..69679e386e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Physisch_AttributeGroup_hersteller_Hersteller_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Physisch_AttributeGroup_iDElementUnterbringung_ID_Element_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Physisch_AttributeGroup_iDElementUnterbringung_ID_Element_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..0232b556ee
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Physisch_AttributeGroup_iDElementUnterbringung_ID_Element_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Virtuell_AttributeGroup_iDQuellelement_ID_Quellelement_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Virtuell_AttributeGroup_iDQuellelement_ID_Quellelement_TypeClass.gif
new file mode 100644
index 0000000000..42586633e4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_Virtuell_AttributeGroup_iDQuellelement_ID_Quellelement_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_eVModulAusgang_EV_Modul_Ausgang_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_eVModulAusgang_EV_Modul_Ausgang_AttributeGroup.gif
new file mode 100644
index 0000000000..47428eb188
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_eVModulAusgang_EV_Modul_Ausgang_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_eVModulPhysisch_EV_Modul_Physisch_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_eVModulPhysisch_EV_Modul_Physisch_AttributeGroup.gif
new file mode 100644
index 0000000000..cbcbf59b35
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_eVModulPhysisch_EV_Modul_Physisch_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_eVModulVirtuell_EV_Modul_Virtuell_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_eVModulVirtuell_EV_Modul_Virtuell_AttributeGroup.gif
new file mode 100644
index 0000000000..11943a3c05
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEV_Modul_eVModulVirtuell_EV_Modul_Virtuell_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_Allg_AttributeGroup_darstellungGEOPunktBezeichnung_GEO_Punkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_Allg_AttributeGroup_darstellungGEOPunktBezeichnung_GEO_Punkt.gif
new file mode 100644
index 0000000000..3ede289a77
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_Allg_AttributeGroup_darstellungGEOPunktBezeichnung_GEO_Punkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_Allg_AttributeGroup_darstellungGEOPunkt_GEO_Punkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_Allg_AttributeGroup_darstellungGEOPunkt_GEO_Punkt.gif
new file mode 100644
index 0000000000..3ede289a77
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_Allg_AttributeGroup_darstellungGEOPunkt_GEO_Punkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_Allg_AttributeGroup_darstellungPolygonzug_Darstellung_Polygonzug_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_Allg_AttributeGroup_darstellungPolygonzug_Darstellung_Polygonzug_TypeClass.gif
new file mode 100644
index 0000000000..5a3ab4a77c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_Allg_AttributeGroup_darstellungPolygonzug_Darstellung_Polygonzug_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_Allg_AttributeGroup_darstellungRichtungswinkelBezeichnung_Darstellung_Richtungswinkel_Bezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_Allg_AttributeGroup_darstellungRichtungswinkelBezeichnung_Darstellung_Richtungswinkel_Bezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..df3eebc943
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_Allg_AttributeGroup_darstellungRichtungswinkelBezeichnung_Darstellung_Richtungswinkel_Bezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_Allg_AttributeGroup_darstellungRichtungswinkel_Darstellung_Richtungswinkel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_Allg_AttributeGroup_darstellungRichtungswinkel_Darstellung_Richtungswinkel_TypeClass.gif
new file mode 100644
index 0000000000..6910560074
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_Allg_AttributeGroup_darstellungRichtungswinkel_Darstellung_Richtungswinkel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_elementPositionAllg_Element_Position_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_elementPositionAllg_Element_Position_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..83824fbf1f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_elementPositionAllg_Element_Position_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_iDLageplanZustand_ID_Lageplan_Zustand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_iDLageplanZustand_ID_Lageplan_Zustand_TypeClass.gif
new file mode 100644
index 0000000000..bcaa16d301
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_iDLageplanZustand_ID_Lageplan_Zustand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_referenzObjektDarstellung_Referenz_Objekt_Darstellung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_referenzObjektDarstellung_Referenz_Objekt_Darstellung_TypeClass.gif
new file mode 100644
index 0000000000..83824fbf1f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Position_referenzObjektDarstellung_Referenz_Objekt_Darstellung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_Allg_AttributeGroup_fuellung_Fuellung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_Allg_AttributeGroup_fuellung_Fuellung_TypeClass.gif
new file mode 100644
index 0000000000..ab638ae1e1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_Allg_AttributeGroup_fuellung_Fuellung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_Allg_AttributeGroup_linieArt_Linie_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_Allg_AttributeGroup_linieArt_Linie_Art_TypeClass.gif
new file mode 100644
index 0000000000..1875b139ec
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_Allg_AttributeGroup_linieArt_Linie_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_Allg_AttributeGroup_linieFarbwert_Linie_Farbwert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_Allg_AttributeGroup_linieFarbwert_Linie_Farbwert_TypeClass.gif
new file mode 100644
index 0000000000..bebbd3a367
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_Allg_AttributeGroup_linieFarbwert_Linie_Farbwert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_Allg_AttributeGroup_linieSubart_Linie_Subart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_Allg_AttributeGroup_linieSubart_Linie_Subart_TypeClass.gif
new file mode 100644
index 0000000000..17db36513f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_Allg_AttributeGroup_linieSubart_Linie_Subart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_elementStilAllg_Element_Stil_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_elementStilAllg_Element_Stil_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..1d91288bbd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_elementStilAllg_Element_Stil_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_iDLageplanZustand_ID_Lageplan_Zustand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_iDLageplanZustand_ID_Lageplan_Zustand_TypeClass.gif
new file mode 100644
index 0000000000..ec4ba79d49
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_iDLageplanZustand_ID_Lageplan_Zustand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_referenzObjektDarstellung_Referenz_Objekt_Darstellung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_referenzObjektDarstellung_Referenz_Objekt_Darstellung_TypeClass.gif
new file mode 100644
index 0000000000..a16d2960f4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateElement_Stil_referenzObjektDarstellung_Referenz_Objekt_Darstellung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEntgleisungsschuh_AttributeGroup_auswurfrichtung_Auswurfrichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEntgleisungsschuh_AttributeGroup_auswurfrichtung_Auswurfrichtung_TypeClass.gif
new file mode 100644
index 0000000000..2224a426de
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEntgleisungsschuh_AttributeGroup_auswurfrichtung_Auswurfrichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEntgleisungsschuh_AttributeGroup_gleissperrensignal_Gleissperrensignal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEntgleisungsschuh_AttributeGroup_gleissperrensignal_Gleissperrensignal_TypeClass.gif
new file mode 100644
index 0000000000..511800ca23
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEntgleisungsschuh_AttributeGroup_gleissperrensignal_Gleissperrensignal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEntgleisungsschuh_AttributeGroup_schutzschiene_Schutzschiene_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEntgleisungsschuh_AttributeGroup_schutzschiene_Schutzschiene_TypeClass.gif
new file mode 100644
index 0000000000..9ad499cb00
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateEntgleisungsschuh_AttributeGroup_schutzschiene_Schutzschiene_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Allg_AttributeGroup_fMAArt_FMA_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Allg_AttributeGroup_fMAArt_FMA_Art_TypeClass.gif
new file mode 100644
index 0000000000..7732968311
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Allg_AttributeGroup_fMAArt_FMA_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Allg_AttributeGroup_fMAHilffreimeldung_FMA_Hilffreimeldung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Allg_AttributeGroup_fMAHilffreimeldung_FMA_Hilffreimeldung_TypeClass.gif
new file mode 100644
index 0000000000..98c2fa25c6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Allg_AttributeGroup_fMAHilffreimeldung_FMA_Hilffreimeldung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Allg_AttributeGroup_fMAIsolierung_FMA_Isolierung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Allg_AttributeGroup_fMAIsolierung_FMA_Isolierung_TypeClass.gif
new file mode 100644
index 0000000000..4bbf9acacf
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Allg_AttributeGroup_fMAIsolierung_FMA_Isolierung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Allg_AttributeGroup_fMATyp_FMA_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Allg_AttributeGroup_fMATyp_FMA_Typ_TypeClass.gif
new file mode 100644
index 0000000000..7357039c06
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Allg_AttributeGroup_fMATyp_FMA_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Bezeichnung_AttributeGroup_bezeichnungKennbuchstabe_Bezeichnung_Kennbuchstabe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Bezeichnung_AttributeGroup_bezeichnungKennbuchstabe_Bezeichnung_Kennbuchstabe_TypeClass.gif
new file mode 100644
index 0000000000..e74be5892c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Bezeichnung_AttributeGroup_bezeichnungKennbuchstabe_Bezeichnung_Kennbuchstabe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_bettungswiderstand_Bettungswiderstand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_bettungswiderstand_Bettungswiderstand_TypeClass.gif
new file mode 100644
index 0000000000..bccc676963
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_bettungswiderstand_Bettungswiderstand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeBeeinflusst_FMA_Laenge_Beeinflusst_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeBeeinflusst_FMA_Laenge_Beeinflusst_TypeClass.gif
new file mode 100644
index 0000000000..9e7bdecbde
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeBeeinflusst_FMA_Laenge_Beeinflusst_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeE1_FMA_Laenge_E1_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeE1_FMA_Laenge_E1_TypeClass.gif
new file mode 100644
index 0000000000..11ae8a1c63
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeE1_FMA_Laenge_E1_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeE2_FMA_Laenge_E2_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeE2_FMA_Laenge_E2_TypeClass.gif
new file mode 100644
index 0000000000..678e9718d6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeE2_FMA_Laenge_E2_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeE3_FMA_Laenge_E3_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeE3_FMA_Laenge_E3_TypeClass.gif
new file mode 100644
index 0000000000..f3ac619a96
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeE3_FMA_Laenge_E3_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeS_FMA_Laenge_S_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeS_FMA_Laenge_S_TypeClass.gif
new file mode 100644
index 0000000000..b7e2f30c26
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeS_FMA_Laenge_S_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaenge_FMA_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaenge_FMA_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..842360a340
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaenge_FMA_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Kaskade_AttributeGroup_fMAKaskadeBezeichnung_FMA_Kaskade_Bezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Kaskade_AttributeGroup_fMAKaskadeBezeichnung_FMA_Kaskade_Bezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..ba4aa919c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Kaskade_AttributeGroup_fMAKaskadeBezeichnung_FMA_Kaskade_Bezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Kaskade_AttributeGroup_fMAKaskadeEinzelauswertung_FMA_Kaskade_Einzelauswertung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Kaskade_AttributeGroup_fMAKaskadeEinzelauswertung_FMA_Kaskade_Einzelauswertung_TypeClass.gif
new file mode 100644
index 0000000000..9a2ca8b1cd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Kaskade_AttributeGroup_fMAKaskadeEinzelauswertung_FMA_Kaskade_Einzelauswertung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Uebertragung_FMinfo_AttributeGroup_iDUebertragungFMinfo_ID_Aussenelementansteuerung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Uebertragung_FMinfo_AttributeGroup_iDUebertragungFMinfo_ID_Aussenelementansteuerung_TypeClass.gif
new file mode 100644
index 0000000000..fc3cd12da1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Uebertragung_FMinfo_AttributeGroup_iDUebertragungFMinfo_ID_Aussenelementansteuerung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Uebertragung_FMinfo_AttributeGroup_uebertragungFMinfoRichtung_Uebertragung_FMinfo_Richtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Uebertragung_FMinfo_AttributeGroup_uebertragungFMinfoRichtung_Uebertragung_FMinfo_Richtung_TypeClass.gif
new file mode 100644
index 0000000000..af44325179
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Uebertragung_FMinfo_AttributeGroup_uebertragungFMinfoRichtung_Uebertragung_FMinfo_Richtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Uebertragung_FMinfo_AttributeGroup_uebertragungFMinfoTyp_Uebertragung_FMinfo_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Uebertragung_FMinfo_AttributeGroup_uebertragungFMinfoTyp_Uebertragung_FMinfo_Typ_TypeClass.gif
new file mode 100644
index 0000000000..caaed52e14
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_Uebertragung_FMinfo_AttributeGroup_uebertragungFMinfoTyp_Uebertragung_FMinfo_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_bezeichnung_FMA_Anlage_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_bezeichnung_FMA_Anlage_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..16048d0b3f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_bezeichnung_FMA_Anlage_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_fMAAnlageAllg_FMA_Anlage_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_fMAAnlageAllg_FMA_Anlage_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..d1da83e1fb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_fMAAnlageAllg_FMA_Anlage_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_fMAAnlageElektrMerkmale_FMA_Anlage_Elektr_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_fMAAnlageElektrMerkmale_FMA_Anlage_Elektr_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..1826517dd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_fMAAnlageElektrMerkmale_FMA_Anlage_Elektr_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_fMAAnlageKaskade_FMA_Anlage_Kaskade_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_fMAAnlageKaskade_FMA_Anlage_Kaskade_AttributeGroup.gif
new file mode 100644
index 0000000000..4aa68ea42a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_fMAAnlageKaskade_FMA_Anlage_Kaskade_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_fMAAnlageUebertragungFMinfo_FMA_Anlage_Uebertragung_FMinfo_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_fMAAnlageUebertragungFMinfo_FMA_Anlage_Uebertragung_FMinfo_AttributeGroup.gif
new file mode 100644
index 0000000000..7253e5b3dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_fMAAnlageUebertragungFMinfo_FMA_Anlage_Uebertragung_FMinfo_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_iDGleisAbschnitt_ID_Gleis_Abschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_iDGleisAbschnitt_ID_Gleis_Abschnitt_TypeClass.gif
new file mode 100644
index 0000000000..2cafabf803
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_iDGleisAbschnitt_ID_Gleis_Abschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_iDGleisfreimeldeInnenanlage_ID_Aussenelementansteuerung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_iDGleisfreimeldeInnenanlage_ID_Aussenelementansteuerung_TypeClass.gif
new file mode 100644
index 0000000000..518724286a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Anlage_iDGleisfreimeldeInnenanlage_ID_Aussenelementansteuerung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_Allg_AttributeGroup_fMAElementArt_FMA_Element_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_Allg_AttributeGroup_fMAElementArt_FMA_Element_Art_TypeClass.gif
new file mode 100644
index 0000000000..c4b2d24d6f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_Allg_AttributeGroup_fMAElementArt_FMA_Element_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_Allg_AttributeGroup_fMAElementSeilanzahl_FMA_Element_Seilanzahl_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_Allg_AttributeGroup_fMAElementSeilanzahl_FMA_Element_Seilanzahl_TypeClass.gif
new file mode 100644
index 0000000000..3d6ebc8241
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_Allg_AttributeGroup_fMAElementSeilanzahl_FMA_Element_Seilanzahl_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_Allg_AttributeGroup_fMAElementSeiltyp_FMA_Element_Seiltyp_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_Allg_AttributeGroup_fMAElementSeiltyp_FMA_Element_Seiltyp_TypeClass.gif
new file mode 100644
index 0000000000..98e9acdecb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_Allg_AttributeGroup_fMAElementSeiltyp_FMA_Element_Seiltyp_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_Anschluss_AttributeGroup_fMAAnschlussBezeichnung_FMA_Anschluss_Bezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_Anschluss_AttributeGroup_fMAAnschlussBezeichnung_FMA_Anschluss_Bezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..1076882a3e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_Anschluss_AttributeGroup_fMAAnschlussBezeichnung_FMA_Anschluss_Bezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_Anschluss_AttributeGroup_fMAAnschlussSpeiserichtung_FMA_Anschluss_Speiserichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_Anschluss_AttributeGroup_fMAAnschlussSpeiserichtung_FMA_Anschluss_Speiserichtung_TypeClass.gif
new file mode 100644
index 0000000000..1e449c6284
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_Anschluss_AttributeGroup_fMAAnschlussSpeiserichtung_FMA_Anschluss_Speiserichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_fMAElementAllg_FMA_Element_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_fMAElementAllg_FMA_Element_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..a26ec40d03
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_fMAElementAllg_FMA_Element_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_fMAElementAnschluss_FMA_Element_Anschluss_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_fMAElementAnschluss_FMA_Element_Anschluss_AttributeGroup.gif
new file mode 100644
index 0000000000..3b3bc875d1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_fMAElementAnschluss_FMA_Element_Anschluss_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_iDFMAAnlage_ID_FMA_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_iDFMAAnlage_ID_FMA_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..6102025642
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Element_iDFMAAnlage_ID_FMA_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_Achszaehlpunkt_AttributeGroup_fMAKomponenteSchienenprofil_FMA_Komponente_Schienenprofil_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_Achszaehlpunkt_AttributeGroup_fMAKomponenteSchienenprofil_FMA_Komponente_Schienenprofil_TypeClass.gif
new file mode 100644
index 0000000000..52612ca01b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_Achszaehlpunkt_AttributeGroup_fMAKomponenteSchienenprofil_FMA_Komponente_Schienenprofil_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_Achszaehlpunkt_AttributeGroup_fMAKomponenteStromversorgung_FMA_Komponente_Stromversorgung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_Achszaehlpunkt_AttributeGroup_fMAKomponenteStromversorgung_FMA_Komponente_Stromversorgung_TypeClass.gif
new file mode 100644
index 0000000000..40f87e1316
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_Achszaehlpunkt_AttributeGroup_fMAKomponenteStromversorgung_FMA_Komponente_Stromversorgung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_Achszaehlpunkt_AttributeGroup_fMAKomponenteTyp_FMA_Komponente_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_Achszaehlpunkt_AttributeGroup_fMAKomponenteTyp_FMA_Komponente_Typ_TypeClass.gif
new file mode 100644
index 0000000000..a20a979222
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_Achszaehlpunkt_AttributeGroup_fMAKomponenteTyp_FMA_Komponente_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_Achszaehlpunkt_AttributeGroup_iDEnergie_ID_Aussenelementansteuerung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_Achszaehlpunkt_AttributeGroup_iDEnergie_ID_Aussenelementansteuerung_TypeClass.gif
new file mode 100644
index 0000000000..6613451ef7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_Achszaehlpunkt_AttributeGroup_iDEnergie_ID_Aussenelementansteuerung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_Achszaehlpunkt_AttributeGroup_iDInformation_ID_Aussenelementansteuerung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_Achszaehlpunkt_AttributeGroup_iDInformation_ID_Aussenelementansteuerung_TypeClass.gif
new file mode 100644
index 0000000000..6613451ef7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_Achszaehlpunkt_AttributeGroup_iDInformation_ID_Aussenelementansteuerung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_bezeichnung_Bezeichnung_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_bezeichnung_Bezeichnung_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..bb0eee9916
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_bezeichnung_Bezeichnung_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_fMAKomponenteAchszaehlpunkt_FMA_Komponente_Achszaehlpunkt_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_fMAKomponenteAchszaehlpunkt_FMA_Komponente_Achszaehlpunkt_AttributeGroup.gif
new file mode 100644
index 0000000000..a9793d76a2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_fMAKomponenteAchszaehlpunkt_FMA_Komponente_Achszaehlpunkt_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_fMAKomponenteArt_FMA_Komponente_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_fMAKomponenteArt_FMA_Komponente_Art_TypeClass.gif
new file mode 100644
index 0000000000..7d7c59b0d4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_fMAKomponenteArt_FMA_Komponente_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_iDBezugspunkt_ID_Bezugspunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_iDBezugspunkt_ID_Bezugspunkt_TypeClass.gif
new file mode 100644
index 0000000000..c884396ac2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_iDBezugspunkt_ID_Bezugspunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_iDFMAgrenze_ID_FMA_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_iDFMAgrenze_ID_FMA_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..b318df6d95
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFMA_Komponente_iDFMAgrenze_ID_FMA_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Anschaltbedingung_bedingungBesondere_Bedingung_Besondere_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Anschaltbedingung_bedingungBesondere_Bedingung_Besondere_AttributeGroup.gif
new file mode 100644
index 0000000000..f4ffabb068
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Anschaltbedingung_bedingungBesondere_Bedingung_Besondere_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Anschaltbedingung_bedingungPZB_Bedingung_PZB_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Anschaltbedingung_bedingungPZB_Bedingung_PZB_AttributeGroup.gif
new file mode 100644
index 0000000000..d9ee5d095f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Anschaltbedingung_bedingungPZB_Bedingung_PZB_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Anschaltbedingung_bedingungSignal_Bedingung_Signal_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Anschaltbedingung_bedingungSignal_Bedingung_Signal_AttributeGroup.gif
new file mode 100644
index 0000000000..dd1ad84421
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Anschaltbedingung_bedingungSignal_Bedingung_Signal_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Anschaltbedingung_bedingungSonstige_Bedingung_Sonstige_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Anschaltbedingung_bedingungSonstige_Bedingung_Sonstige_AttributeGroup.gif
new file mode 100644
index 0000000000..8a81cf6c74
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Anschaltbedingung_bedingungSonstige_Bedingung_Sonstige_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Anschaltbedingung_bedingungWeiche_Bedingung_Weiche_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Anschaltbedingung_bedingungWeiche_Bedingung_Weiche_AttributeGroup.gif
new file mode 100644
index 0000000000..8a81cf6c74
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Anschaltbedingung_bedingungWeiche_Bedingung_Weiche_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_abstandBesLangerEinfahrweg_Abstand_Bes_Langer_Einfahrweg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_abstandBesLangerEinfahrweg_Abstand_Bes_Langer_Einfahrweg_TypeClass.gif
new file mode 100644
index 0000000000..e29b3131e4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_abstandBesLangerEinfahrweg_Abstand_Bes_Langer_Einfahrweg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_dPTypVLa_DP_Typ_V_La_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_dPTypVLa_DP_Typ_V_La_TypeClass.gif
new file mode 100644
index 0000000000..68ec6667e2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_dPTypVLa_DP_Typ_V_La_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_eSGIndividuelleMerkmale_ESG_Individuelle_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_eSGIndividuelleMerkmale_ESG_Individuelle_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..d8aebba9fe
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_eSGIndividuelleMerkmale_ESG_Individuelle_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_eSGSpezifischeMerkmale_ESG_Spezifische_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_eSGSpezifischeMerkmale_ESG_Spezifische_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..efad8ecbc0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_eSGSpezifischeMerkmale_ESG_Spezifische_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_iDMassgebendesZielsignal_ID_Signal_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_iDMassgebendesZielsignal_ID_Signal_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..47d9aaf7c8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_iDMassgebendesZielsignal_ID_Signal_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_individualisierungWeitere_Individualisierung_Weitere_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_individualisierungWeitere_Individualisierung_Weitere_TypeClass.gif
new file mode 100644
index 0000000000..483684f757
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_individualisierungWeitere_Individualisierung_Weitere_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_laengeGestufteVSignalisierung_Laenge_Gestufte_V_Signalisierung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_laengeGestufteVSignalisierung_Laenge_Gestufte_V_Signalisierung_TypeClass.gif
new file mode 100644
index 0000000000..90a8446b93
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_laengeGestufteVSignalisierung_Laenge_Gestufte_V_Signalisierung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_nIDTSR_NID_TSR_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_nIDTSR_NID_TSR_TypeClass.gif
new file mode 100644
index 0000000000..ce7fc4f17f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_nIDTSR_NID_TSR_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_projektierungsfall_Projektierungsfall_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_projektierungsfall_Projektierungsfall_TypeClass.gif
new file mode 100644
index 0000000000..f3b972dc7e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_projektierungsfall_Projektierungsfall_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_telegrammnummer_Telegrammnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_telegrammnummer_Telegrammnummer_TypeClass.gif
new file mode 100644
index 0000000000..2cbcfe13f5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_telegrammnummer_Telegrammnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_ueberwachungLaenge_Ueberwachung_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_ueberwachungLaenge_Ueberwachung_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..ae6b2e6429
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_ueberwachungLaenge_Ueberwachung_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_vStart_V_Start_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_vStart_V_Start_TypeClass.gif
new file mode 100644
index 0000000000..9dba3d9c12
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_vStart_V_Start_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_vZiel_V_Ziel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_vZiel_V_Ziel_TypeClass.gif
new file mode 100644
index 0000000000..e43add45e3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_vZiel_V_Ziel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_vorsignalabstand_Vorsignalabstand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_vorsignalabstand_Vorsignalabstand_TypeClass.gif
new file mode 100644
index 0000000000..e80ff642f9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ESG_Merkmale_AttributeGroup_vorsignalabstand_Vorsignalabstand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_L2_Merkmale_AttributeGroup_fTETCSL2Typ_FT_ETCS_L2_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_L2_Merkmale_AttributeGroup_fTETCSL2Typ_FT_ETCS_L2_Typ_TypeClass.gif
new file mode 100644
index 0000000000..f54edc635d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_L2_Merkmale_AttributeGroup_fTETCSL2Typ_FT_ETCS_L2_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_L2_Merkmale_AttributeGroup_vBCKennung_VBC_Kennung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_L2_Merkmale_AttributeGroup_vBCKennung_VBC_Kennung_TypeClass.gif
new file mode 100644
index 0000000000..80895bd798
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_L2_Merkmale_AttributeGroup_vBCKennung_VBC_Kennung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_L2_Merkmale_AttributeGroup_vBCNIDC_VBC_NID_C_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_L2_Merkmale_AttributeGroup_vBCNIDC_VBC_NID_C_TypeClass.gif
new file mode 100644
index 0000000000..f956193443
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_L2_Merkmale_AttributeGroup_vBCNIDC_VBC_NID_C_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_L2_Merkmale_AttributeGroup_vBCSetzen_VBC_Setzen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_L2_Merkmale_AttributeGroup_vBCSetzen_VBC_Setzen_TypeClass.gif
new file mode 100644
index 0000000000..80895bd798
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_L2_Merkmale_AttributeGroup_vBCSetzen_VBC_Setzen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_L2_Merkmale_AttributeGroup_vBCTimer_VBC_Timer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_L2_Merkmale_AttributeGroup_vBCTimer_VBC_Timer_TypeClass.gif
new file mode 100644
index 0000000000..20b24c94f6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_L2_Merkmale_AttributeGroup_vBCTimer_VBC_Timer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Merkmale_AttributeGroup_fTETCSTransPaket41_FT_ETCS_Trans_Paket_41_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Merkmale_AttributeGroup_fTETCSTransPaket41_FT_ETCS_Trans_Paket_41_AttributeGroup.gif
new file mode 100644
index 0000000000..7a99bf2680
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Merkmale_AttributeGroup_fTETCSTransPaket41_FT_ETCS_Trans_Paket_41_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Merkmale_AttributeGroup_fTETCSTransPaketN_FT_ETCS_Trans_Paket_N_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Merkmale_AttributeGroup_fTETCSTransPaketN_FT_ETCS_Trans_Paket_N_AttributeGroup.gif
new file mode 100644
index 0000000000..c45d7459f2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Merkmale_AttributeGroup_fTETCSTransPaketN_FT_ETCS_Trans_Paket_N_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_41_AttributeGroup_dLEVELTR_D_LEVELTR_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_41_AttributeGroup_dLEVELTR_D_LEVELTR_TypeClass.gif
new file mode 100644
index 0000000000..d748696ff3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_41_AttributeGroup_dLEVELTR_D_LEVELTR_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_41_AttributeGroup_lACKLEVELTR_L_ACKLEVELTR_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_41_AttributeGroup_lACKLEVELTR_L_ACKLEVELTR_TypeClass.gif
new file mode 100644
index 0000000000..575ddea7f9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_41_AttributeGroup_lACKLEVELTR_L_ACKLEVELTR_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_41_AttributeGroup_mLEVELTR_M_LEVELTR_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_41_AttributeGroup_mLEVELTR_M_LEVELTR_TypeClass.gif
new file mode 100644
index 0000000000..9e4b0fb720
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_41_AttributeGroup_mLEVELTR_M_LEVELTR_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_41_AttributeGroup_nIDSTM_NID_STM_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_41_AttributeGroup_nIDSTM_NID_STM_TypeClass.gif
new file mode 100644
index 0000000000..ebd55acfa4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_41_AttributeGroup_nIDSTM_NID_STM_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_eTCSPaketnummer_ETCS_Paketnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_eTCSPaketnummer_ETCS_Paketnummer_TypeClass.gif
new file mode 100644
index 0000000000..f76ecf0406
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_eTCSPaketnummer_ETCS_Paketnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_eTCSParErlaeuterung_ETCS_Par_Erlaeuterung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_eTCSParErlaeuterung_ETCS_Par_Erlaeuterung_TypeClass.gif
new file mode 100644
index 0000000000..a35176a55f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_eTCSParErlaeuterung_ETCS_Par_Erlaeuterung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_eTCSParametername_ETCS_Parametername_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_eTCSParametername_ETCS_Parametername_TypeClass.gif
new file mode 100644
index 0000000000..887857a769
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_eTCSParametername_ETCS_Parametername_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_eTCSParameterwert_ETCS_Parameterwert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_eTCSParameterwert_ETCS_Parameterwert_TypeClass.gif
new file mode 100644
index 0000000000..0056d63c98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_eTCSParameterwert_ETCS_Parameterwert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_rekursion2Nr_Rekursion_2_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_rekursion2Nr_Rekursion_2_Nr_TypeClass.gif
new file mode 100644
index 0000000000..5da4564cd4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_rekursion2Nr_Rekursion_2_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_rekursionNr_Rekursion_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_rekursionNr_Rekursion_Nr_TypeClass.gif
new file mode 100644
index 0000000000..086cf80971
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ETCS_Trans_Paket_N_AttributeGroup_rekursionNr_Rekursion_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_Allg_AttributeGroup_fWTeilNummer_FW_Teil_Nummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_Allg_AttributeGroup_fWTeilNummer_FW_Teil_Nummer_TypeClass.gif
new file mode 100644
index 0000000000..e5d4d731cc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_Allg_AttributeGroup_fWTeilNummer_FW_Teil_Nummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_Allg_AttributeGroup_umfahrstrasse_Umfahrstrasse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_Allg_AttributeGroup_umfahrstrasse_Umfahrstrasse_TypeClass.gif
new file mode 100644
index 0000000000..d5f8c8dbcf
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_Allg_AttributeGroup_umfahrstrasse_Umfahrstrasse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_Allg_AttributeGroup_zielIstFahrwegende_Ziel_Ist_Fahrwegende_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_Allg_AttributeGroup_zielIstFahrwegende_Ziel_Ist_Fahrwegende_TypeClass.gif
new file mode 100644
index 0000000000..801a95c4be
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_Allg_AttributeGroup_zielIstFahrwegende_Ziel_Ist_Fahrwegende_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_fTFahrwegTeilAllg_FT_Fahrweg_Teil_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_fTFahrwegTeilAllg_FT_Fahrweg_Teil_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..5ab79ac60e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_fTFahrwegTeilAllg_FT_Fahrweg_Teil_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_iDStartDatenpunkt_ID_Datenpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_iDStartDatenpunkt_ID_Datenpunkt_TypeClass.gif
new file mode 100644
index 0000000000..bb1ce3a459
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_iDStartDatenpunkt_ID_Datenpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_iDStartSignal_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_iDStartSignal_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..d1decb7e81
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_iDStartSignal_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_iDZielDatenpunkt_ID_Datenpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_iDZielDatenpunkt_ID_Datenpunkt_TypeClass.gif
new file mode 100644
index 0000000000..bb1ce3a459
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_iDZielDatenpunkt_ID_Datenpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_iDZielSignal_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_iDZielSignal_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..d1decb7e81
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_iDZielSignal_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_startWElement_Start_W_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_startWElement_Start_W_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..cab007e121
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_startWElement_Start_W_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_zielWElement_Ziel_W_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_zielWElement_Ziel_W_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..352731fa17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teil_zielWElement_Ziel_W_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teile_AttributeGroup_iDFTFahrwegTeil_ID_FT_Fahrweg_Teil_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teile_AttributeGroup_iDFTFahrwegTeil_ID_FT_Fahrweg_Teil_TypeClass.gif
new file mode 100644
index 0000000000..25b27d1de6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teile_AttributeGroup_iDFTFahrwegTeil_ID_FT_Fahrweg_Teil_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teile_AttributeGroup_istBefahren_Ist_Befahren_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teile_AttributeGroup_istBefahren_Ist_Befahren_TypeClass.gif
new file mode 100644
index 0000000000..c8277f56e4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_Fahrweg_Teile_AttributeGroup_istBefahren_Ist_Befahren_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_deltaVGES_Delta_VGES_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_deltaVGES_Delta_VGES_TypeClass.gif
new file mode 100644
index 0000000000..111d8ad337
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_deltaVGES_Delta_VGES_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_deltaVLES_Delta_VLES_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_deltaVLES_Delta_VLES_TypeClass.gif
new file mode 100644
index 0000000000..78645ad2b5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_deltaVLES_Delta_VLES_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_deltaVZES_Delta_VZES_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_deltaVZES_Delta_VZES_TypeClass.gif
new file mode 100644
index 0000000000..c715ea91e1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_deltaVZES_Delta_VZES_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_fTGNTPunktart_FT_GNT_Punktart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_fTGNTPunktart_FT_GNT_Punktart_TypeClass.gif
new file mode 100644
index 0000000000..2dc1706b6c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_fTGNTPunktart_FT_GNT_Punktart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_lLA_LLA_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_lLA_LLA_TypeClass.gif
new file mode 100644
index 0000000000..14d8d5f681
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_lLA_LLA_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_neigung_Neigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_neigung_Neigung_TypeClass.gif
new file mode 100644
index 0000000000..14febdf9e2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_neigung_Neigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_sBE_SBE_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_sBE_SBE_TypeClass.gif
new file mode 100644
index 0000000000..253bf552e3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_sBE_SBE_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_sTZ_STZ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_sTZ_STZ_TypeClass.gif
new file mode 100644
index 0000000000..2dc1706b6c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_sTZ_STZ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_vGR_VGR_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_vGR_VGR_TypeClass.gif
new file mode 100644
index 0000000000..abda75555e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_vGR_VGR_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_vLA_VLA_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_vLA_VLA_TypeClass.gif
new file mode 100644
index 0000000000..1c4ad4346d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_vLA_VLA_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_vZ_VZ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_vZ_VZ_TypeClass.gif
new file mode 100644
index 0000000000..5c5dfd48dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_vZ_VZ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_zLA_ZLA_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_zLA_ZLA_TypeClass.gif
new file mode 100644
index 0000000000..3dc627e852
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_GNT_Merkmale_AttributeGroup_zLA_ZLA_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_fTHinweisFunktion_FT_Hinweis_Funktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_fTHinweisFunktion_FT_Hinweis_Funktion_TypeClass.gif
new file mode 100644
index 0000000000..e30f5c2e17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_fTHinweisFunktion_FT_Hinweis_Funktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_fTZBSMerkmaleLa_FT_ZBS_Merkmale_La_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_fTZBSMerkmaleLa_FT_ZBS_Merkmale_La_AttributeGroup.gif
new file mode 100644
index 0000000000..99ae775708
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_fTZBSMerkmaleLa_FT_ZBS_Merkmale_La_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_fTZBSTyp_FT_ZBS_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_fTZBSTyp_FT_ZBS_Typ_TypeClass.gif
new file mode 100644
index 0000000000..05898ec8ea
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_fTZBSTyp_FT_ZBS_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_lMG_LM_G_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_lMG_LM_G_TypeClass.gif
new file mode 100644
index 0000000000..c68d567102
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_lMG_LM_G_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_laenge1_Laenge_1_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_laenge1_Laenge_1_TypeClass.gif
new file mode 100644
index 0000000000..dd660df667
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_laenge1_Laenge_1_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_massgebendeNeig1_Massgebende_Neig_1_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_massgebendeNeig1_Massgebende_Neig_1_TypeClass.gif
new file mode 100644
index 0000000000..c38004ea5a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_massgebendeNeig1_Massgebende_Neig_1_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_massgebendeNeigSchutzstrecke_Massgebende_Neig_Schutzstrecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_massgebendeNeigSchutzstrecke_Massgebende_Neig_Schutzstrecke_TypeClass.gif
new file mode 100644
index 0000000000..286bf8de0f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_massgebendeNeigSchutzstrecke_Massgebende_Neig_Schutzstrecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_mastschild_Mastschild_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_mastschild_Mastschild_TypeClass.gif
new file mode 100644
index 0000000000..96ba29a8d7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_mastschild_Mastschild_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_schutzstreckeErforderlich_Schutzstrecke_Erforderlich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_schutzstreckeErforderlich_Schutzstrecke_Erforderlich_TypeClass.gif
new file mode 100644
index 0000000000..98225e0fd0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_schutzstreckeErforderlich_Schutzstrecke_Erforderlich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_schutzstreckeVorhanden_Schutzstrecke_Vorhanden_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_schutzstreckeVorhanden_Schutzstrecke_Vorhanden_TypeClass.gif
new file mode 100644
index 0000000000..c721189bd1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_schutzstreckeVorhanden_Schutzstrecke_Vorhanden_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_telegrammnummer_Telegrammnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_telegrammnummer_Telegrammnummer_TypeClass.gif
new file mode 100644
index 0000000000..c68d567102
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_telegrammnummer_Telegrammnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_ueberwachungLaenge_Ueberwachung_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_ueberwachungLaenge_Ueberwachung_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..56b3f19943
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_ueberwachungLaenge_Ueberwachung_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vBefehlR_V_Befehl_R_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vBefehlR_V_Befehl_R_TypeClass.gif
new file mode 100644
index 0000000000..c958497ba3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vBefehlR_V_Befehl_R_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vBefehlZ_V_Befehl_Z_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vBefehlZ_V_Befehl_Z_TypeClass.gif
new file mode 100644
index 0000000000..99ae775708
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vBefehlZ_V_Befehl_Z_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vFrei_V_Frei_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vFrei_V_Frei_TypeClass.gif
new file mode 100644
index 0000000000..53587f1416
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vFrei_V_Frei_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vGR1_VGR_1_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vGR1_VGR_1_TypeClass.gif
new file mode 100644
index 0000000000..d5cbc02e26
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vGR1_VGR_1_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vGR2_VGR_2_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vGR2_VGR_2_TypeClass.gif
new file mode 100644
index 0000000000..d09eef97cf
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vGR2_VGR_2_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vZulStrecke_V_Zul_Strecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vZulStrecke_V_Zul_Strecke_TypeClass.gif
new file mode 100644
index 0000000000..56b3f19943
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_AttributeGroup_vZulStrecke_V_Zul_Strecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichDistanz_ZBS_La_Bereich_Distanz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichDistanz_ZBS_La_Bereich_Distanz_TypeClass.gif
new file mode 100644
index 0000000000..84d142daee
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichDistanz_ZBS_La_Bereich_Distanz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichGeschwindigkeit_ZBS_La_Bereich_Geschwindigkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichGeschwindigkeit_ZBS_La_Bereich_Geschwindigkeit_TypeClass.gif
new file mode 100644
index 0000000000..b93b3d2f5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichGeschwindigkeit_ZBS_La_Bereich_Geschwindigkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichLaenge_ZBS_La_Bereich_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichLaenge_ZBS_La_Bereich_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..f8b67b8143
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichLaenge_ZBS_La_Bereich_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichNeigung_ZBS_La_Bereich_Neigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichNeigung_ZBS_La_Bereich_Neigung_TypeClass.gif
new file mode 100644
index 0000000000..f2b0a1e074
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichNeigung_ZBS_La_Bereich_Neigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachdaten_AttributeGroup_ausgabeFachdaten_Ausgabe_Fachdaten.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachdaten_AttributeGroup_ausgabeFachdaten_Ausgabe_Fachdaten.gif
new file mode 100644
index 0000000000..229e2e19a4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachdaten_AttributeGroup_ausgabeFachdaten_Ausgabe_Fachdaten.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTESGMerkmale_FT_ESG_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTESGMerkmale_FT_ESG_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..6dffd43dc6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTESGMerkmale_FT_ESG_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTETCSL2Merkmale_FT_ETCS_L2_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTETCSL2Merkmale_FT_ETCS_L2_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..7effa79008
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTETCSL2Merkmale_FT_ETCS_L2_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTETCSTransMerkmale_FT_ETCS_Trans_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTETCSTransMerkmale_FT_ETCS_Trans_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..a90e8244c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTETCSTransMerkmale_FT_ETCS_Trans_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTFahrwegTeile_FT_Fahrweg_Teile_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTFahrwegTeile_FT_Fahrweg_Teile_AttributeGroup.gif
new file mode 100644
index 0000000000..3159bcce48
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTFahrwegTeile_FT_Fahrweg_Teile_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTGNTMerkmale_FT_GNT_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTGNTMerkmale_FT_GNT_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..5e644e95f3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTGNTMerkmale_FT_GNT_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTZBSMerkmale_FT_ZBS_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTZBSMerkmale_FT_ZBS_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..3159bcce48
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_fTZBSMerkmale_FT_ZBS_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_iDDokuTelegrammkodierung_ID_AnhangBearbeitungsvermerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_iDDokuTelegrammkodierung_ID_AnhangBearbeitungsvermerk_TypeClass.gif
new file mode 100644
index 0000000000..7943912208
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_iDDokuTelegrammkodierung_ID_AnhangBearbeitungsvermerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_wirkrichtungInDatenpunkt_Wirkrichtung_In_Datenpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_wirkrichtungInDatenpunkt_Wirkrichtung_In_Datenpunkt_TypeClass.gif
new file mode 100644
index 0000000000..cbc1355498
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFachtelegramm_wirkrichtungInDatenpunkt_Wirkrichtung_In_Datenpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Freimelde_Zuordnung_flaRaumFreimeldung_Fla_Raum_Freimeldung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Freimelde_Zuordnung_flaRaumFreimeldung_Fla_Raum_Freimeldung_TypeClass.gif
new file mode 100644
index 0000000000..bdcca7e0a3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Freimelde_Zuordnung_flaRaumFreimeldung_Fla_Raum_Freimeldung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Freimelde_Zuordnung_iDFMAAnlage_ID_FMA_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Freimelde_Zuordnung_iDFMAAnlage_ID_FMA_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..9b71c63a9c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Freimelde_Zuordnung_iDFMAAnlage_ID_FMA_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Freimelde_Zuordnung_iDFlaSchutz_ID_Fla_Schutz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Freimelde_Zuordnung_iDFlaSchutz_ID_Fla_Schutz_TypeClass.gif
new file mode 100644
index 0000000000..427fb585ea
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Freimelde_Zuordnung_iDFlaSchutz_ID_Fla_Schutz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Anforderer_AttributeGroup_eKWKrAnteil_EKW_Kr_Anteil_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Anforderer_AttributeGroup_eKWKrAnteil_EKW_Kr_Anteil_TypeClass.gif
new file mode 100644
index 0000000000..1365cd0748
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Anforderer_AttributeGroup_eKWKrAnteil_EKW_Kr_Anteil_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Anforderer_AttributeGroup_fahrtUeber_Fahrt_Ueber_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Anforderer_AttributeGroup_fahrtUeber_Fahrt_Ueber_TypeClass.gif
new file mode 100644
index 0000000000..06323916fd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Anforderer_AttributeGroup_fahrtUeber_Fahrt_Ueber_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Anforderer_AttributeGroup_iDAnfordererElement_ID_Anforderer_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Anforderer_AttributeGroup_iDAnfordererElement_ID_Anforderer_Element_TypeClass.gif
new file mode 100644
index 0000000000..2d14ab0224
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Anforderer_AttributeGroup_iDAnfordererElement_ID_Anforderer_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Signal_AttributeGroup_flaSignalZielsperrung_Fla_Signal_Zielsperrung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Signal_AttributeGroup_flaSignalZielsperrung_Fla_Signal_Zielsperrung_TypeClass.gif
new file mode 100644
index 0000000000..f0eecfb27d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Signal_AttributeGroup_flaSignalZielsperrung_Fla_Signal_Zielsperrung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Signal_AttributeGroup_iDFlaSignal_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Signal_AttributeGroup_iDFlaSignal_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..73aa62a0d2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Signal_AttributeGroup_iDFlaSignal_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_W_Gsp_AttributeGroup_flaWLage_Fla_W_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_W_Gsp_AttributeGroup_flaWLage_Fla_W_Lage_TypeClass.gif
new file mode 100644
index 0000000000..32f857fd43
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_W_Gsp_AttributeGroup_flaWLage_Fla_W_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_W_Gsp_AttributeGroup_iDFlaWGspElement_ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_W_Gsp_AttributeGroup_iDFlaWGspElement_ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..73486a0c2d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_W_Gsp_AttributeGroup_iDFlaWGspElement_ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Weitergabe_AttributeGroup_iDFlaWeitergabeL_ID_Fla_Schutz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Weitergabe_AttributeGroup_iDFlaWeitergabeL_ID_Fla_Schutz_TypeClass.gif
new file mode 100644
index 0000000000..180d9c7786
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Weitergabe_AttributeGroup_iDFlaWeitergabeL_ID_Fla_Schutz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Weitergabe_AttributeGroup_iDFlaWeitergabeR_ID_Fla_Schutz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Weitergabe_AttributeGroup_iDFlaWeitergabeR_ID_Fla_Schutz_TypeClass.gif
new file mode 100644
index 0000000000..180d9c7786
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_Weitergabe_AttributeGroup_iDFlaWeitergabeR_ID_Fla_Schutz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_flaSchutzAnforderer_Fla_Schutz_Anforderer_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_flaSchutzAnforderer_Fla_Schutz_Anforderer_AttributeGroup.gif
new file mode 100644
index 0000000000..618a818c27
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_flaSchutzAnforderer_Fla_Schutz_Anforderer_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_flaSchutzSignal_Fla_Schutz_Signal_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_flaSchutzSignal_Fla_Schutz_Signal_AttributeGroup.gif
new file mode 100644
index 0000000000..fe708946d5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_flaSchutzSignal_Fla_Schutz_Signal_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_flaSchutzWGsp_Fla_Schutz_W_Gsp_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_flaSchutzWGsp_Fla_Schutz_W_Gsp_AttributeGroup.gif
new file mode 100644
index 0000000000..a6753909ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_flaSchutzWGsp_Fla_Schutz_W_Gsp_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_flaSchutzWeitergabe_Fla_Schutz_Weitergabe_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_flaSchutzWeitergabe_Fla_Schutz_Weitergabe_AttributeGroup.gif
new file mode 100644
index 0000000000..5ef9a94e8d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_flaSchutzWeitergabe_Fla_Schutz_Weitergabe_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_flaVerzicht_Fla_Verzicht_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_flaVerzicht_Fla_Verzicht_TypeClass.gif
new file mode 100644
index 0000000000..6f8b380a87
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Schutz_flaVerzicht_Fla_Verzicht_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_Element_AttributeGroup_iDFlaSchutzL_ID_Fla_Schutz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_Element_AttributeGroup_iDFlaSchutzL_ID_Fla_Schutz_TypeClass.gif
new file mode 100644
index 0000000000..f2cd14df6e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_Element_AttributeGroup_iDFlaSchutzL_ID_Fla_Schutz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_Element_AttributeGroup_iDFlaSchutzR_ID_Fla_Schutz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_Element_AttributeGroup_iDFlaSchutzR_ID_Fla_Schutz_TypeClass.gif
new file mode 100644
index 0000000000..f2cd14df6e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_Element_AttributeGroup_iDFlaSchutzR_ID_Fla_Schutz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_Element_AttributeGroup_massnahmeL_Massnahme_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_Element_AttributeGroup_massnahmeL_Massnahme_TypeClass.gif
new file mode 100644
index 0000000000..5ac844dc30
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_Element_AttributeGroup_massnahmeL_Massnahme_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_Element_AttributeGroup_massnahmeR_Massnahme_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_Element_AttributeGroup_massnahmeR_Massnahme_TypeClass.gif
new file mode 100644
index 0000000000..5ac844dc30
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_Element_AttributeGroup_massnahmeR_Massnahme_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_Element_AttributeGroup_nachlaufverhinderung_Nachlaufverhinderung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_Element_AttributeGroup_nachlaufverhinderung_Nachlaufverhinderung_TypeClass.gif
new file mode 100644
index 0000000000..adf0a6ff75
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_Element_AttributeGroup_nachlaufverhinderung_Nachlaufverhinderung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_flaZwieschutzElement_Fla_Zwieschutz_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_flaZwieschutzElement_Fla_Zwieschutz_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..de3ad17d30
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_flaZwieschutzElement_Fla_Zwieschutz_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..0056d63c98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_iDWElement_ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_zwieschutzArt_Zwieschutz_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_zwieschutzArt_Zwieschutz_Art_TypeClass.gif
new file mode 100644
index 0000000000..33193f9d8b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFla_Zwieschutz_zwieschutzArt_Zwieschutz_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Abhaengigkeit_Ssp_AttributeGroup_aufloesungSspZielgleis_Aufloesung_Ssp_Zielgleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Abhaengigkeit_Ssp_AttributeGroup_aufloesungSspZielgleis_Aufloesung_Ssp_Zielgleis_TypeClass.gif
new file mode 100644
index 0000000000..81bed35300
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Abhaengigkeit_Ssp_AttributeGroup_aufloesungSspZielgleis_Aufloesung_Ssp_Zielgleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Abhaengigkeit_Ssp_AttributeGroup_iDSchluesselsperre_ID_Schluesselsperre_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Abhaengigkeit_Ssp_AttributeGroup_iDSchluesselsperre_ID_Schluesselsperre_TypeClass.gif
new file mode 100644
index 0000000000..f4f715203e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Abhaengigkeit_Ssp_AttributeGroup_iDSchluesselsperre_ID_Schluesselsperre_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Abhaengigkeit_fstrAbhaengigkeitSsp_Fstr_Abhaengigkeit_Ssp_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Abhaengigkeit_fstrAbhaengigkeitSsp_Fstr_Abhaengigkeit_Ssp_AttributeGroup.gif
new file mode 100644
index 0000000000..479ecafec7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Abhaengigkeit_fstrAbhaengigkeitSsp_Fstr_Abhaengigkeit_Ssp_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Abhaengigkeit_iDBedienAnzeigeElement_ID_Bedien_Anzeige_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Abhaengigkeit_iDBedienAnzeigeElement_ID_Bedien_Anzeige_Element_TypeClass.gif
new file mode 100644
index 0000000000..b597f08a51
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Abhaengigkeit_iDBedienAnzeigeElement_ID_Bedien_Anzeige_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Abhaengigkeit_iDFstrFahrweg_ID_Fstr_Fahrweg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Abhaengigkeit_iDFstrFahrweg_ID_Fstr_Fahrweg_TypeClass.gif
new file mode 100644
index 0000000000..7d37ab4780
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Abhaengigkeit_iDFstrFahrweg_ID_Fstr_Fahrweg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Aneinander_Zuordnung_iDFstrAneinander_ID_Fstr_Aneinander_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Aneinander_Zuordnung_iDFstrAneinander_ID_Fstr_Aneinander_TypeClass.gif
new file mode 100644
index 0000000000..f4c411ab96
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Aneinander_Zuordnung_iDFstrAneinander_ID_Fstr_Aneinander_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Aneinander_Zuordnung_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Aneinander_Zuordnung_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif
new file mode 100644
index 0000000000..c5cc3616ba
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Aneinander_Zuordnung_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Aneinander_fstrAneinanderBedienstring_Fstr_Aneinander_Bedienstring_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Aneinander_fstrAneinanderBedienstring_Fstr_Aneinander_Bedienstring_TypeClass.gif
new file mode 100644
index 0000000000..1010ed82e5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Aneinander_fstrAneinanderBedienstring_Fstr_Aneinander_Bedienstring_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Allg_AttributeGroup_laengeSoll_Laenge_Soll_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Allg_AttributeGroup_laengeSoll_Laenge_Soll_TypeClass.gif
new file mode 100644
index 0000000000..468d5f998b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Allg_AttributeGroup_laengeSoll_Laenge_Soll_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Allg_AttributeGroup_massgebendeNeigung_Massgebende_Neigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Allg_AttributeGroup_massgebendeNeigung_Massgebende_Neigung_TypeClass.gif
new file mode 100644
index 0000000000..d64a9303b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Allg_AttributeGroup_massgebendeNeigung_Massgebende_Neigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Bezeichnung_AttributeGroup_bezeichnungFstrDWeg_Bezeichnung_Fstr_DWeg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Bezeichnung_AttributeGroup_bezeichnungFstrDWeg_Bezeichnung_Fstr_DWeg_TypeClass.gif
new file mode 100644
index 0000000000..324a64d340
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Bezeichnung_AttributeGroup_bezeichnungFstrDWeg_Bezeichnung_Fstr_DWeg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Spezifisch_AttributeGroup_aufloesungVerzoegerung_Aufloesung_Verzoegerung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Spezifisch_AttributeGroup_aufloesungVerzoegerung_Aufloesung_Verzoegerung_TypeClass.gif
new file mode 100644
index 0000000000..b5c74a155e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Spezifisch_AttributeGroup_aufloesungVerzoegerung_Aufloesung_Verzoegerung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Spezifisch_AttributeGroup_dWegReihenfolge_DWeg_Reihenfolge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Spezifisch_AttributeGroup_dWegReihenfolge_DWeg_Reihenfolge_TypeClass.gif
new file mode 100644
index 0000000000..5e822cdd7d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Spezifisch_AttributeGroup_dWegReihenfolge_DWeg_Reihenfolge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Spezifisch_AttributeGroup_dWegVAufwertungVerzicht_DWeg_V_Aufwertung_Verzicht_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Spezifisch_AttributeGroup_dWegVAufwertungVerzicht_DWeg_V_Aufwertung_Verzicht_TypeClass.gif
new file mode 100644
index 0000000000..6f8b380a87
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Spezifisch_AttributeGroup_dWegVAufwertungVerzicht_DWeg_V_Aufwertung_Verzicht_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Spezifisch_AttributeGroup_dWegV_DWeg_V_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Spezifisch_AttributeGroup_dWegV_DWeg_V_TypeClass.gif
new file mode 100644
index 0000000000..2fc02f8496
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Spezifisch_AttributeGroup_dWegV_DWeg_V_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Spezifisch_AttributeGroup_iDFMAAnlageZielgleis_ID_FMA_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Spezifisch_AttributeGroup_iDFMAAnlageZielgleis_ID_FMA_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..6f8b380a87
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_Spezifisch_AttributeGroup_iDFMAAnlageZielgleis_ID_FMA_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_W_Kr_elementVerschluss_Element_Verschluss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_W_Kr_elementVerschluss_Element_Verschluss_TypeClass.gif
new file mode 100644
index 0000000000..7936184f76
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_W_Kr_elementVerschluss_Element_Verschluss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_W_Kr_iDFstrDWeg_ID_Fstr_DWeg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_W_Kr_iDFstrDWeg_ID_Fstr_DWeg_TypeClass.gif
new file mode 100644
index 0000000000..d2b4766319
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_W_Kr_iDFstrDWeg_ID_Fstr_DWeg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_W_Kr_iDWKrGspElement_ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_W_Kr_iDWKrGspElement_ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..5625a6447d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_W_Kr_iDWKrGspElement_ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_bezeichnung_Fstr_DWeg_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_bezeichnung_Fstr_DWeg_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..a24e08fa91
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_bezeichnung_Fstr_DWeg_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_fstrDWegAllg_Fstr_DWeg_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_fstrDWegAllg_Fstr_DWeg_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..986fb9cf10
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_fstrDWegAllg_Fstr_DWeg_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_fstrDWegSpezifisch_Fstr_DWeg_Spezifisch_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_fstrDWegSpezifisch_Fstr_DWeg_Spezifisch_AttributeGroup.gif
new file mode 100644
index 0000000000..4bf7d040db
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_fstrDWegSpezifisch_Fstr_DWeg_Spezifisch_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_iDFMAAnlageFreimeldung_ID_FMA_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_iDFMAAnlageFreimeldung_ID_FMA_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..0d9f24061d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_iDFMAAnlageFreimeldung_ID_FMA_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_iDFstrFahrweg_ID_Fstr_Fahrweg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_iDFstrFahrweg_ID_Fstr_Fahrweg_TypeClass.gif
new file mode 100644
index 0000000000..2833425da4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_iDFstrFahrweg_ID_Fstr_Fahrweg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_iDPZBGefahrpunkt_ID_Markanter_Punkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_iDPZBGefahrpunkt_ID_Markanter_Punkt_TypeClass.gif
new file mode 100644
index 0000000000..2833425da4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_DWeg_iDPZBGefahrpunkt_ID_Markanter_Punkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Fahrweg_fstrVHg_Fstr_V_Hg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Fahrweg_fstrVHg_Fstr_V_Hg_TypeClass.gif
new file mode 100644
index 0000000000..dc0fedc9d1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Fahrweg_fstrVHg_Fstr_V_Hg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Fahrweg_iDStart_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Fahrweg_iDStart_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..1b453f486c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Fahrweg_iDStart_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Fahrweg_iDZiel_ID_Ziel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Fahrweg_iDZiel_ID_Ziel_TypeClass.gif
new file mode 100644
index 0000000000..7aed015b97
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Fahrweg_iDZiel_ID_Ziel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Fahrweg_startSignalCharakter_Start_Signal_Charakter_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Fahrweg_startSignalCharakter_Start_Signal_Charakter_TypeClass.gif
new file mode 100644
index 0000000000..d1876aa3c5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Fahrweg_startSignalCharakter_Start_Signal_Charakter_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Mittel_AttributeGroup_fstrMittelArt_Fstr_Mittel_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Mittel_AttributeGroup_fstrMittelArt_Fstr_Mittel_Art_TypeClass.gif
new file mode 100644
index 0000000000..459f97d6b5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Mittel_AttributeGroup_fstrMittelArt_Fstr_Mittel_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Mittel_AttributeGroup_fstrMittelVAufwertung_Fstr_Mittel_V_Aufwertung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Mittel_AttributeGroup_fstrMittelVAufwertung_Fstr_Mittel_V_Aufwertung_TypeClass.gif
new file mode 100644
index 0000000000..8c450d08e0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Mittel_AttributeGroup_fstrMittelVAufwertung_Fstr_Mittel_V_Aufwertung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Nichthaltfall_iDFMAAnlage_ID_FMA_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Nichthaltfall_iDFMAAnlage_ID_FMA_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..2f9b78f261
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Nichthaltfall_iDFMAAnlage_ID_FMA_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Nichthaltfall_iDFstrFahrweg_ID_Fstr_Fahrweg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Nichthaltfall_iDFstrFahrweg_ID_Fstr_Fahrweg_TypeClass.gif
new file mode 100644
index 0000000000..fc67848944
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Nichthaltfall_iDFstrFahrweg_ID_Fstr_Fahrweg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_AttributeGroup_automatischeEinstellung_Automatische_Einstellung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_AttributeGroup_automatischeEinstellung_Automatische_Einstellung_TypeClass.gif
new file mode 100644
index 0000000000..28de654b29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_AttributeGroup_automatischeEinstellung_Automatische_Einstellung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_AttributeGroup_fstrRangierArt_Fstr_Rangier_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_AttributeGroup_fstrRangierArt_Fstr_Rangier_Art_TypeClass.gif
new file mode 100644
index 0000000000..0cf27b2923
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_AttributeGroup_fstrRangierArt_Fstr_Rangier_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_AttributeGroup_iDFMAAnlageRangierFrei_ID_FMA_Anlage_Rangier_Frei_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_AttributeGroup_iDFMAAnlageRangierFrei_ID_FMA_Anlage_Rangier_Frei_TypeClass.gif
new file mode 100644
index 0000000000..16510768be
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_AttributeGroup_iDFMAAnlageRangierFrei_ID_FMA_Anlage_Rangier_Frei_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_AttributeGroup_rangierGegenfahrtausschluss_Rangier_Gegenfahrtausschluss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_AttributeGroup_rangierGegenfahrtausschluss_Rangier_Gegenfahrtausschluss_TypeClass.gif
new file mode 100644
index 0000000000..06250be4d4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_AttributeGroup_rangierGegenfahrtausschluss_Rangier_Gegenfahrtausschluss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_Fla_Zuordnung_iDFlaSchutz_ID_Fla_Schutz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_Fla_Zuordnung_iDFlaSchutz_ID_Fla_Schutz_TypeClass.gif
new file mode 100644
index 0000000000..8390ecacad
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_Fla_Zuordnung_iDFlaSchutz_ID_Fla_Schutz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_Fla_Zuordnung_iDFstrRangier_ID_Fstr_Zug_Rangier_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_Fla_Zuordnung_iDFstrRangier_ID_Fstr_Zug_Rangier_TypeClass.gif
new file mode 100644
index 0000000000..a2085409f9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Rangier_Fla_Zuordnung_iDFstrRangier_ID_Fstr_Zug_Rangier_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Signalisierung_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Signalisierung_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif
new file mode 100644
index 0000000000..f655cb586f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Signalisierung_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Signalisierung_iDSignalSignalbegriffZiel_ID_Signal_Signalbegriff_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Signalisierung_iDSignalSignalbegriffZiel_ID_Signal_Signalbegriff_TypeClass.gif
new file mode 100644
index 0000000000..f9e5fa823d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Signalisierung_iDSignalSignalbegriffZiel_ID_Signal_Signalbegriff_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Signalisierung_iDSignalSignalbegriff_ID_Signal_Signalbegriff_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Signalisierung_iDSignalSignalbegriff_ID_Signal_Signalbegriff_TypeClass.gif
new file mode 100644
index 0000000000..f9e5fa823d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Signalisierung_iDSignalSignalbegriff_ID_Signal_Signalbegriff_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Umfahrpunkt_iDFstrFahrweg_ID_Fstr_Fahrweg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Umfahrpunkt_iDFstrFahrweg_ID_Fstr_Fahrweg_TypeClass.gif
new file mode 100644
index 0000000000..5b8f31eb6b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Umfahrpunkt_iDFstrFahrweg_ID_Fstr_Fahrweg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Umfahrpunkt_iDUmfahrpunkt_ID_Umfahrpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Umfahrpunkt_iDUmfahrpunkt_ID_Umfahrpunkt_TypeClass.gif
new file mode 100644
index 0000000000..7932e95e83
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Umfahrpunkt_iDUmfahrpunkt_ID_Umfahrpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_automatischeEinstellung_Automatische_Einstellung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_automatischeEinstellung_Automatische_Einstellung_TypeClass.gif
new file mode 100644
index 0000000000..9f92d6f95d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_automatischeEinstellung_Automatische_Einstellung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_fstrVsigabstandVerkuerzt_Fstr_Vsigabstand_Verkuerzt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_fstrVsigabstandVerkuerzt_Fstr_Vsigabstand_Verkuerzt_TypeClass.gif
new file mode 100644
index 0000000000..67ba99c291
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_fstrVsigabstandVerkuerzt_Fstr_Vsigabstand_Verkuerzt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_fstrZugArt_Fstr_Zug_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_fstrZugArt_Fstr_Zug_Art_TypeClass.gif
new file mode 100644
index 0000000000..b3a2d022b7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_fstrZugArt_Fstr_Zug_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_fstrZugDWeg_Fstr_Zug_DWeg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_fstrZugDWeg_Fstr_Zug_DWeg_AttributeGroup.gif
new file mode 100644
index 0000000000..29daffe979
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_fstrZugDWeg_Fstr_Zug_DWeg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_iDBUEEinschaltung_ID_BUE_Einschaltung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_iDBUEEinschaltung_ID_BUE_Einschaltung_TypeClass.gif
new file mode 100644
index 0000000000..306a991c36
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_iDBUEEinschaltung_ID_BUE_Einschaltung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_iDSignalGruppenausfahrt_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_iDSignalGruppenausfahrt_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..a259b8fb4f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_AttributeGroup_iDSignalGruppenausfahrt_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_DWeg_AttributeGroup_dWegVorzug_DWeg_Vorzug_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_DWeg_AttributeGroup_dWegVorzug_DWeg_Vorzug_TypeClass.gif
new file mode 100644
index 0000000000..224034e9aa
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_DWeg_AttributeGroup_dWegVorzug_DWeg_Vorzug_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_DWeg_AttributeGroup_iDFstrDWeg_ID_Fstr_DWeg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_DWeg_AttributeGroup_iDFstrDWeg_ID_Fstr_DWeg_TypeClass.gif
new file mode 100644
index 0000000000..c256568396
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_DWeg_AttributeGroup_iDFstrDWeg_ID_Fstr_DWeg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_Allg_AttributeGroup_fBedienung_F_Bedienung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_Allg_AttributeGroup_fBedienung_F_Bedienung_TypeClass.gif
new file mode 100644
index 0000000000..756dc2d112
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_Allg_AttributeGroup_fBedienung_F_Bedienung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_Allg_AttributeGroup_fstrBedienstring_Fstr_Bedienstring_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_Allg_AttributeGroup_fstrBedienstring_Fstr_Bedienstring_TypeClass.gif
new file mode 100644
index 0000000000..bc5648ecee
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_Allg_AttributeGroup_fstrBedienstring_Fstr_Bedienstring_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_Allg_AttributeGroup_fstrReihenfolge_Fstr_Reihenfolge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_Allg_AttributeGroup_fstrReihenfolge_Fstr_Reihenfolge_TypeClass.gif
new file mode 100644
index 0000000000..691760a5f3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_Allg_AttributeGroup_fstrReihenfolge_Fstr_Reihenfolge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_Allg_AttributeGroup_fstrV_Fstr_V_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_Allg_AttributeGroup_fstrV_Fstr_V_TypeClass.gif
new file mode 100644
index 0000000000..3d3dacde69
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_Allg_AttributeGroup_fstrV_Fstr_V_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_fstrMittel_Fstr_Mittel_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_fstrMittel_Fstr_Mittel_AttributeGroup.gif
new file mode 100644
index 0000000000..8d196458a8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_fstrMittel_Fstr_Mittel_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_fstrRangier_Fstr_Rangier_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_fstrRangier_Fstr_Rangier_AttributeGroup.gif
new file mode 100644
index 0000000000..ad7adc90c8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_fstrRangier_Fstr_Rangier_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_fstrZugRangierAllg_Fstr_Zug_Rangier_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_fstrZugRangierAllg_Fstr_Zug_Rangier_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..3ca8bfa99e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_fstrZugRangierAllg_Fstr_Zug_Rangier_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_fstrZug_Fstr_Zug_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_fstrZug_Fstr_Zug_AttributeGroup.gif
new file mode 100644
index 0000000000..16dbb0e676
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_fstrZug_Fstr_Zug_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_iDFstrAusschlussBesonders_ID_Fstr_Ausschluss_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_iDFstrAusschlussBesonders_ID_Fstr_Ausschluss_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..ac6a8a22ea
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_iDFstrAusschlussBesonders_ID_Fstr_Ausschluss_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_iDFstrFahrweg_ID_Fstr_Fahrweg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_iDFstrFahrweg_ID_Fstr_Fahrweg_TypeClass.gif
new file mode 100644
index 0000000000..9ab92c1910
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateFstr_Zug_Rangier_iDFstrFahrweg_ID_Fstr_Fahrweg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEOForm_GEO_Form_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEOForm_GEO_Form_TypeClass.gif
new file mode 100644
index 0000000000..9b0e0926ed
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEOForm_GEO_Form_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEOKAD_GEO_KAD_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEOKAD_GEO_KAD_TypeClass.gif
new file mode 100644
index 0000000000..c382aa6ed0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEOKAD_GEO_KAD_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEOLaenge_GEO_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEOLaenge_GEO_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..d61425d3d4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEOLaenge_GEO_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEORadiusA_GEO_Radius_A_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEORadiusA_GEO_Radius_A_TypeClass.gif
new file mode 100644
index 0000000000..9b0e0926ed
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEORadiusA_GEO_Radius_A_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEORadiusB_GEO_Radius_B_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEORadiusB_GEO_Radius_B_TypeClass.gif
new file mode 100644
index 0000000000..dd5419d5cd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEORadiusB_GEO_Radius_B_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEORichtungswinkel_GEO_Richtungswinkel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEORichtungswinkel_GEO_Richtungswinkel_TypeClass.gif
new file mode 100644
index 0000000000..7a94c484cd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_gEORichtungswinkel_GEO_Richtungswinkel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif
new file mode 100644
index 0000000000..86a616f83b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_gEOKanteAllg_GEO_Kante_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_gEOKanteAllg_GEO_Kante_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..1c58915b71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_gEOKanteAllg_GEO_Kante_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_iDGEOArt_ID_GEO_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_iDGEOArt_ID_GEO_Art_TypeClass.gif
new file mode 100644
index 0000000000..38cd8a017c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_iDGEOArt_ID_GEO_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_iDGEOKnotenA_ID_GEO_Knoten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_iDGEOKnotenA_ID_GEO_Knoten_TypeClass.gif
new file mode 100644
index 0000000000..5a705ee0f7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_iDGEOKnotenA_ID_GEO_Knoten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_iDGEOKnotenB_ID_GEO_Knoten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_iDGEOKnotenB_ID_GEO_Knoten_TypeClass.gif
new file mode 100644
index 0000000000..5a705ee0f7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Kante_iDGEOKnotenB_ID_GEO_Knoten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Knoten_gEOPAD_GEO_PAD_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Knoten_gEOPAD_GEO_PAD_TypeClass.gif
new file mode 100644
index 0000000000..1c4c522152
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Knoten_gEOPAD_GEO_PAD_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_Allg_AttributeGroup_gEOKoordinatensystem_GEO_Koordinatensystem_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_Allg_AttributeGroup_gEOKoordinatensystem_GEO_Koordinatensystem_TypeClass.gif
new file mode 100644
index 0000000000..db41f3b9af
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_Allg_AttributeGroup_gEOKoordinatensystem_GEO_Koordinatensystem_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_Allg_AttributeGroup_gKX_GK_X_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_Allg_AttributeGroup_gKX_GK_X_TypeClass.gif
new file mode 100644
index 0000000000..0e0d08d114
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_Allg_AttributeGroup_gKX_GK_X_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_Allg_AttributeGroup_gKY_GK_Y_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_Allg_AttributeGroup_gKY_GK_Y_TypeClass.gif
new file mode 100644
index 0000000000..10c4e2ea02
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_Allg_AttributeGroup_gKY_GK_Y_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_Allg_AttributeGroup_gKZ_GK_Z_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_Allg_AttributeGroup_gKZ_GK_Z_TypeClass.gif
new file mode 100644
index 0000000000..2a8a6d1e38
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_Allg_AttributeGroup_gKZ_GK_Z_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif
new file mode 100644
index 0000000000..4b97464c81
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_gEOPunktAllg_GEO_Punkt_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_gEOPunktAllg_GEO_Punkt_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..2371ef2aa0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_gEOPunktAllg_GEO_Punkt_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_iDGEOKante_ID_GEO_Kante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_iDGEOKante_ID_GEO_Kante_TypeClass.gif
new file mode 100644
index 0000000000..6357a53a81
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_iDGEOKante_ID_GEO_Kante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_iDGEOKnoten_ID_GEO_Knoten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_iDGEOKnoten_ID_GEO_Knoten_TypeClass.gif
new file mode 100644
index 0000000000..6966d766ed
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGEO_Punkt_iDGEOKnoten_ID_GEO_Knoten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_Allg_AttributeGroup_bUESicherungszeit_BUE_Sicherungszeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_Allg_AttributeGroup_bUESicherungszeit_BUE_Sicherungszeit_TypeClass.gif
new file mode 100644
index 0000000000..978ee2b380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_Allg_AttributeGroup_bUESicherungszeit_BUE_Sicherungszeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_Allg_AttributeGroup_gFRArt_GFR_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_Allg_AttributeGroup_gFRArt_GFR_Art_TypeClass.gif
new file mode 100644
index 0000000000..4c7f166dc4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_Allg_AttributeGroup_gFRArt_GFR_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_Allg_AttributeGroup_gFRTyp_GFR_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_Allg_AttributeGroup_gFRTyp_GFR_Typ_TypeClass.gif
new file mode 100644
index 0000000000..9ad499cb00
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_Allg_AttributeGroup_gFRTyp_GFR_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif
new file mode 100644
index 0000000000..8f1af02f3a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_gFRAnlageAllg_GFR_Anlage_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_gFRAnlageAllg_GFR_Anlage_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..71ebb1abef
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_gFRAnlageAllg_GFR_Anlage_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..6e66bf5815
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Anlage_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_Bezeichnung_AttributeGroup_bezeichnungGFRElement_Bezeichnung_GFR_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_Bezeichnung_AttributeGroup_bezeichnungGFRElement_Bezeichnung_GFR_Element_TypeClass.gif
new file mode 100644
index 0000000000..025f0306c7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_Bezeichnung_AttributeGroup_bezeichnungGFRElement_Bezeichnung_GFR_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_bUENeigung_BUE_Neigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_bUENeigung_BUE_Neigung_TypeClass.gif
new file mode 100644
index 0000000000..0231726db9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_bUENeigung_BUE_Neigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_bezeichnung_GFR_Element_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_bezeichnung_GFR_Element_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..4e2915eef0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_bezeichnung_GFR_Element_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_gFRNeigung_GFR_Neigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_gFRNeigung_GFR_Neigung_TypeClass.gif
new file mode 100644
index 0000000000..ca0092aa9e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_gFRNeigung_GFR_Neigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_iDGFRAnlage_ID_GFR_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_iDGFRAnlage_ID_GFR_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..471b87fb76
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_iDGFRAnlage_ID_GFR_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_iDUnterbringung_ID_Unterbringung_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_iDUnterbringung_ID_Unterbringung_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..104e7824e7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Element_iDUnterbringung_ID_Unterbringung_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_Allg_AttributeGroup_montagehoehe_Montagehoehe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_Allg_AttributeGroup_montagehoehe_Montagehoehe_TypeClass.gif
new file mode 100644
index 0000000000..69679e386e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_Allg_AttributeGroup_montagehoehe_Montagehoehe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_Allg_AttributeGroup_pegel_Pegel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_Allg_AttributeGroup_pegel_Pegel_TypeClass.gif
new file mode 100644
index 0000000000..9c678a492d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_Allg_AttributeGroup_pegel_Pegel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_Allg_AttributeGroup_winkelAlpha_Winkel_Alpha_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_Allg_AttributeGroup_winkelAlpha_Winkel_Alpha_TypeClass.gif
new file mode 100644
index 0000000000..150afa8690
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_Allg_AttributeGroup_winkelAlpha_Winkel_Alpha_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_Bezeichnung_AttributeGroup_bezeichnungGFRTripelspiegel_Bezeichnung_GFR_Tripelspiegel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_Bezeichnung_AttributeGroup_bezeichnungGFRTripelspiegel_Bezeichnung_GFR_Tripelspiegel_TypeClass.gif
new file mode 100644
index 0000000000..8848b0132c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_Bezeichnung_AttributeGroup_bezeichnungGFRTripelspiegel_Bezeichnung_GFR_Tripelspiegel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_bezeichnung_GFR_Tripelspiegel_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_bezeichnung_GFR_Tripelspiegel_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..15cbbadd0d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_bezeichnung_GFR_Tripelspiegel_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_gFRTripelspiegelAllg_GFR_Tripelspiegel_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_gFRTripelspiegelAllg_GFR_Tripelspiegel_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..32e4f432c6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_gFRTripelspiegelAllg_GFR_Tripelspiegel_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_iDGFRAnlage_ID_GFR_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_iDGFRAnlage_ID_GFR_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..b447e9ab5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGFR_Tripelspiegel_iDGFRAnlage_ID_GFR_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGZ_Freimeldung_L_AttributeGroup_elementLage_Element_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGZ_Freimeldung_L_AttributeGroup_elementLage_Element_Lage_TypeClass.gif
new file mode 100644
index 0000000000..fe0e4b2b82
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGZ_Freimeldung_L_AttributeGroup_elementLage_Element_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGZ_Freimeldung_L_AttributeGroup_iDElement_ID_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGZ_Freimeldung_L_AttributeGroup_iDElement_ID_Element_TypeClass.gif
new file mode 100644
index 0000000000..70b94f3a49
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGZ_Freimeldung_L_AttributeGroup_iDElement_ID_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGZ_Freimeldung_R_AttributeGroup_elementLage_Element_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGZ_Freimeldung_R_AttributeGroup_elementLage_Element_Lage_TypeClass.gif
new file mode 100644
index 0000000000..ac3a4fd1c6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGZ_Freimeldung_R_AttributeGroup_elementLage_Element_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGZ_Freimeldung_R_AttributeGroup_iDElement_ID_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGZ_Freimeldung_R_AttributeGroup_iDElement_ID_Element_TypeClass.gif
new file mode 100644
index 0000000000..3a9b7cdb67
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGZ_Freimeldung_R_AttributeGroup_iDElement_ID_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGeschwindigkeitsprofil_Allg_AttributeGroup_anzeigegefuehrtESKategorie_Anzeigegefuehrt_ES_Kategorie_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGeschwindigkeitsprofil_Allg_AttributeGroup_anzeigegefuehrtESKategorie_Anzeigegefuehrt_ES_Kategorie_TypeClass.gif
new file mode 100644
index 0000000000..0f107c5ff0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGeschwindigkeitsprofil_Allg_AttributeGroup_anzeigegefuehrtESKategorie_Anzeigegefuehrt_ES_Kategorie_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGeschwindigkeitsprofil_Allg_AttributeGroup_geschwindigkeit_Geschwindigkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGeschwindigkeitsprofil_Allg_AttributeGroup_geschwindigkeit_Geschwindigkeit_TypeClass.gif
new file mode 100644
index 0000000000..149a215637
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGeschwindigkeitsprofil_Allg_AttributeGroup_geschwindigkeit_Geschwindigkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGeschwindigkeitsprofil_Allg_AttributeGroup_vProfilArt_V_Profil_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGeschwindigkeitsprofil_Allg_AttributeGroup_vProfilArt_V_Profil_Art_TypeClass.gif
new file mode 100644
index 0000000000..845e9f477f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGeschwindigkeitsprofil_Allg_AttributeGroup_vProfilArt_V_Profil_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGeschwindigkeitsprofil_geschwindigkeitsprofilAllg_Geschwindigkeitsprofil_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGeschwindigkeitsprofil_geschwindigkeitsprofilAllg_Geschwindigkeitsprofil_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..20ca1b81ea
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGeschwindigkeitsprofil_geschwindigkeitsprofilAllg_Geschwindigkeitsprofil_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Abschluss_gleisAbschlussArt_Gleis_Abschluss_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Abschluss_gleisAbschlussArt_Gleis_Abschluss_Art_TypeClass.gif
new file mode 100644
index 0000000000..a3debc34b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Abschluss_gleisAbschlussArt_Gleis_Abschluss_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Abschnitt_bezeichnung_Bezeichnung_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Abschnitt_bezeichnung_Bezeichnung_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..05c17b39cf
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Abschnitt_bezeichnung_Bezeichnung_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Abschnitt_geschwindigkeit_Geschwindigkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Abschnitt_geschwindigkeit_Geschwindigkeit_TypeClass.gif
new file mode 100644
index 0000000000..8bacded5e6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Abschnitt_geschwindigkeit_Geschwindigkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Art_gleisart_Gleisart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Art_gleisart_Gleisart_TypeClass.gif
new file mode 100644
index 0000000000..7938130156
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Art_gleisart_Gleisart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Baubereich_baubereichArt_Baubereich_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Baubereich_baubereichArt_Baubereich_Art_TypeClass.gif
new file mode 100644
index 0000000000..ab638ae1e1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Baubereich_baubereichArt_Baubereich_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Bezeichnung_Bezeichnung_AttributeGroup_bezGleisBezeichnung_Bez_Gleis_Bezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Bezeichnung_Bezeichnung_AttributeGroup_bezGleisBezeichnung_Bez_Gleis_Bezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..fa6a5ee72a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Bezeichnung_Bezeichnung_AttributeGroup_bezGleisBezeichnung_Bez_Gleis_Bezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Bezeichnung_bezeichnung_Gleis_Bezeichnung_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Bezeichnung_bezeichnung_Gleis_Bezeichnung_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..78daa8ee17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Bezeichnung_bezeichnung_Gleis_Bezeichnung_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Fahrbahn_konstruktion_Konstruktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Fahrbahn_konstruktion_Konstruktion_TypeClass.gif
new file mode 100644
index 0000000000..baf4e8a2cd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Fahrbahn_konstruktion_Konstruktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Lichtraum_lichtraumprofil_Lichtraumprofil_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Lichtraum_lichtraumprofil_Lichtraumprofil_TypeClass.gif
new file mode 100644
index 0000000000..de9c32420f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Lichtraum_lichtraumprofil_Lichtraumprofil_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Schaltgruppe_bezeichnung_Bezeichnung_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Schaltgruppe_bezeichnung_Bezeichnung_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..51262522fc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Schaltgruppe_bezeichnung_Bezeichnung_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Schaltgruppe_fahrstrom_Fahrstrom_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Schaltgruppe_fahrstrom_Fahrstrom_TypeClass.gif
new file mode 100644
index 0000000000..5d7a6e0f66
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleis_Schaltgruppe_fahrstrom_Fahrstrom_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleissperre_Element_AttributeGroup_gleissperreBetriebsart_Gleissperre_Betriebsart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleissperre_Element_AttributeGroup_gleissperreBetriebsart_Gleissperre_Betriebsart_TypeClass.gif
new file mode 100644
index 0000000000..4d10d57779
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleissperre_Element_AttributeGroup_gleissperreBetriebsart_Gleissperre_Betriebsart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleissperre_Element_AttributeGroup_gleissperreVorzugslage_Gleissperre_Vorzugslage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleissperre_Element_AttributeGroup_gleissperreVorzugslage_Gleissperre_Vorzugslage_TypeClass.gif
new file mode 100644
index 0000000000..8566aa3c9d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateGleissperre_Element_AttributeGroup_gleissperreVorzugslage_Gleissperre_Vorzugslage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_Allg_AttributeGroup_hoehenlinieForm_Hoehenlinie_Form_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_Allg_AttributeGroup_hoehenlinieForm_Hoehenlinie_Form_TypeClass.gif
new file mode 100644
index 0000000000..b2f0e6820c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_Allg_AttributeGroup_hoehenlinieForm_Hoehenlinie_Form_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_Allg_AttributeGroup_hoehenlinieLaenge_Hoehenlinie_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_Allg_AttributeGroup_hoehenlinieLaenge_Hoehenlinie_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..6b664ddff8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_Allg_AttributeGroup_hoehenlinieLaenge_Hoehenlinie_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif
new file mode 100644
index 0000000000..f5b2b6f12d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_hoehenlinieAllg_Hoehenlinie_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_hoehenlinieAllg_Hoehenlinie_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..1d91288bbd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_hoehenlinieAllg_Hoehenlinie_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_iDHoehenpunktA_ID_Hoehenpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_iDHoehenpunktA_ID_Hoehenpunkt_TypeClass.gif
new file mode 100644
index 0000000000..19c4a599d7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_iDHoehenpunktA_ID_Hoehenpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_iDHoehenpunktB_ID_Hoehenpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_iDHoehenpunktB_ID_Hoehenpunkt_TypeClass.gif
new file mode 100644
index 0000000000..19c4a599d7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_iDHoehenpunktB_ID_Hoehenpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_iDTOPKantePfad_ID_TOP_Kante_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_iDTOPKantePfad_ID_TOP_Kante_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..555150e8a5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenlinie_iDTOPKantePfad_ID_TOP_Kante_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_gEOPAD_GEO_PAD_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_gEOPAD_GEO_PAD_TypeClass.gif
new file mode 100644
index 0000000000..66df020958
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_gEOPAD_GEO_PAD_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_hSystem_HSystem_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_hSystem_HSystem_TypeClass.gif
new file mode 100644
index 0000000000..0cc4a4a974
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_hSystem_HSystem_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_hoehenpunktDatum_Hoehenpunkt_Datum_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_hoehenpunktDatum_Hoehenpunkt_Datum_TypeClass.gif
new file mode 100644
index 0000000000..a885bb892a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_hoehenpunktDatum_Hoehenpunkt_Datum_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_hoehenpunktHoehe_Hoehenpunkt_Hoehe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_hoehenpunktHoehe_Hoehenpunkt_Hoehe_TypeClass.gif
new file mode 100644
index 0000000000..d0db396817
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_hoehenpunktHoehe_Hoehenpunkt_Hoehe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_neigung_Neigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_neigung_Neigung_TypeClass.gif
new file mode 100644
index 0000000000..0cc4a4a974
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_neigung_Neigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif
new file mode 100644
index 0000000000..e7e086fa97
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_hoehenpunktAllg_Hoehenpunkt_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_hoehenpunktAllg_Hoehenpunkt_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..2943295703
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateHoehenpunkt_hoehenpunktAllg_Hoehenpunkt_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateINA_Gefahrstelle_AttributeGroup_iDMarkanterPunkt_ID_Markanter_Punkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateINA_Gefahrstelle_AttributeGroup_iDMarkanterPunkt_ID_Markanter_Punkt_TypeClass.gif
new file mode 100644
index 0000000000..da3f70d029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateINA_Gefahrstelle_AttributeGroup_iDMarkanterPunkt_ID_Markanter_Punkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateINA_Gefahrstelle_AttributeGroup_prioritaetGefahrstelle_Prioritaet_Gefahrstelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateINA_Gefahrstelle_AttributeGroup_prioritaetGefahrstelle_Prioritaet_Gefahrstelle_TypeClass.gif
new file mode 100644
index 0000000000..7839cb5953
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateINA_Gefahrstelle_AttributeGroup_prioritaetGefahrstelle_Prioritaet_Gefahrstelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Allg_AttributeGroup_induktionsschutz_Induktionsschutz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Allg_AttributeGroup_induktionsschutz_Induktionsschutz_TypeClass.gif
new file mode 100644
index 0000000000..ee9e1b6f59
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Allg_AttributeGroup_induktionsschutz_Induktionsschutz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Allg_AttributeGroup_kabelArt_Kabel_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Allg_AttributeGroup_kabelArt_Kabel_Art_TypeClass.gif
new file mode 100644
index 0000000000..46e6cc6e42
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Allg_AttributeGroup_kabelArt_Kabel_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Allg_AttributeGroup_kabelLaenge_Kabel_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Allg_AttributeGroup_kabelLaenge_Kabel_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..40e889c4af
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Allg_AttributeGroup_kabelLaenge_Kabel_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Allg_AttributeGroup_kabelTyp_Kabel_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Allg_AttributeGroup_kabelTyp_Kabel_Typ_TypeClass.gif
new file mode 100644
index 0000000000..09b8804bd2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Allg_AttributeGroup_kabelTyp_Kabel_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Allg_AttributeGroup_nagetierschutz_Nagetierschutz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Allg_AttributeGroup_nagetierschutz_Nagetierschutz_TypeClass.gif
new file mode 100644
index 0000000000..17f6adc823
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Allg_AttributeGroup_nagetierschutz_Nagetierschutz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Bezeichnung_AttributeGroup_bezeichnungKabel_Bezeichnung_Kabel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Bezeichnung_AttributeGroup_bezeichnungKabel_Bezeichnung_Kabel_TypeClass.gif
new file mode 100644
index 0000000000..f4369fd0a4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Bezeichnung_AttributeGroup_bezeichnungKabel_Bezeichnung_Kabel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Element_AttributeGroup_aderDurchmesser_Ader_Durchmesser_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Element_AttributeGroup_aderDurchmesser_Ader_Durchmesser_TypeClass.gif
new file mode 100644
index 0000000000..56f8f0bfb1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Element_AttributeGroup_aderDurchmesser_Ader_Durchmesser_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Element_AttributeGroup_aderQuerschnitt_Ader_Querschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Element_AttributeGroup_aderQuerschnitt_Ader_Querschnitt_TypeClass.gif
new file mode 100644
index 0000000000..0b72453d8a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Element_AttributeGroup_aderQuerschnitt_Ader_Querschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Element_AttributeGroup_aderReserve_Ader_Reserve_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Element_AttributeGroup_aderReserve_Ader_Reserve_TypeClass.gif
new file mode 100644
index 0000000000..00fdba3ec4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Element_AttributeGroup_aderReserve_Ader_Reserve_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Element_AttributeGroup_anzahlVerseilelemente_Anzahl_Verseilelemente_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Element_AttributeGroup_anzahlVerseilelemente_Anzahl_Verseilelemente_TypeClass.gif
new file mode 100644
index 0000000000..f7bae5f288
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Element_AttributeGroup_anzahlVerseilelemente_Anzahl_Verseilelemente_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Element_AttributeGroup_verseilart_Verseilart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Element_AttributeGroup_verseilart_Verseilart_TypeClass.gif
new file mode 100644
index 0000000000..2b15f0c5bf
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Element_AttributeGroup_verseilart_Verseilart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Verteilpunkt_Bezeichnung_AttributeGroup_bezeichnungKabelVerteilpunkt_Bezeichnung_Kabel_Verteilpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Verteilpunkt_Bezeichnung_AttributeGroup_bezeichnungKabelVerteilpunkt_Bezeichnung_Kabel_Verteilpunkt_TypeClass.gif
new file mode 100644
index 0000000000..3cfac31dcd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Verteilpunkt_Bezeichnung_AttributeGroup_bezeichnungKabelVerteilpunkt_Bezeichnung_Kabel_Verteilpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Verteilpunkt_bezeichnung_Kabel_Verteilpunkt_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Verteilpunkt_bezeichnung_Kabel_Verteilpunkt_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..af9f8184d2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Verteilpunkt_bezeichnung_Kabel_Verteilpunkt_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Verteilpunkt_iDUnterbringung_ID_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Verteilpunkt_iDUnterbringung_ID_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..392d0d1f05
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Verteilpunkt_iDUnterbringung_ID_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Verteilpunkt_kabelVerteilpunktArt_Kabel_Verteilpunkt_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Verteilpunkt_kabelVerteilpunktArt_Kabel_Verteilpunkt_Art_TypeClass.gif
new file mode 100644
index 0000000000..d53ad79ffc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_Verteilpunkt_kabelVerteilpunktArt_Kabel_Verteilpunkt_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_bezeichnung_Kabel_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_bezeichnung_Kabel_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..cc2ef52955
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_bezeichnung_Kabel_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_iDTrasseKante_ID_Trasse_Kante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_iDTrasseKante_ID_Trasse_Kante_TypeClass.gif
new file mode 100644
index 0000000000..abad91a7a5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_iDTrasseKante_ID_Trasse_Kante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_kabelAllg_Kabel_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_kabelAllg_Kabel_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..538d417062
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_kabelAllg_Kabel_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_kabelElement_Kabel_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_kabelElement_Kabel_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..1f7c356b59
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKabel_kabelElement_Kabel_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKnoten_Auf_TOP_Kante_AttributeGroup_eTCSKnotenArtSonstige_ETCS_Knoten_Art_Sonstige_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKnoten_Auf_TOP_Kante_AttributeGroup_eTCSKnotenArtSonstige_ETCS_Knoten_Art_Sonstige_TypeClass.gif
new file mode 100644
index 0000000000..0131b56757
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKnoten_Auf_TOP_Kante_AttributeGroup_eTCSKnotenArtSonstige_ETCS_Knoten_Art_Sonstige_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKnoten_Auf_TOP_Kante_AttributeGroup_punktObjektTOPKante_Punkt_Objekt_TOP_Kante_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKnoten_Auf_TOP_Kante_AttributeGroup_punktObjektTOPKante_Punkt_Objekt_TOP_Kante_AttributeGroup.gif
new file mode 100644
index 0000000000..f22f738660
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKnoten_Auf_TOP_Kante_AttributeGroup_punktObjektTOPKante_Punkt_Objekt_TOP_Kante_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKreuzung_AttributeGroup_elektrischerAntriebAnzahl_Elektrischer_Antrieb_Anzahl_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKreuzung_AttributeGroup_elektrischerAntriebAnzahl_Elektrischer_Antrieb_Anzahl_TypeClass.gif
new file mode 100644
index 0000000000..9206001737
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKreuzung_AttributeGroup_elektrischerAntriebAnzahl_Elektrischer_Antrieb_Anzahl_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKreuzung_AttributeGroup_elektrischerAntriebLage_Elektrischer_Antrieb_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKreuzung_AttributeGroup_elektrischerAntriebLage_Elektrischer_Antrieb_Lage_TypeClass.gif
new file mode 100644
index 0000000000..1fedc13ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKreuzung_AttributeGroup_elektrischerAntriebLage_Elektrischer_Antrieb_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKreuzung_AttributeGroup_geschwindigkeitL_Geschwindigkeit_L_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKreuzung_AttributeGroup_geschwindigkeitL_Geschwindigkeit_L_TypeClass.gif
new file mode 100644
index 0000000000..6bd7204e09
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKreuzung_AttributeGroup_geschwindigkeitL_Geschwindigkeit_L_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKreuzung_AttributeGroup_geschwindigkeitR_Geschwindigkeit_R_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKreuzung_AttributeGroup_geschwindigkeitR_Geschwindigkeit_R_TypeClass.gif
new file mode 100644
index 0000000000..555150e8a5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateKreuzung_AttributeGroup_geschwindigkeitR_Geschwindigkeit_R_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_Allg_AttributeGroup_lEUAnlageArt_LEU_Anlage_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_Allg_AttributeGroup_lEUAnlageArt_LEU_Anlage_Art_TypeClass.gif
new file mode 100644
index 0000000000..70eb5409a6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_Allg_AttributeGroup_lEUAnlageArt_LEU_Anlage_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_Allg_AttributeGroup_leistungsbedarf_Leistungsbedarf_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_Allg_AttributeGroup_leistungsbedarf_Leistungsbedarf_TypeClass.gif
new file mode 100644
index 0000000000..c0f355b590
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_Allg_AttributeGroup_leistungsbedarf_Leistungsbedarf_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_Bezeichnung_AttributeGroup_bezeichnungLEUAnlage_Bezeichnung_LEU_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_Bezeichnung_AttributeGroup_bezeichnungLEUAnlage_Bezeichnung_LEU_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..49d98d937a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_Bezeichnung_AttributeGroup_bezeichnungLEUAnlage_Bezeichnung_LEU_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_bezeichnung_LEU_Anlage_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_bezeichnung_LEU_Anlage_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..fe10b8e7be
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_bezeichnung_LEU_Anlage_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_iDLEUBezugspunkt_ID_LEU_Bezug_Funktional_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_iDLEUBezugspunkt_ID_LEU_Bezug_Funktional_TypeClass.gif
new file mode 100644
index 0000000000..c31e7a2bca
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_iDLEUBezugspunkt_ID_LEU_Bezug_Funktional_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_lEUAnlageAllg_LEU_Anlage_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_lEUAnlageAllg_LEU_Anlage_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..e292d2a973
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Anlage_lEUAnlageAllg_LEU_Anlage_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif
new file mode 100644
index 0000000000..66b71850f1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Allg_AttributeGroup_lEUModulArt_LEU_Modul_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Allg_AttributeGroup_lEUModulArt_LEU_Modul_Art_TypeClass.gif
new file mode 100644
index 0000000000..8f7d7ca62a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Allg_AttributeGroup_lEUModulArt_LEU_Modul_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Allg_AttributeGroup_lEUModulGeraetestand_LEU_Modul_Geraetestand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Allg_AttributeGroup_lEUModulGeraetestand_LEU_Modul_Geraetestand_TypeClass.gif
new file mode 100644
index 0000000000..fb31e4b052
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Allg_AttributeGroup_lEUModulGeraetestand_LEU_Modul_Geraetestand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Allg_AttributeGroup_lEUModulTyp_LEU_Modul_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Allg_AttributeGroup_lEUModulTyp_LEU_Modul_Typ_TypeClass.gif
new file mode 100644
index 0000000000..122b828b2a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Allg_AttributeGroup_lEUModulTyp_LEU_Modul_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Ausgang_AttributeGroup_iDBalise_ID_Balise_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Ausgang_AttributeGroup_iDBalise_ID_Balise_TypeClass.gif
new file mode 100644
index 0000000000..bcaa16d301
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Ausgang_AttributeGroup_iDBalise_ID_Balise_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Ausgang_AttributeGroup_lEUAusgangNr_LEU_Ausgang_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Ausgang_AttributeGroup_lEUAusgangNr_LEU_Ausgang_Nr_TypeClass.gif
new file mode 100644
index 0000000000..fcd612ead9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Ausgang_AttributeGroup_lEUAusgangNr_LEU_Ausgang_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Ausgang_AttributeGroup_portNrAusgPhysisch_Port_Nr_Ausg_Physisch_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Ausgang_AttributeGroup_portNrAusgPhysisch_Port_Nr_Ausg_Physisch_TypeClass.gif
new file mode 100644
index 0000000000..1413888cbf
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Ausgang_AttributeGroup_portNrAusgPhysisch_Port_Nr_Ausg_Physisch_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Bezeichnung_AttributeGroup_modulnummer_Modulnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Bezeichnung_AttributeGroup_modulnummer_Modulnummer_TypeClass.gif
new file mode 100644
index 0000000000..e04b1b4a7c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_Bezeichnung_AttributeGroup_modulnummer_Modulnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_bezeichnung_LEU_Modul_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_bezeichnung_LEU_Modul_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..5173b2ddb3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_bezeichnung_LEU_Modul_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_iDInformationEingang_ID_Information_Eingang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_iDInformationEingang_ID_Information_Eingang_TypeClass.gif
new file mode 100644
index 0000000000..7f902c4a2d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_iDInformationEingang_ID_Information_Eingang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_iDLEUAnlage_ID_LEU_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_iDLEUAnlage_ID_LEU_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..c78a45426f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_iDLEUAnlage_ID_LEU_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_iDLEUSchaltkasten_ID_LEU_Schaltkasten_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_iDLEUSchaltkasten_ID_LEU_Schaltkasten_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..b53f994987
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_iDLEUSchaltkasten_ID_LEU_Schaltkasten_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_lEUModulAllg_LEU_Modul_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_lEUModulAllg_LEU_Modul_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..c85d5ad3a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_lEUModulAllg_LEU_Modul_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_lEUModulAusgang_LEU_Modul_Ausgang_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_lEUModulAusgang_LEU_Modul_Ausgang_AttributeGroup.gif
new file mode 100644
index 0000000000..12d45aab7d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Modul_lEUModulAusgang_LEU_Modul_Ausgang_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Bezeichnung_AttributeGroup_nummerSchaltkasten_Nummer_Schaltkasten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Bezeichnung_AttributeGroup_nummerSchaltkasten_Nummer_Schaltkasten_TypeClass.gif
new file mode 100644
index 0000000000..446308819c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Bezeichnung_AttributeGroup_nummerSchaltkasten_Nummer_Schaltkasten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Energie_AttributeGroup_anzahlVollLEUKalkuliert_Anzahl_Voll_LEU_Kalkuliert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Energie_AttributeGroup_anzahlVollLEUKalkuliert_Anzahl_Voll_LEU_Kalkuliert_TypeClass.gif
new file mode 100644
index 0000000000..288ee3a4e9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Energie_AttributeGroup_anzahlVollLEUKalkuliert_Anzahl_Voll_LEU_Kalkuliert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Energie_AttributeGroup_iDEnergieLEUSchaltkasten_ID_EV_Modul_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Energie_AttributeGroup_iDEnergieLEUSchaltkasten_ID_EV_Modul_TypeClass.gif
new file mode 100644
index 0000000000..2f87e1e2ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Energie_AttributeGroup_iDEnergieLEUSchaltkasten_ID_EV_Modul_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Energie_AttributeGroup_maxLeistung_Max_Leistung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Energie_AttributeGroup_maxLeistung_Max_Leistung_TypeClass.gif
new file mode 100644
index 0000000000..4447ddc830
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Energie_AttributeGroup_maxLeistung_Max_Leistung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Energie_AttributeGroup_spannungArt_Spannung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Energie_AttributeGroup_spannungArt_Spannung_Art_TypeClass.gif
new file mode 100644
index 0000000000..4447ddc830
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Energie_AttributeGroup_spannungArt_Spannung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Energie_AttributeGroup_ueberbrueckungEVUnterbrechung_Ueberbrueckung_EV_Unterbrechung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Energie_AttributeGroup_ueberbrueckungEVUnterbrechung_Ueberbrueckung_EV_Unterbrechung_TypeClass.gif
new file mode 100644
index 0000000000..4447ddc830
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Energie_AttributeGroup_ueberbrueckungEVUnterbrechung_Ueberbrueckung_EV_Unterbrechung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Position_AttributeGroup_iDBezugspunktPositionierung_ID_Bezugspunkt_Positionierung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Position_AttributeGroup_iDBezugspunktPositionierung_ID_Bezugspunkt_Positionierung_TypeClass.gif
new file mode 100644
index 0000000000..c5374c2e80
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Position_AttributeGroup_iDBezugspunktPositionierung_ID_Bezugspunkt_Positionierung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Position_AttributeGroup_positionSonstige_Position_Sonstige_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Position_AttributeGroup_positionSonstige_Position_Sonstige_TypeClass.gif
new file mode 100644
index 0000000000..fcfec345ba
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Position_AttributeGroup_positionSonstige_Position_Sonstige_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Position_AttributeGroup_position_Position_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Position_AttributeGroup_position_Position_TypeClass.gif
new file mode 100644
index 0000000000..937120ba4f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_Position_AttributeGroup_position_Position_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_bezeichnung_LEU_Schaltkasten_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_bezeichnung_LEU_Schaltkasten_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..c4063fe661
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_bezeichnung_LEU_Schaltkasten_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_iDUnterbringung_ID_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_iDUnterbringung_ID_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..e891a2bce9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_iDUnterbringung_ID_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_lEUSchaltkastenEnergie_LEU_Schaltkasten_Energie_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_lEUSchaltkastenEnergie_LEU_Schaltkasten_Energie_AttributeGroup.gif
new file mode 100644
index 0000000000..7118da1b83
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_lEUSchaltkastenEnergie_LEU_Schaltkasten_Energie_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_lEUSchaltkastenPosition_LEU_Schaltkasten_Position_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_lEUSchaltkastenPosition_LEU_Schaltkasten_Position_AttributeGroup.gif
new file mode 100644
index 0000000000..01247e3207
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_lEUSchaltkastenPosition_LEU_Schaltkasten_Position_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_lEUSchaltkastenTyp_LEU_Schaltkasten_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_lEUSchaltkastenTyp_LEU_Schaltkasten_Typ_TypeClass.gif
new file mode 100644
index 0000000000..d4594cfc27
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Schaltkasten_lEUSchaltkastenTyp_LEU_Schaltkasten_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Steuernde_AttributeGroup_iDLEUAnlage_ID_LEU_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Steuernde_AttributeGroup_iDLEUAnlage_ID_LEU_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..367c7ec00a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Steuernde_AttributeGroup_iDLEUAnlage_ID_LEU_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Steuernde_AttributeGroup_lEUAusgangNr_LEU_Ausgang_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Steuernde_AttributeGroup_lEUAusgangNr_LEU_Ausgang_Nr_TypeClass.gif
new file mode 100644
index 0000000000..dff66a06bb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLEU_Steuernde_AttributeGroup_lEUAusgangNr_LEU_Ausgang_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lOAusgabestand_LO_Ausgabestand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lOAusgabestand_LO_Ausgabestand_TypeClass.gif
new file mode 100644
index 0000000000..36e9ea8424
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lOAusgabestand_LO_Ausgabestand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lODBFreigabe_LO_DB_Freigabe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lODBFreigabe_LO_DB_Freigabe_TypeClass.gif
new file mode 100644
index 0000000000..d7c738ef53
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lODBFreigabe_LO_DB_Freigabe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lODatumHerstellung_LO_Datum_Herstellung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lODatumHerstellung_LO_Datum_Herstellung_TypeClass.gif
new file mode 100644
index 0000000000..cb6c57e155
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lODatumHerstellung_LO_Datum_Herstellung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lOEMANr_LO_EMA_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lOEMANr_LO_EMA_Nr_TypeClass.gif
new file mode 100644
index 0000000000..96b347e1ad
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lOEMANr_LO_EMA_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lOFirmensachnummer_LO_Firmensachnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lOFirmensachnummer_LO_Firmensachnummer_TypeClass.gif
new file mode 100644
index 0000000000..1479f924cb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lOFirmensachnummer_LO_Firmensachnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lOSeriennummer_LO_Seriennummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lOSeriennummer_LO_Seriennummer_TypeClass.gif
new file mode 100644
index 0000000000..31296336a2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLO_Material_AttributeGroup_lOSeriennummer_LO_Seriennummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLST_Objekte_Planungsbereich_AttributeGroup_iDLSTObjektPlanungsbereich_ID_Ur_Objekt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLST_Objekte_Planungsbereich_AttributeGroup_iDLSTObjektPlanungsbereich_ID_Ur_Objekt_TypeClass.gif
new file mode 100644
index 0000000000..df29197e26
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLST_Objekte_Planungsbereich_AttributeGroup_iDLSTObjektPlanungsbereich_ID_Ur_Objekt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLST_Planung_AttributeGroup_fachdaten_Fachdaten_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLST_Planung_AttributeGroup_fachdaten_Fachdaten_AttributeGroup.gif
new file mode 100644
index 0000000000..ed2e04bbea
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLST_Planung_AttributeGroup_fachdaten_Fachdaten_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLST_Planung_AttributeGroup_objektmanagement_Objektmanagement_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLST_Planung_AttributeGroup_objektmanagement_Objektmanagement_AttributeGroup.gif
new file mode 100644
index 0000000000..278cd8af6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLST_Planung_AttributeGroup_objektmanagement_Objektmanagement_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLST_Zustand_anhangLSTZustand_Anhang.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLST_Zustand_anhangLSTZustand_Anhang.gif
new file mode 100644
index 0000000000..9458666c45
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLST_Zustand_anhangLSTZustand_Anhang.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLST_Zustand_container_Container_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLST_Zustand_container_Container_AttributeGroup.gif
new file mode 100644
index 0000000000..24f4a759d7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLST_Zustand_container_Container_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdatei_Hilfe_AttributeGroup_iDBinaerdateiHilfe_ID_Binaerdaten_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdatei_Hilfe_AttributeGroup_iDBinaerdateiHilfe_ID_Binaerdaten_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..1386a5996a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdatei_Hilfe_AttributeGroup_iDBinaerdateiHilfe_ID_Binaerdaten_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdatei_Hilfe_AttributeGroup_pruefmerkmaleBinaerdateiHilfe_Pruefmerkmale_Daten_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdatei_Hilfe_AttributeGroup_pruefmerkmaleBinaerdateiHilfe_Pruefmerkmale_Daten_AttributeGroup.gif
new file mode 100644
index 0000000000..34a55b320c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdatei_Hilfe_AttributeGroup_pruefmerkmaleBinaerdateiHilfe_Pruefmerkmale_Daten_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdatei_Hilfe_AttributeGroup_verwendungHilfe_Verwendung_Hilfe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdatei_Hilfe_AttributeGroup_verwendungHilfe_Verwendung_Hilfe_TypeClass.gif
new file mode 100644
index 0000000000..ee360b2187
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdatei_Hilfe_AttributeGroup_verwendungHilfe_Verwendung_Hilfe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdaten_AttributeGroup_iDAnhangEADoku_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdaten_AttributeGroup_iDAnhangEADoku_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..506a19bf58
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdaten_AttributeGroup_iDAnhangEADoku_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdaten_AttributeGroup_iDBinaerdaten_ID_Binaerdaten_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdaten_AttributeGroup_iDBinaerdaten_ID_Binaerdaten_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..9458666c45
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdaten_AttributeGroup_iDBinaerdaten_ID_Binaerdaten_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdaten_AttributeGroup_pruefmerkmaleBinaerdaten_Pruefmerkmale_Daten_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdaten_AttributeGroup_pruefmerkmaleBinaerdaten_Pruefmerkmale_Daten_AttributeGroup.gif
new file mode 100644
index 0000000000..c9b7bd56a5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLT_Binaerdaten_AttributeGroup_pruefmerkmaleBinaerdaten_Pruefmerkmale_Daten_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Bezeichnung_AttributeGroup_bezeichnungLageplan_Bezeichnung_Lageplan_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Bezeichnung_AttributeGroup_bezeichnungLageplan_Bezeichnung_Lageplan_TypeClass.gif
new file mode 100644
index 0000000000..5777ba5f48
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Bezeichnung_AttributeGroup_bezeichnungLageplan_Bezeichnung_Lageplan_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Blattschnitt_Bezeichnung_AttributeGroup_bezLageplanBlattschnitt_Bez_Lageplan_Blattschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Blattschnitt_Bezeichnung_AttributeGroup_bezLageplanBlattschnitt_Bez_Lageplan_Blattschnitt_TypeClass.gif
new file mode 100644
index 0000000000..6769c1b7dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Blattschnitt_Bezeichnung_AttributeGroup_bezLageplanBlattschnitt_Bez_Lageplan_Blattschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Blattschnitt_bezeichnung_Lageplan_Blattschnitt_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Blattschnitt_bezeichnung_Lageplan_Blattschnitt_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..cfd10c2742
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Blattschnitt_bezeichnung_Lageplan_Blattschnitt_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Blattschnitt_polygonzugAusrichtung_Polygonzug_Ausrichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Blattschnitt_polygonzugAusrichtung_Polygonzug_Ausrichtung_TypeClass.gif
new file mode 100644
index 0000000000..e9a46da5fa
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Blattschnitt_polygonzugAusrichtung_Polygonzug_Ausrichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Blattschnitt_polygonzugBlattschnitt_Polygonzug_Blattschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Blattschnitt_polygonzugBlattschnitt_Polygonzug_Blattschnitt_TypeClass.gif
new file mode 100644
index 0000000000..7a702c9426
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Blattschnitt_polygonzugBlattschnitt_Polygonzug_Blattschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Zustand_iDLageplan_ID_Lageplan_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Zustand_iDLageplan_ID_Lageplan_TypeClass.gif
new file mode 100644
index 0000000000..c048169804
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Zustand_iDLageplan_ID_Lageplan_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Zustand_referenzLSTZustand_Referenz_LST_Zustand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Zustand_referenzLSTZustand_Referenz_LST_Zustand_TypeClass.gif
new file mode 100644
index 0000000000..6a6170e0da
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_Zustand_referenzLSTZustand_Referenz_LST_Zustand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_bezeichnung_Lageplan_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_bezeichnung_Lageplan_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..df29197e26
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_bezeichnung_Lageplan_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_iDLageplanBlattschnitt_ID_Lageplan_Blattschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_iDLageplanBlattschnitt_ID_Lageplan_Blattschnitt_TypeClass.gif
new file mode 100644
index 0000000000..506a19bf58
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_iDLageplanBlattschnitt_ID_Lageplan_Blattschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_lageplanArt_Lageplan_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_lageplanArt_Lageplan_Art_TypeClass.gif
new file mode 100644
index 0000000000..26d037d41d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLageplan_lageplanArt_Lageplan_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLieferobjekt_beschreibung_Beschreibung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLieferobjekt_beschreibung_Beschreibung_TypeClass.gif
new file mode 100644
index 0000000000..a17c76f855
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLieferobjekt_beschreibung_Beschreibung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLieferobjekt_iDGEOPunkt_ID_GEO_Punkt_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLieferobjekt_iDGEOPunkt_ID_GEO_Punkt_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..1fb76995b8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLieferobjekt_iDGEOPunkt_ID_GEO_Punkt_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLieferobjekt_iDLOEinbau_ID_LO_Einbau_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLieferobjekt_iDLOEinbau_ID_LO_Einbau_TypeClass.gif
new file mode 100644
index 0000000000..a0d9f76f2c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLieferobjekt_iDLOEinbau_ID_LO_Einbau_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLieferobjekt_lOErsatz_LO_Ersatz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLieferobjekt_lOErsatz_LO_Ersatz_TypeClass.gif
new file mode 100644
index 0000000000..e4990eada9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLieferobjekt_lOErsatz_LO_Ersatz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLieferobjekt_lOMaterial_LO_Material_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLieferobjekt_lOMaterial_LO_Material_AttributeGroup.gif
new file mode 100644
index 0000000000..df228332e9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLieferobjekt_lOMaterial_LO_Material_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLuft_Telegramm_iDBaliseUebertragung_ID_Balise_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLuft_Telegramm_iDBaliseUebertragung_ID_Balise_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..7bbad508b8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLuft_Telegramm_iDBaliseUebertragung_ID_Balise_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLuft_Telegramm_iDFachtelegramm_ID_Fachtelegramm_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLuft_Telegramm_iDFachtelegramm_ID_Fachtelegramm_TypeClass.gif
new file mode 100644
index 0000000000..c9af92d891
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLuft_Telegramm_iDFachtelegramm_ID_Fachtelegramm_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLuft_Telegramm_lTBinaerdateiHilfe_LT_Binaerdatei_Hilfe_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLuft_Telegramm_lTBinaerdateiHilfe_LT_Binaerdatei_Hilfe_AttributeGroup.gif
new file mode 100644
index 0000000000..07d4cba6e2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLuft_Telegramm_lTBinaerdateiHilfe_LT_Binaerdatei_Hilfe_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLuft_Telegramm_lTBinaerdaten_LT_Binaerdaten_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLuft_Telegramm_lTBinaerdaten_LT_Binaerdaten_AttributeGroup.gif
new file mode 100644
index 0000000000..fd60bf2f93
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLuft_Telegramm_lTBinaerdaten_LT_Binaerdaten_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLuft_Telegramm_telegrammIndex_Telegramm_Index_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLuft_Telegramm_telegrammIndex_Telegramm_Index_TypeClass.gif
new file mode 100644
index 0000000000..7bbad508b8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateLuft_Telegramm_telegrammIndex_Telegramm_Index_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMarkanter_Punkt_Bezeichnung_AttributeGroup_bezeichnungMarkanterPunkt_Bezeichnung_Markanter_Punkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMarkanter_Punkt_Bezeichnung_AttributeGroup_bezeichnungMarkanterPunkt_Bezeichnung_Markanter_Punkt_TypeClass.gif
new file mode 100644
index 0000000000..98c2fa25c6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMarkanter_Punkt_Bezeichnung_AttributeGroup_bezeichnungMarkanterPunkt_Bezeichnung_Markanter_Punkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMarkanter_Punkt_bezeichnung_Markanter_Punkt_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMarkanter_Punkt_bezeichnung_Markanter_Punkt_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..65e5a9bd55
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMarkanter_Punkt_bezeichnung_Markanter_Punkt_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMarkanter_Punkt_iDDWegErlaubnisabhaengig_ID_Block_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMarkanter_Punkt_iDDWegErlaubnisabhaengig_ID_Block_Element_TypeClass.gif
new file mode 100644
index 0000000000..75d8cae4d3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMarkanter_Punkt_iDDWegErlaubnisabhaengig_ID_Block_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMarkanter_Punkt_iDMarkanteStelle_ID_Markante_Stelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMarkanter_Punkt_iDMarkanteStelle_ID_Markante_Stelle_TypeClass.gif
new file mode 100644
index 0000000000..420564eb5c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMarkanter_Punkt_iDMarkanteStelle_ID_Markante_Stelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMetallteil_AttributeGroup_metallteilKategorie_Metallteil_Kategorie_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMetallteil_AttributeGroup_metallteilKategorie_Metallteil_Kategorie_TypeClass.gif
new file mode 100644
index 0000000000..a1607f9100
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMetallteil_AttributeGroup_metallteilKategorie_Metallteil_Kategorie_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMetallteil_AttributeGroup_metallteilLaenge_Metallteil_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMetallteil_AttributeGroup_metallteilLaenge_Metallteil_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..9d141ccd12
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateMetallteil_AttributeGroup_metallteilLaenge_Metallteil_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Element_iDBedienAnzeigeElement_ID_Bedien_Anzeige_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Element_iDBedienAnzeigeElement_ID_Bedien_Anzeige_Element_TypeClass.gif
new file mode 100644
index 0000000000..c715ea91e1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Element_iDBedienAnzeigeElement_ID_Bedien_Anzeige_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Element_iDNBZone_ID_NB_Zone_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Element_iDNBZone_ID_NB_Zone_TypeClass.gif
new file mode 100644
index 0000000000..7afe9dc1af
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Element_iDNBZone_ID_NB_Zone_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Element_nBBedienAnzeigeFunktionen_NB_Bedien_Anzeige_Funktionen_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Element_nBBedienAnzeigeFunktionen_NB_Bedien_Anzeige_Funktionen_AttributeGroup.gif
new file mode 100644
index 0000000000..f85cafc532
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Element_nBBedienAnzeigeFunktionen_NB_Bedien_Anzeige_Funktionen_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Funktionen_AttributeGroup_tasteANF_Taste_ANF_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Funktionen_AttributeGroup_tasteANF_Taste_ANF_TypeClass.gif
new file mode 100644
index 0000000000..44d35f2c07
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Funktionen_AttributeGroup_tasteANF_Taste_ANF_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Funktionen_AttributeGroup_tasteFGT_Taste_FGT_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Funktionen_AttributeGroup_tasteFGT_Taste_FGT_TypeClass.gif
new file mode 100644
index 0000000000..1376267cc6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Funktionen_AttributeGroup_tasteFGT_Taste_FGT_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Funktionen_AttributeGroup_tasteWGT_Taste_WGT_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Funktionen_AttributeGroup_tasteWGT_Taste_WGT_TypeClass.gif
new file mode 100644
index 0000000000..78b83636c6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bedien_Anzeige_Funktionen_AttributeGroup_tasteWGT_Taste_WGT_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bezeichnung_AttributeGroup_bezeichnungNB_Bezeichnung_NB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bezeichnung_AttributeGroup_bezeichnungNB_Bezeichnung_NB_TypeClass.gif
new file mode 100644
index 0000000000..59c4adae07
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bezeichnung_AttributeGroup_bezeichnungNB_Bezeichnung_NB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bezeichnung_AttributeGroup_kennzahl_Kennzahl_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bezeichnung_AttributeGroup_kennzahl_Kennzahl_TypeClass.gif
new file mode 100644
index 0000000000..b6cc9ca21b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Bezeichnung_AttributeGroup_kennzahl_Kennzahl_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_aWU_AWU_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_aWU_AWU_TypeClass.gif
new file mode 100644
index 0000000000..9fa11c0471
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_aWU_AWU_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_fAFAE_FA_FAE_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_fAFAE_FA_FAE_TypeClass.gif
new file mode 100644
index 0000000000..203f89aaa4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_fAFAE_FA_FAE_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_fSTZ_F_ST_Z_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_fSTZ_F_ST_Z_TypeClass.gif
new file mode 100644
index 0000000000..527e4e884c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_fSTZ_F_ST_Z_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_sBUE_SBUE_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_sBUE_SBUE_TypeClass.gif
new file mode 100644
index 0000000000..cfd10c2742
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_sBUE_SBUE_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_sLESLS_SLE_SLS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_sLESLS_SLE_SLS_TypeClass.gif
new file mode 100644
index 0000000000..c707940a02
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_sLESLS_SLE_SLS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_wHU_WHU_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_wHU_WHU_TypeClass.gif
new file mode 100644
index 0000000000..19b38abf6c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_wHU_WHU_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_wUS_WUS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_wUS_WUS_TypeClass.gif
new file mode 100644
index 0000000000..fa1f35938c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Funktionalitaet_NB_R_AttributeGroup_wUS_WUS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Allg_AttributeGroup_nBVerhaeltnisBesonders_NB_Verhaeltnis_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Allg_AttributeGroup_nBVerhaeltnisBesonders_NB_Verhaeltnis_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..ca79607580
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Allg_AttributeGroup_nBVerhaeltnisBesonders_NB_Verhaeltnis_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Allg_AttributeGroup_rang_Rang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Allg_AttributeGroup_rang_Rang_TypeClass.gif
new file mode 100644
index 0000000000..454398ffa0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Allg_AttributeGroup_rang_Rang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Bezeichnung_AttributeGroup_bezeichnungNBZone_Bezeichnung_NB_Zone_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Bezeichnung_AttributeGroup_bezeichnungNBZone_Bezeichnung_NB_Zone_TypeClass.gif
new file mode 100644
index 0000000000..1ebcee0d96
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Bezeichnung_AttributeGroup_bezeichnungNBZone_Bezeichnung_NB_Zone_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_Allg_AttributeGroup_freieStellbarkeit_Freie_Stellbarkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_Allg_AttributeGroup_freieStellbarkeit_Freie_Stellbarkeit_TypeClass.gif
new file mode 100644
index 0000000000..1de2244361
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_Allg_AttributeGroup_freieStellbarkeit_Freie_Stellbarkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_Allg_AttributeGroup_nBRueckgabevoraussetzung_NB_Rueckgabevoraussetzung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_Allg_AttributeGroup_nBRueckgabevoraussetzung_NB_Rueckgabevoraussetzung_TypeClass.gif
new file mode 100644
index 0000000000..8883ef6afb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_Allg_AttributeGroup_nBRueckgabevoraussetzung_NB_Rueckgabevoraussetzung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_Allg_AttributeGroup_wGspLage_W_Gsp_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_Allg_AttributeGroup_wGspLage_W_Gsp_Lage_TypeClass.gif
new file mode 100644
index 0000000000..56f8f0bfb1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_Allg_AttributeGroup_wGspLage_W_Gsp_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_iDNBElement_ID_NB_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_iDNBElement_ID_NB_Element_TypeClass.gif
new file mode 100644
index 0000000000..fad8ece34b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_iDNBElement_ID_NB_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_iDNBZone_ID_NB_Zone_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_iDNBZone_ID_NB_Zone_TypeClass.gif
new file mode 100644
index 0000000000..02a8aeedd6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_iDNBZone_ID_NB_Zone_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_nBZoneElementAllg_NB_Zone_Element_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_nBZoneElementAllg_NB_Zone_Element_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..2255e98604
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Element_nBZoneElementAllg_NB_Zone_Element_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Grenze_iDMarkanterPunkt_ID_Markanter_Punkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Grenze_iDMarkanterPunkt_ID_Markanter_Punkt_TypeClass.gif
new file mode 100644
index 0000000000..e75c32f5b8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Grenze_iDMarkanterPunkt_ID_Markanter_Punkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Grenze_iDNBZone_ID_NB_Zone_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Grenze_iDNBZone_ID_NB_Zone_TypeClass.gif
new file mode 100644
index 0000000000..16c3e21097
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Grenze_iDNBZone_ID_NB_Zone_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Grenze_nBGrenzeArt_NB_Grenze_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Grenze_nBGrenzeArt_NB_Grenze_Art_TypeClass.gif
new file mode 100644
index 0000000000..8a06919132
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Grenze_nBGrenzeArt_NB_Grenze_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Reihenfolgezwang_AttributeGroup_nBZoneAllg_NB_Zone_Allg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Reihenfolgezwang_AttributeGroup_nBZoneAllg_NB_Zone_Allg_TypeClass.gif
new file mode 100644
index 0000000000..d7c5af7986
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_Reihenfolgezwang_AttributeGroup_nBZoneAllg_NB_Zone_Allg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_bezeichnung_NB_Zone_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_bezeichnung_NB_Zone_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..931730f4ef
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_bezeichnung_NB_Zone_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_iDNBZone_ID_NB_Zone_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_iDNBZone_ID_NB_Zone_TypeClass.gif
new file mode 100644
index 0000000000..7d7c59b0d4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_iDNBZone_ID_NB_Zone_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_iDNB_ID_NB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_iDNB_ID_NB_TypeClass.gif
new file mode 100644
index 0000000000..1b07f693b5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_iDNB_ID_NB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_nBZoneAllg_NB_Zone_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_nBZoneAllg_NB_Zone_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..42586633e4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_Zone_nBZoneAllg_NB_Zone_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_bezeichnung_NB_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_bezeichnung_NB_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..86d00fa0c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_bezeichnung_NB_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_nBArt_NB_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_nBArt_NB_Art_TypeClass.gif
new file mode 100644
index 0000000000..11943a3c05
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_nBArt_NB_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_nBFunktionalitaetNBR_NB_Funktionalitaet_NB_R_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_nBFunktionalitaetNBR_NB_Funktionalitaet_NB_R_AttributeGroup.gif
new file mode 100644
index 0000000000..1386a5996a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateNB_nBFunktionalitaetNBR_NB_Funktionalitaet_NB_R_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateObjektmanagement_AttributeGroup_lSTPlanungProjekt_Planung_Projekt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateObjektmanagement_AttributeGroup_lSTPlanungProjekt_Planung_Projekt.gif
new file mode 100644
index 0000000000..791d85c3da
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateObjektmanagement_AttributeGroup_lSTPlanungProjekt_Planung_Projekt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateObjektreferenzen_AttributeGroup_dBGDIReferenz_DB_GDI_Referenz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateObjektreferenzen_AttributeGroup_dBGDIReferenz_DB_GDI_Referenz_TypeClass.gif
new file mode 100644
index 0000000000..fb2ce7d7bf
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateObjektreferenzen_AttributeGroup_dBGDIReferenz_DB_GDI_Referenz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateObjektreferenzen_AttributeGroup_technischerPlatz_Technischer_Platz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateObjektreferenzen_AttributeGroup_technischerPlatz_Technischer_Platz_TypeClass.gif
new file mode 100644
index 0000000000..bd5468cdac
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateObjektreferenzen_AttributeGroup_technischerPlatz_Technischer_Platz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Allg_AttributeGroup_oertlichkeitArt_Oertlichkeit_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Allg_AttributeGroup_oertlichkeitArt_Oertlichkeit_Art_TypeClass.gif
new file mode 100644
index 0000000000..c5cc3616ba
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Allg_AttributeGroup_oertlichkeitArt_Oertlichkeit_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Allg_AttributeGroup_oertlichkeitGueltigAb_Oertlichkeit_Gueltig_Ab_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Allg_AttributeGroup_oertlichkeitGueltigAb_Oertlichkeit_Gueltig_Ab_TypeClass.gif
new file mode 100644
index 0000000000..4db22d9b25
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Allg_AttributeGroup_oertlichkeitGueltigAb_Oertlichkeit_Gueltig_Ab_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Allg_AttributeGroup_oertlichkeitGueltigBis_Oertlichkeit_Gueltig_Bis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Allg_AttributeGroup_oertlichkeitGueltigBis_Oertlichkeit_Gueltig_Bis_TypeClass.gif
new file mode 100644
index 0000000000..92313be6fd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Allg_AttributeGroup_oertlichkeitGueltigBis_Oertlichkeit_Gueltig_Bis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Bezeichnung_AttributeGroup_oertlichkeitAbkuerzung_Oertlichkeit_Abkuerzung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Bezeichnung_AttributeGroup_oertlichkeitAbkuerzung_Oertlichkeit_Abkuerzung_TypeClass.gif
new file mode 100644
index 0000000000..a279990b8f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Bezeichnung_AttributeGroup_oertlichkeitAbkuerzung_Oertlichkeit_Abkuerzung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Bezeichnung_AttributeGroup_oertlichkeitKurzname_Oertlichkeit_Kurzname_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Bezeichnung_AttributeGroup_oertlichkeitKurzname_Oertlichkeit_Kurzname_TypeClass.gif
new file mode 100644
index 0000000000..e75c32f5b8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Bezeichnung_AttributeGroup_oertlichkeitKurzname_Oertlichkeit_Kurzname_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Bezeichnung_AttributeGroup_oertlichkeitLangname_Oertlichkeit_Langname_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Bezeichnung_AttributeGroup_oertlichkeitLangname_Oertlichkeit_Langname_TypeClass.gif
new file mode 100644
index 0000000000..edd1d322b1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_Bezeichnung_AttributeGroup_oertlichkeitLangname_Oertlichkeit_Langname_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_bezeichnung_Oertlichkeit_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_bezeichnung_Oertlichkeit_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..573d6eecf0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_bezeichnung_Oertlichkeit_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_iDOertlichkeitAwanstBedient_ID_Oertlichkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_iDOertlichkeitAwanstBedient_ID_Oertlichkeit_TypeClass.gif
new file mode 100644
index 0000000000..c3f3ffa58d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_iDOertlichkeitAwanstBedient_ID_Oertlichkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_iDOertlichkeit_ID_Oertlichkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_iDOertlichkeit_ID_Oertlichkeit_TypeClass.gif
new file mode 100644
index 0000000000..c3f3ffa58d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_iDOertlichkeit_ID_Oertlichkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_iDStreckePunkt_ID_Strecke_Punkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_iDStreckePunkt_ID_Strecke_Punkt_TypeClass.gif
new file mode 100644
index 0000000000..12536cb884
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_iDStreckePunkt_ID_Strecke_Punkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_oertlichkeitAllg_Oertlichkeit_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_oertlichkeitAllg_Oertlichkeit_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..3ca8bfa99e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOertlichkeit_oertlichkeitAllg_Oertlichkeit_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_adressePLZOrt_Adresse_PLZ_Ort_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_adressePLZOrt_Adresse_PLZ_Ort_TypeClass.gif
new file mode 100644
index 0000000000..22ebacc29e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_adressePLZOrt_Adresse_PLZ_Ort_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_adresseStrasseNr_Adresse_Strasse_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_adresseStrasseNr_Adresse_Strasse_Nr_TypeClass.gif
new file mode 100644
index 0000000000..427fb585ea
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_adresseStrasseNr_Adresse_Strasse_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_eMailAdresse_E_Mail_Adresse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_eMailAdresse_E_Mail_Adresse_TypeClass.gif
new file mode 100644
index 0000000000..7d5f08b738
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_eMailAdresse_E_Mail_Adresse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_nameOrganisation_Name_Organisation_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_nameOrganisation_Name_Organisation_TypeClass.gif
new file mode 100644
index 0000000000..d43be4bc98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_nameOrganisation_Name_Organisation_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_organisationseinheit_Organisationseinheit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_organisationseinheit_Organisationseinheit_TypeClass.gif
new file mode 100644
index 0000000000..56db615a6f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_organisationseinheit_Organisationseinheit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_telefonnummer_Telefonnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_telefonnummer_Telefonnummer_TypeClass.gif
new file mode 100644
index 0000000000..c06a860ddc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateOrganisation_telefonnummer_Telefonnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GM_AttributeGroup_pZBAbstandGM_PZB_Abstand_GM_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GM_AttributeGroup_pZBAbstandGM_PZB_Abstand_GM_TypeClass.gif
new file mode 100644
index 0000000000..ce7fc4f17f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GM_AttributeGroup_pZBAbstandGM_PZB_Abstand_GM_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GM_AttributeGroup_pZBINA_PZB_INA_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GM_AttributeGroup_pZBINA_PZB_INA_TypeClass.gif
new file mode 100644
index 0000000000..64e652345e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GM_AttributeGroup_pZBINA_PZB_INA_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_gUEAbstandAbweichend_GUE_Abstand_Abweichend_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_gUEAbstandAbweichend_GUE_Abstand_Abweichend_TypeClass.gif
new file mode 100644
index 0000000000..647a6ff135
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_gUEAbstandAbweichend_GUE_Abstand_Abweichend_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_gUEAnordnung_GUE_Anordnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_gUEAnordnung_GUE_Anordnung_TypeClass.gif
new file mode 100644
index 0000000000..89ed2c9dc3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_gUEAnordnung_GUE_Anordnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_gUEBauart_GUE_Bauart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_gUEBauart_GUE_Bauart_TypeClass.gif
new file mode 100644
index 0000000000..9cae865ec3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_gUEBauart_GUE_Bauart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_gUEEnergieversorgung_GUE_Energieversorgung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_gUEEnergieversorgung_GUE_Energieversorgung_TypeClass.gif
new file mode 100644
index 0000000000..81084b9c15
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_gUEEnergieversorgung_GUE_Energieversorgung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_gUEMessstrecke_GUE_Messstrecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_gUEMessstrecke_GUE_Messstrecke_TypeClass.gif
new file mode 100644
index 0000000000..18085677ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_gUEMessstrecke_GUE_Messstrecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_iDPZBElementMitnutzung_ID_PZB_Element_Mitnutzung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_iDPZBElementMitnutzung_ID_PZB_Element_Mitnutzung_TypeClass.gif
new file mode 100644
index 0000000000..678e9718d6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_iDPZBElementMitnutzung_ID_PZB_Element_Mitnutzung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_messfehler_Messfehler_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_messfehler_Messfehler_TypeClass.gif
new file mode 100644
index 0000000000..5e689e64ff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_messfehler_Messfehler_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_pruefgeschwindigkeit_Pruefgeschwindigkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_pruefgeschwindigkeit_Pruefgeschwindigkeit_TypeClass.gif
new file mode 100644
index 0000000000..bccc676963
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_pruefgeschwindigkeit_Pruefgeschwindigkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_pruefzeit_Pruefzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_pruefzeit_Pruefzeit_TypeClass.gif
new file mode 100644
index 0000000000..73f6395855
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_GUE_AttributeGroup_pruefzeit_Pruefzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_BP_AttributeGroup_iDPZBElementBezugspunkt_ID_PZB_Element_Bezugspunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_BP_AttributeGroup_iDPZBElementBezugspunkt_ID_PZB_Element_Bezugspunkt_TypeClass.gif
new file mode 100644
index 0000000000..23270616b6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_BP_AttributeGroup_iDPZBElementBezugspunkt_ID_PZB_Element_Bezugspunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_BP_AttributeGroup_iNAGefahrstelle_INA_Gefahrstelle_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_BP_AttributeGroup_iNAGefahrstelle_INA_Gefahrstelle_AttributeGroup.gif
new file mode 100644
index 0000000000..651acbd919
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_BP_AttributeGroup_iNAGefahrstelle_INA_Gefahrstelle_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_BP_AttributeGroup_pZBElementZuordnungINA_PZB_Element_Zuordnung_INA_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_BP_AttributeGroup_pZBElementZuordnungINA_PZB_Element_Zuordnung_INA_AttributeGroup.gif
new file mode 100644
index 0000000000..7d18f38302
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_BP_AttributeGroup_pZBElementZuordnungINA_PZB_Element_Zuordnung_INA_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_BP_AttributeGroup_wirksamkeit_Wirksamkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_BP_AttributeGroup_wirksamkeit_Wirksamkeit_TypeClass.gif
new file mode 100644
index 0000000000..bb27d461b0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_BP_AttributeGroup_wirksamkeit_Wirksamkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_Fstr_AttributeGroup_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_Fstr_AttributeGroup_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif
new file mode 100644
index 0000000000..7dbe164491
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_Fstr_AttributeGroup_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_Fstr_AttributeGroup_wirksamkeitFstr_Wirksamkeit_Fstr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_Fstr_AttributeGroup_wirksamkeitFstr_Wirksamkeit_Fstr_TypeClass.gif
new file mode 100644
index 0000000000..64a27cb907
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_Fstr_AttributeGroup_wirksamkeitFstr_Wirksamkeit_Fstr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_INA_AttributeGroup_iDAnhangINA_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_INA_AttributeGroup_iDAnhangINA_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..0dabd12b1d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_INA_AttributeGroup_iDAnhangINA_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_INA_AttributeGroup_iDBahnsteigKante_ID_Bahnsteig_Kante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_INA_AttributeGroup_iDBahnsteigKante_ID_Bahnsteig_Kante_TypeClass.gif
new file mode 100644
index 0000000000..57fba7f35c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_INA_AttributeGroup_iDBahnsteigKante_ID_Bahnsteig_Kante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_pZBElementZuordnungBP_PZB_Element_Zuordnung_BP_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_pZBElementZuordnungBP_PZB_Element_Zuordnung_BP_AttributeGroup.gif
new file mode 100644
index 0000000000..e3dc34a0f2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_pZBElementZuordnungBP_PZB_Element_Zuordnung_BP_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_pZBElementZuordnungFstr_PZB_Element_Zuordnung_Fstr_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_pZBElementZuordnungFstr_PZB_Element_Zuordnung_Fstr_AttributeGroup.gif
new file mode 100644
index 0000000000..511800ca23
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_Zuordnung_pZBElementZuordnungFstr_PZB_Element_Zuordnung_Fstr_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_iDPZBElementZuordnung_ID_PZB_Element_Zuordnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_iDPZBElementZuordnung_ID_PZB_Element_Zuordnung_TypeClass.gif
new file mode 100644
index 0000000000..cc38dd7696
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_iDPZBElementZuordnung_ID_PZB_Element_Zuordnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_iDStellelement_ID_Stellelement_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_iDStellelement_ID_Stellelement_TypeClass.gif
new file mode 100644
index 0000000000..f1e2d49e68
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_iDStellelement_ID_Stellelement_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_iDUnterbringung_ID_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_iDUnterbringung_ID_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..82bf8d2f6f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_iDUnterbringung_ID_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_pZBArt_PZB_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_pZBArt_PZB_Art_TypeClass.gif
new file mode 100644
index 0000000000..7d4d39f0e8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_pZBArt_PZB_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_pZBElementGM_PZB_Element_GM_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_pZBElementGM_PZB_Element_GM_AttributeGroup.gif
new file mode 100644
index 0000000000..5c0241e788
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_pZBElementGM_PZB_Element_GM_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_pZBElementGUE_PZB_Element_GUE_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_pZBElementGUE_PZB_Element_GUE_AttributeGroup.gif
new file mode 100644
index 0000000000..1826517dd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Element_pZBElementGUE_PZB_Element_GUE_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Zuordnung_Signal_iDPZBElementZuordnung_ID_PZB_Element_Zuordnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Zuordnung_Signal_iDPZBElementZuordnung_ID_PZB_Element_Zuordnung_TypeClass.gif
new file mode 100644
index 0000000000..cc38dd7696
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Zuordnung_Signal_iDPZBElementZuordnung_ID_PZB_Element_Zuordnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Zuordnung_Signal_iDSignal_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Zuordnung_Signal_iDSignal_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..cd26443919
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePZB_Zuordnung_Signal_iDSignal_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_bearbeitungsvermerk_Bearbeitungsvermerk.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_bearbeitungsvermerk_Bearbeitungsvermerk.gif
new file mode 100644
index 0000000000..04db54f444
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_bearbeitungsvermerk_Bearbeitungsvermerk.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_elementPosition_Element_Position.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_elementPosition_Element_Position.gif
new file mode 100644
index 0000000000..0f352d7156
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_elementPosition_Element_Position.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_elementStil_Element_Stil.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_elementStil_Element_Stil.gif
new file mode 100644
index 0000000000..454398ffa0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_elementStil_Element_Stil.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_lageplanBlattschnitt_Lageplan_Blattschnitt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_lageplanBlattschnitt_Lageplan_Blattschnitt.gif
new file mode 100644
index 0000000000..62a1226685
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_lageplanBlattschnitt_Lageplan_Blattschnitt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_lageplanZustand_Lageplan_Zustand.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_lageplanZustand_Lageplan_Zustand.gif
new file mode 100644
index 0000000000..ddb5cda064
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_lageplanZustand_Lageplan_Zustand.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_lageplan_Lageplan.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_lageplan_Lageplan.gif
new file mode 100644
index 0000000000..212161926c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Layoutinfo_lageplan_Lageplan.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_Allg_AttributeGroup_bemerkung_Bemerkung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_Allg_AttributeGroup_bemerkung_Bemerkung_TypeClass.gif
new file mode 100644
index 0000000000..e0846e72b6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_Allg_AttributeGroup_bemerkung_Bemerkung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_Allg_AttributeGroup_erzeugungZeitstempel_Erzeugung_Zeitstempel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_Allg_AttributeGroup_erzeugungZeitstempel_Erzeugung_Zeitstempel_TypeClass.gif
new file mode 100644
index 0000000000..3dcb65c3c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_Allg_AttributeGroup_erzeugungZeitstempel_Erzeugung_Zeitstempel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_Allg_AttributeGroup_werkzeugName_Werkzeug_Name_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_Allg_AttributeGroup_werkzeugName_Werkzeug_Name_TypeClass.gif
new file mode 100644
index 0000000000..2067b0c31a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_Allg_AttributeGroup_werkzeugName_Werkzeug_Name_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_Allg_AttributeGroup_werkzeugVersion_Werkzeug_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_Allg_AttributeGroup_werkzeugVersion_Werkzeug_Version_TypeClass.gif
new file mode 100644
index 0000000000..b3520a5d4e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_Allg_AttributeGroup_werkzeugVersion_Werkzeug_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_lSTPlanung_LST_Planung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_lSTPlanung_LST_Planung_AttributeGroup.gif
new file mode 100644
index 0000000000..c94f08bf07
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_lSTPlanung_LST_Planung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_lSTZustand_LST_Zustand.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_lSTZustand_LST_Zustand.gif
new file mode 100644
index 0000000000..dd5419d5cd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_lSTZustand_LST_Zustand.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_planProSchnittstelleAllg_PlanPro_Schnittstelle_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_planProSchnittstelleAllg_PlanPro_Schnittstelle_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..cb2983c23a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanPro_Schnittstelle_planProSchnittstelleAllg_PlanPro_Schnittstelle_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_bauphase_Bauphase_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_bauphase_Bauphase_TypeClass.gif
new file mode 100644
index 0000000000..4d9762f2ed
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_bauphase_Bauphase_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_bauzustandKurzbezeichnung_Bauzustand_Kurzbezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_bauzustandKurzbezeichnung_Bauzustand_Kurzbezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..f9a2e4a864
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_bauzustandKurzbezeichnung_Bauzustand_Kurzbezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_bauzustandLangbezeichnung_Bauzustand_Langbezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_bauzustandLangbezeichnung_Bauzustand_Langbezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..3b0b44472f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_bauzustandLangbezeichnung_Bauzustand_Langbezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_datumAbschlussEinzel_Datum_Abschluss_Einzel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_datumAbschlussEinzel_Datum_Abschluss_Einzel_TypeClass.gif
new file mode 100644
index 0000000000..44d87cb33c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_datumAbschlussEinzel_Datum_Abschluss_Einzel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_datumRegelwerksstand_Datum_Regelwerksstand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_datumRegelwerksstand_Datum_Regelwerksstand_TypeClass.gif
new file mode 100644
index 0000000000..0a2cc5290e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_datumRegelwerksstand_Datum_Regelwerksstand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_indexAusgabe_Index_Ausgabe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_indexAusgabe_Index_Ausgabe_TypeClass.gif
new file mode 100644
index 0000000000..3d1deee693
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_indexAusgabe_Index_Ausgabe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_informativ_Informativ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_informativ_Informativ_TypeClass.gif
new file mode 100644
index 0000000000..e91f6dd89e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_informativ_Informativ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_laufendeNummerAusgabe_Laufende_Nummer_Ausgabe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_laufendeNummerAusgabe_Laufende_Nummer_Ausgabe_TypeClass.gif
new file mode 100644
index 0000000000..8a87700f4c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_laufendeNummerAusgabe_Laufende_Nummer_Ausgabe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_planungEArt_Planung_E_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_planungEArt_Planung_E_Art_TypeClass.gif
new file mode 100644
index 0000000000..a49d181b57
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_planungEArt_Planung_E_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_planungPhase_Planung_Phase_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_planungPhase_Planung_Phase_TypeClass.gif
new file mode 100644
index 0000000000..33e8a61830
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Allg_AttributeGroup_planungPhase_Planung_Phase_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Ausgabe_Besonders_AttributeGroup_referenzVergleichBesonders_Referenz_Vergleich_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Ausgabe_Besonders_AttributeGroup_referenzVergleichBesonders_Referenz_Vergleich_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..cc8f71d976
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Ausgabe_Besonders_AttributeGroup_referenzVergleichBesonders_Referenz_Vergleich_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Ausgabe_Besonders_AttributeGroup_vergleichAusgabestandBasis_Vergleich_Ausgabestand_Basis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Ausgabe_Besonders_AttributeGroup_vergleichAusgabestandBasis_Vergleich_Ausgabestand_Basis_TypeClass.gif
new file mode 100644
index 0000000000..66eed05638
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Ausgabe_Besonders_AttributeGroup_vergleichAusgabestandBasis_Vergleich_Ausgabestand_Basis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Ausgabe_Besonders_AttributeGroup_vergleichstypBesonders_Vergleichstyp_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Ausgabe_Besonders_AttributeGroup_vergleichstypBesonders_Vergleichstyp_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..c4b7156b8f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Ausgabe_Besonders_AttributeGroup_vergleichstypBesonders_Vergleichstyp_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEAbnahme_Akteur_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEAbnahme_Akteur_Zuordnung.gif
new file mode 100644
index 0000000000..24686d6cdc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEAbnahme_Akteur_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEErstellung_Akteur_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEErstellung_Akteur_Zuordnung.gif
new file mode 100644
index 0000000000..24686d6cdc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEErstellung_Akteur_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEFreigabe_Akteur_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEFreigabe_Akteur_Zuordnung.gif
new file mode 100644
index 0000000000..24686d6cdc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEFreigabe_Akteur_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEGenehmigung_Akteur_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEGenehmigung_Akteur_Zuordnung.gif
new file mode 100644
index 0000000000..24686d6cdc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEGenehmigung_Akteur_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEGleichstellung_Akteur_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEGleichstellung_Akteur_Zuordnung.gif
new file mode 100644
index 0000000000..24686d6cdc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEGleichstellung_Akteur_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEPruefung_Akteur_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEPruefung_Akteur_Zuordnung.gif
new file mode 100644
index 0000000000..24686d6cdc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEPruefung_Akteur_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEQualitaetspruefung_Akteur_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEQualitaetspruefung_Akteur_Zuordnung.gif
new file mode 100644
index 0000000000..24686d6cdc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEQualitaetspruefung_Akteur_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungESonstige_Akteur_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungESonstige_Akteur_Zuordnung.gif
new file mode 100644
index 0000000000..24686d6cdc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungESonstige_Akteur_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEUebernahme_Akteur_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEUebernahme_Akteur_Zuordnung.gif
new file mode 100644
index 0000000000..24686d6cdc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_E_Handlung_AttributeGroup_planungEUebernahme_Akteur_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_anhangErlaeuterungsbericht_Anhang.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_anhangErlaeuterungsbericht_Anhang.gif
new file mode 100644
index 0000000000..24ed2cbb19
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_anhangErlaeuterungsbericht_Anhang.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_anhangMaterialBesonders_Anhang.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_anhangMaterialBesonders_Anhang.gif
new file mode 100644
index 0000000000..24ed2cbb19
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_anhangMaterialBesonders_Anhang.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_anhangVzG_Anhang.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_anhangVzG_Anhang.gif
new file mode 100644
index 0000000000..24ed2cbb19
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_anhangVzG_Anhang.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_iDAusgabeFachdaten_ID_Ausgabe_Fachdaten_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_iDAusgabeFachdaten_ID_Ausgabe_Fachdaten_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..1d08a11744
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_iDAusgabeFachdaten_ID_Ausgabe_Fachdaten_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_lSTObjektePlanungsbereich_LST_Objekte_Planungsbereich_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_lSTObjektePlanungsbereich_LST_Objekte_Planungsbereich_AttributeGroup.gif
new file mode 100644
index 0000000000..2184a5caf8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_lSTObjektePlanungsbereich_LST_Objekte_Planungsbereich_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_planungEAllg_Planung_E_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_planungEAllg_Planung_E_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..504fdc4384
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_planungEAllg_Planung_E_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_planungEAusgabeBesonders_Planung_E_Ausgabe_Besonders_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_planungEAusgabeBesonders_Planung_E_Ausgabe_Besonders_AttributeGroup.gif
new file mode 100644
index 0000000000..f296b31416
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_planungEAusgabeBesonders_Planung_E_Ausgabe_Besonders_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_planungEHandlung_Planung_E_Handlung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_planungEHandlung_Planung_E_Handlung_AttributeGroup.gif
new file mode 100644
index 0000000000..504fdc4384
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_planungEHandlung_Planung_E_Handlung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_referenzPlanungBasis_Referenz_Planung_Basis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_referenzPlanungBasis_Referenz_Planung_Basis_TypeClass.gif
new file mode 100644
index 0000000000..1d08a11744
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Einzel_referenzPlanungBasis_Referenz_Planung_Basis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_anhangBAST_Anhang.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_anhangBAST_Anhang.gif
new file mode 100644
index 0000000000..d021963654
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_anhangBAST_Anhang.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_datumAbschlussGruppe_Datum_Abschluss_Gruppe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_datumAbschlussGruppe_Datum_Abschluss_Gruppe_TypeClass.gif
new file mode 100644
index 0000000000..3145d05beb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_datumAbschlussGruppe_Datum_Abschluss_Gruppe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_planProXSDVersion_PlanPro_XSD_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_planProXSDVersion_PlanPro_XSD_Version_TypeClass.gif
new file mode 100644
index 0000000000..be505f92e0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_planProXSDVersion_PlanPro_XSD_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_planungGArtBesonders_Planung_G_Art_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_planungGArtBesonders_Planung_G_Art_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..da8415c3c7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_planungGArtBesonders_Planung_G_Art_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_untergewerkArt_Untergewerk_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_untergewerkArt_Untergewerk_Art_TypeClass.gif
new file mode 100644
index 0000000000..a92469c4a6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_untergewerkArt_Untergewerk_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_verantwortlicheStelleDB_Verantwortliche_Stelle_DB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_verantwortlicheStelleDB_Verantwortliche_Stelle_DB_TypeClass.gif
new file mode 100644
index 0000000000..6243419e92
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Allg_AttributeGroup_verantwortlicheStelleDB_Verantwortliche_Stelle_DB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Fuehrende_Strecke_AttributeGroup_streckeAbschnitt_Strecke_Abschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Fuehrende_Strecke_AttributeGroup_streckeAbschnitt_Strecke_Abschnitt_TypeClass.gif
new file mode 100644
index 0000000000..353f5ebb6b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Fuehrende_Strecke_AttributeGroup_streckeAbschnitt_Strecke_Abschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Fuehrende_Strecke_AttributeGroup_streckeKm_Strecke_Km_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Fuehrende_Strecke_AttributeGroup_streckeKm_Strecke_Km_TypeClass.gif
new file mode 100644
index 0000000000..885be3ddf9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Fuehrende_Strecke_AttributeGroup_streckeKm_Strecke_Km_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Fuehrende_Strecke_AttributeGroup_streckeNummer_Strecke_Nummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Fuehrende_Strecke_AttributeGroup_streckeNummer_Strecke_Nummer_TypeClass.gif
new file mode 100644
index 0000000000..925e79dd8e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Fuehrende_Strecke_AttributeGroup_streckeNummer_Strecke_Nummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_bauabschnitt_Bauabschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_bauabschnitt_Bauabschnitt_TypeClass.gif
new file mode 100644
index 0000000000..0cf27b2923
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_bauabschnitt_Bauabschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_bezeichnungAnlage_Bezeichnung_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_bezeichnungAnlage_Bezeichnung_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..07b0fd9895
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_bezeichnungAnlage_Bezeichnung_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_bezeichnungPlanungGruppe_Bezeichnung_Planung_Gruppe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_bezeichnungPlanungGruppe_Bezeichnung_Planung_Gruppe_TypeClass.gif
new file mode 100644
index 0000000000..b9cd878de7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_bezeichnungPlanungGruppe_Bezeichnung_Planung_Gruppe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_bezeichnungUnteranlage_Bezeichnung_Unteranlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_bezeichnungUnteranlage_Bezeichnung_Unteranlage_TypeClass.gif
new file mode 100644
index 0000000000..40615e7c02
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_bezeichnungUnteranlage_Bezeichnung_Unteranlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_planungsbueroLogo_Anhang.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_planungsbueroLogo_Anhang.gif
new file mode 100644
index 0000000000..9a2424e4ee
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_planungsbueroLogo_Anhang.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_planungsbuero_Organisation.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_planungsbuero_Organisation.gif
new file mode 100644
index 0000000000..6f74245406
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_G_Schriftfeld_AttributeGroup_planungsbuero_Organisation.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_fuehrendeOertlichkeit_Fuehrende_Oertlichkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_fuehrendeOertlichkeit_Fuehrende_Oertlichkeit_TypeClass.gif
new file mode 100644
index 0000000000..63deb7e8cc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_fuehrendeOertlichkeit_Fuehrende_Oertlichkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_lSTPlanungEinzel_Planung_Einzel.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_lSTPlanungEinzel_Planung_Einzel.gif
new file mode 100644
index 0000000000..43035507ee
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_lSTPlanungEinzel_Planung_Einzel.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_planungGAllg_Planung_G_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_planungGAllg_Planung_G_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..02c6c3c694
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_planungGAllg_Planung_G_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_planungGFuehrendeStrecke_Planung_G_Fuehrende_Strecke_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_planungGFuehrendeStrecke_Planung_G_Fuehrende_Strecke_AttributeGroup.gif
new file mode 100644
index 0000000000..1d169590e8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_planungGFuehrendeStrecke_Planung_G_Fuehrende_Strecke_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_planungGSchriftfeld_Planung_G_Schriftfeld_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_planungGSchriftfeld_Planung_G_Schriftfeld_AttributeGroup.gif
new file mode 100644
index 0000000000..c0dddc3bff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_planungGSchriftfeld_Planung_G_Schriftfeld_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_polygoneBetrachtungsbereich_Polygone_Betrachtungsbereich_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_polygoneBetrachtungsbereich_Polygone_Betrachtungsbereich_AttributeGroup.gif
new file mode 100644
index 0000000000..589ded3dfb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_polygoneBetrachtungsbereich_Polygone_Betrachtungsbereich_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_polygonePlanungsbereich_Polygone_Planungsbereich_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_polygonePlanungsbereich_Polygone_Planungsbereich_AttributeGroup.gif
new file mode 100644
index 0000000000..1d169590e8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Gruppe_polygonePlanungsbereich_Polygone_Planungsbereich_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_P_Allg_AttributeGroup_bezeichnungPlanungProjekt_Bezeichnung_Planung_Projekt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_P_Allg_AttributeGroup_bezeichnungPlanungProjekt_Bezeichnung_Planung_Projekt_TypeClass.gif
new file mode 100644
index 0000000000..3a4e9adb3b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_P_Allg_AttributeGroup_bezeichnungPlanungProjekt_Bezeichnung_Planung_Projekt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_P_Allg_AttributeGroup_datumAbschlussProjekt_Datum_Abschluss_Projekt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_P_Allg_AttributeGroup_datumAbschlussProjekt_Datum_Abschluss_Projekt_TypeClass.gif
new file mode 100644
index 0000000000..8566aa3c9d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_P_Allg_AttributeGroup_datumAbschlussProjekt_Datum_Abschluss_Projekt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_P_Allg_AttributeGroup_projektNummer_Projekt_Nummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_P_Allg_AttributeGroup_projektNummer_Projekt_Nummer_TypeClass.gif
new file mode 100644
index 0000000000..4ec7362a76
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_P_Allg_AttributeGroup_projektNummer_Projekt_Nummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_P_Allg_AttributeGroup_projektleiter_Akteur.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_P_Allg_AttributeGroup_projektleiter_Akteur.gif
new file mode 100644
index 0000000000..69d5e529c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_P_Allg_AttributeGroup_projektleiter_Akteur.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Projekt_lSTPlanungGruppe_Planung_Gruppe.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Projekt_lSTPlanungGruppe_Planung_Gruppe.gif
new file mode 100644
index 0000000000..794d350b60
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Projekt_lSTPlanungGruppe_Planung_Gruppe.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Projekt_planungPAllg_Planung_P_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Projekt_planungPAllg_Planung_P_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..8b0bcba73c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePlanung_Projekt_planungPAllg_Planung_P_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePolygone_Betrachtungsbereich_AttributeGroup_koordinatensystemBB_Koordinatensystem_BB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePolygone_Betrachtungsbereich_AttributeGroup_koordinatensystemBB_Koordinatensystem_BB_TypeClass.gif
new file mode 100644
index 0000000000..ce02cc1489
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePolygone_Betrachtungsbereich_AttributeGroup_koordinatensystemBB_Koordinatensystem_BB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePolygone_Betrachtungsbereich_AttributeGroup_polygonzugBetrachtungsbereich_Polygonzug_Betrachtungsbereich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePolygone_Betrachtungsbereich_AttributeGroup_polygonzugBetrachtungsbereich_Polygonzug_Betrachtungsbereich_TypeClass.gif
new file mode 100644
index 0000000000..b59fc151fe
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePolygone_Betrachtungsbereich_AttributeGroup_polygonzugBetrachtungsbereich_Polygonzug_Betrachtungsbereich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePolygone_Planungsbereich_AttributeGroup_koordinatensystemPB_Koordinatensystem_PB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePolygone_Planungsbereich_AttributeGroup_koordinatensystemPB_Koordinatensystem_PB_TypeClass.gif
new file mode 100644
index 0000000000..7ae2ea9921
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePolygone_Planungsbereich_AttributeGroup_koordinatensystemPB_Koordinatensystem_PB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePolygone_Planungsbereich_AttributeGroup_polygonzugPlanungsbereich_Polygonzug_Planungsbereich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePolygone_Planungsbereich_AttributeGroup_polygonzugPlanungsbereich_Polygonzug_Planungsbereich_TypeClass.gif
new file mode 100644
index 0000000000..925e79dd8e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePolygone_Planungsbereich_AttributeGroup_polygonzugPlanungsbereich_Polygonzug_Planungsbereich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_anzeigetext_Anzeigetext_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_anzeigetext_Anzeigetext_TypeClass.gif
new file mode 100644
index 0000000000..6b664ddff8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_anzeigetext_Anzeigetext_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_einzeldateiArt_Einzeldatei_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_einzeldateiArt_Einzeldatei_Art_TypeClass.gif
new file mode 100644
index 0000000000..3090830045
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_einzeldateiArt_Einzeldatei_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_iDBinaerdatei_ID_Binaerdaten_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_iDBinaerdatei_ID_Binaerdaten_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..3090830045
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_iDBinaerdatei_ID_Binaerdaten_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_konfigurationskennung_Konfigurationskennung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_konfigurationskennung_Konfigurationskennung_TypeClass.gif
new file mode 100644
index 0000000000..dc3ca18415
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_konfigurationskennung_Konfigurationskennung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_pruefmerkmaleBinaerdatei_Pruefmerkmale_Daten_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_pruefmerkmaleBinaerdatei_Pruefmerkmale_Daten_AttributeGroup.gif
new file mode 100644
index 0000000000..9ea845bb50
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_pruefmerkmaleBinaerdatei_Pruefmerkmale_Daten_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_pruefmerkmaleProgKomponente_Pruefmerkmale_Daten_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_pruefmerkmaleProgKomponente_Pruefmerkmale_Daten_AttributeGroup.gif
new file mode 100644
index 0000000000..9ea845bb50
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_pruefmerkmaleProgKomponente_Pruefmerkmale_Daten_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_verwendung_Verwendung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_verwendung_Verwendung_TypeClass.gif
new file mode 100644
index 0000000000..2f17416e68
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Einzel_AttributeGroup_verwendung_Verwendung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Gruppe_iDKomponenteProgrammiert_ID_Komponente_Programmiert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Gruppe_iDKomponenteProgrammiert_ID_Komponente_Programmiert_TypeClass.gif
new file mode 100644
index 0000000000..9f53f0b8f1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Gruppe_iDKomponenteProgrammiert_ID_Komponente_Programmiert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Gruppe_progDateiEinzel_Prog_Datei_Einzel_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Gruppe_progDateiEinzel_Prog_Datei_Einzel_AttributeGroup.gif
new file mode 100644
index 0000000000..002f4e523c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProg_Datei_Gruppe_progDateiEinzel_Prog_Datei_Einzel_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProxy_Objekt_lSTObjektArt_LST_Objekt_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProxy_Objekt_lSTObjektArt_LST_Objekt_Art_TypeClass.gif
new file mode 100644
index 0000000000..2a3bcb3898
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateProxy_Objekt_lSTObjektArt_LST_Objekt_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePruefmerkmale_Daten_AttributeGroup_datumAuslieferung_Datum_Auslieferung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePruefmerkmale_Daten_AttributeGroup_datumAuslieferung_Datum_Auslieferung_TypeClass.gif
new file mode 100644
index 0000000000..87bf9257eb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePruefmerkmale_Daten_AttributeGroup_datumAuslieferung_Datum_Auslieferung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePruefmerkmale_Daten_AttributeGroup_pruefsummeArt_Pruefsumme_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePruefmerkmale_Daten_AttributeGroup_pruefsummeArt_Pruefsumme_Art_TypeClass.gif
new file mode 100644
index 0000000000..58e9c25b43
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePruefmerkmale_Daten_AttributeGroup_pruefsummeArt_Pruefsumme_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePruefmerkmale_Daten_AttributeGroup_pruefsumme_Pruefsumme_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePruefmerkmale_Daten_AttributeGroup_pruefsumme_Pruefsumme_TypeClass.gif
new file mode 100644
index 0000000000..86f814b379
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePruefmerkmale_Daten_AttributeGroup_pruefsumme_Pruefsumme_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePruefmerkmale_Daten_AttributeGroup_versionAuslieferung_Version_Auslieferung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePruefmerkmale_Daten_AttributeGroup_versionAuslieferung_Version_Auslieferung_TypeClass.gif
new file mode 100644
index 0000000000..dc3ca18415
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePruefmerkmale_Daten_AttributeGroup_versionAuslieferung_Version_Auslieferung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_Strecke_AttributeGroup_iDStrecke_ID_Strecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_Strecke_AttributeGroup_iDStrecke_ID_Strecke_TypeClass.gif
new file mode 100644
index 0000000000..f9a2e4a864
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_Strecke_AttributeGroup_iDStrecke_ID_Strecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_Strecke_AttributeGroup_kmMassgebend_Km_Massgebend_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_Strecke_AttributeGroup_kmMassgebend_Km_Massgebend_TypeClass.gif
new file mode 100644
index 0000000000..93e8b6bcd9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_Strecke_AttributeGroup_kmMassgebend_Km_Massgebend_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_Strecke_AttributeGroup_streckeKm_Strecke_Km_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_Strecke_AttributeGroup_streckeKm_Strecke_Km_TypeClass.gif
new file mode 100644
index 0000000000..a49d181b57
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_Strecke_AttributeGroup_streckeKm_Strecke_Km_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_abstand_Abstand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_abstand_Abstand_TypeClass.gif
new file mode 100644
index 0000000000..fa9b519510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_abstand_Abstand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_iDGEOPunktBerechnet_ID_GEO_Punkt_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_iDGEOPunktBerechnet_ID_GEO_Punkt_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..33623fc2ef
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_iDGEOPunktBerechnet_ID_GEO_Punkt_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_iDTOPKante_ID_TOP_Kante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_iDTOPKante_ID_TOP_Kante_TypeClass.gif
new file mode 100644
index 0000000000..7afe9dc1af
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_iDTOPKante_ID_TOP_Kante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_seitlicheLage_Seitliche_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_seitlicheLage_Seitliche_Lage_TypeClass.gif
new file mode 100644
index 0000000000..15099c14d7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_seitlicheLage_Seitliche_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_seitlicherAbstand_Seitlicher_Abstand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_seitlicherAbstand_Seitlicher_Abstand_TypeClass.gif
new file mode 100644
index 0000000000..1c8df2fb93
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_seitlicherAbstand_Seitlicher_Abstand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_wirkrichtung_Wirkrichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_wirkrichtung_Wirkrichtung_TypeClass.gif
new file mode 100644
index 0000000000..761cb2b878
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_TOP_Kante_AttributeGroup_wirkrichtung_Wirkrichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_punktObjektStrecke_Punkt_Objekt_Strecke_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_punktObjektStrecke_Punkt_Objekt_Strecke_AttributeGroup.gif
new file mode 100644
index 0000000000..ba4aa919c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_punktObjektStrecke_Punkt_Objekt_Strecke_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_punktObjektTOPKante_Punkt_Objekt_TOP_Kante_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_punktObjektTOPKante_Punkt_Objekt_TOP_Kante_AttributeGroup.gif
new file mode 100644
index 0000000000..224034e9aa
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreatePunkt_Objekt_punktObjektTOPKante_Punkt_Objekt_TOP_Kante_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_Allg_AttributeGroup_rBCETCSSystemVersion_RBC_ETCS_System_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_Allg_AttributeGroup_rBCETCSSystemVersion_RBC_ETCS_System_Version_TypeClass.gif
new file mode 100644
index 0000000000..425104d76a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_Allg_AttributeGroup_rBCETCSSystemVersion_RBC_ETCS_System_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_Allg_AttributeGroup_rBCSRSVersion_RBC_SRS_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_Allg_AttributeGroup_rBCSRSVersion_RBC_SRS_Version_TypeClass.gif
new file mode 100644
index 0000000000..dfd6d3cfd9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_Allg_AttributeGroup_rBCSRSVersion_RBC_SRS_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_Allg_AttributeGroup_rufnummer_Rufnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_Allg_AttributeGroup_rufnummer_Rufnummer_TypeClass.gif
new file mode 100644
index 0000000000..7adf9acc6d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_Allg_AttributeGroup_rufnummer_Rufnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_Bezeichnung_AttributeGroup_bezeichnungRBC_Bezeichnung_RBC_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_Bezeichnung_AttributeGroup_bezeichnungRBC_Bezeichnung_RBC_TypeClass.gif
new file mode 100644
index 0000000000..d10b68ff20
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_Bezeichnung_AttributeGroup_bezeichnungRBC_Bezeichnung_RBC_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_bezeichnung_RBC_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_bezeichnung_RBC_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..89badf28dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_bezeichnung_RBC_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_eTCSAdresse_ETCS_Adresse_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_eTCSAdresse_ETCS_Adresse_AttributeGroup.gif
new file mode 100644
index 0000000000..296fdb457b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_eTCSAdresse_ETCS_Adresse_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_iDESTWZentraleinheit_ID_ESTW_Zentraleinheit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_iDESTWZentraleinheit_ID_ESTW_Zentraleinheit_TypeClass.gif
new file mode 100644
index 0000000000..5452ecdc31
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_iDESTWZentraleinheit_ID_ESTW_Zentraleinheit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_iDOertlichkeitNamensgebend_ID_Oertlichkeit_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_iDOertlichkeitNamensgebend_ID_Oertlichkeit_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..a90e8244c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_iDOertlichkeitNamensgebend_ID_Oertlichkeit_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_iDUnterbringung_ID_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_iDUnterbringung_ID_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..5766979ace
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_iDUnterbringung_ID_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_rBCAllg_RBC_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_rBCAllg_RBC_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..8390ecacad
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRBC_rBCAllg_RBC_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Allg_AttributeGroup_bild_Bild_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Allg_AttributeGroup_bild_Bild_TypeClass.gif
new file mode 100644
index 0000000000..2146504282
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Allg_AttributeGroup_bild_Bild_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Allg_AttributeGroup_rZNummer_RZ_Nummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Allg_AttributeGroup_rZNummer_RZ_Nummer_TypeClass.gif
new file mode 100644
index 0000000000..5f4cee688a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Allg_AttributeGroup_rZNummer_RZ_Nummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Allg_AttributeGroup_titel_Titel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Allg_AttributeGroup_titel_Titel_TypeClass.gif
new file mode 100644
index 0000000000..8eb45613da
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Allg_AttributeGroup_titel_Titel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Allg_AttributeGroup_untertitel_Untertitel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Allg_AttributeGroup_untertitel_Untertitel_TypeClass.gif
new file mode 100644
index 0000000000..327451149c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Allg_AttributeGroup_untertitel_Untertitel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Parameter_Allg_AttributeGroup_rZParameterName_RZ_Parameter_Name_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Parameter_Allg_AttributeGroup_rZParameterName_RZ_Parameter_Name_TypeClass.gif
new file mode 100644
index 0000000000..b49448d5e1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Parameter_Allg_AttributeGroup_rZParameterName_RZ_Parameter_Name_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Parameter_Allg_AttributeGroup_rZParameterWert_RZ_Parameter_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Parameter_Allg_AttributeGroup_rZParameterWert_RZ_Parameter_Wert_TypeClass.gif
new file mode 100644
index 0000000000..835bf4f7a5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Parameter_Allg_AttributeGroup_rZParameterWert_RZ_Parameter_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Parameter_iDRegelzeichnung_ID_Regelzeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Parameter_iDRegelzeichnung_ID_Regelzeichnung_TypeClass.gif
new file mode 100644
index 0000000000..deb9805a5a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Parameter_iDRegelzeichnung_ID_Regelzeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Parameter_regelzeichnungParameterAllg_Regelzeichnung_Parameter_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Parameter_regelzeichnungParameterAllg_Regelzeichnung_Parameter_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..538d417062
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_Parameter_regelzeichnungParameterAllg_Regelzeichnung_Parameter_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_regelzeichnungAllg_Regelzeichnung_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_regelzeichnungAllg_Regelzeichnung_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..f8b67b8143
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateRegelzeichnung_regelzeichnungAllg_Regelzeichnung_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_ausrichtungWinkel_Ausrichtung_Winkel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_ausrichtungWinkel_Ausrichtung_Winkel_TypeClass.gif
new file mode 100644
index 0000000000..968035a2b8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_ausrichtungWinkel_Ausrichtung_Winkel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_ausrichtung_Ausrichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_ausrichtung_Ausrichtung_TypeClass.gif
new file mode 100644
index 0000000000..619a36c574
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_ausrichtung_Ausrichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_baumprofil_Baumprofil_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_baumprofil_Baumprofil_TypeClass.gif
new file mode 100644
index 0000000000..5206c2e2d4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_baumprofil_Baumprofil_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_gitterbehang_Gitterbehang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_gitterbehang_Gitterbehang_TypeClass.gif
new file mode 100644
index 0000000000..de48ec6202
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_gitterbehang_Gitterbehang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_lagerungArt_Lagerung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_lagerungArt_Lagerung_Art_TypeClass.gif
new file mode 100644
index 0000000000..66a52f706c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_lagerungArt_Lagerung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_lieferlaenge_Lieferlaenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_lieferlaenge_Lieferlaenge_TypeClass.gif
new file mode 100644
index 0000000000..2e9fe7e1ba
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_lieferlaenge_Lieferlaenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_montageAusgleichsgewichte_Montage_Ausgleichsgewichte_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_montageAusgleichsgewichte_Montage_Ausgleichsgewichte_TypeClass.gif
new file mode 100644
index 0000000000..3cdecb1607
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_montageAusgleichsgewichte_Montage_Ausgleichsgewichte_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_sperrlaenge_Sperrlaenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_sperrlaenge_Sperrlaenge_TypeClass.gif
new file mode 100644
index 0000000000..e12e1fd370
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSA_Schrankenbaum_AttributeGroup_sperrlaenge_Sperrlaenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchaltmittel_Fstr_Zuordnung_iDBUEWSFstrZuordnung_ID_BUE_WS_Fstr_Zuordnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchaltmittel_Fstr_Zuordnung_iDBUEWSFstrZuordnung_ID_BUE_WS_Fstr_Zuordnung_TypeClass.gif
new file mode 100644
index 0000000000..f564476a4e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchaltmittel_Fstr_Zuordnung_iDBUEWSFstrZuordnung_ID_BUE_WS_Fstr_Zuordnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchaltmittel_Fstr_Zuordnung_iDSchaltmittelZuordnung_ID_Schaltmittel_Zuordnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchaltmittel_Fstr_Zuordnung_iDSchaltmittelZuordnung_ID_Schaltmittel_Zuordnung_TypeClass.gif
new file mode 100644
index 0000000000..fdf618977f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchaltmittel_Fstr_Zuordnung_iDSchaltmittelZuordnung_ID_Schaltmittel_Zuordnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchaltmittel_Zuordnung_iDAnforderung_ID_Anforderung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchaltmittel_Zuordnung_iDAnforderung_ID_Anforderung_TypeClass.gif
new file mode 100644
index 0000000000..37db3e582f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchaltmittel_Zuordnung_iDAnforderung_ID_Anforderung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchaltmittel_Zuordnung_iDSchalter_ID_Schalter_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchaltmittel_Zuordnung_iDSchalter_ID_Schalter_TypeClass.gif
new file mode 100644
index 0000000000..8a34e95b34
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchaltmittel_Zuordnung_iDSchalter_ID_Schalter_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchaltmittel_Zuordnung_schaltmittelFunktion_Schaltmittel_Funktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchaltmittel_Zuordnung_schaltmittelFunktion_Schaltmittel_Funktion_TypeClass.gif
new file mode 100644
index 0000000000..459f97d6b5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchaltmittel_Zuordnung_schaltmittelFunktion_Schaltmittel_Funktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_BUE_AttributeGroup_bUELage_BUE_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_BUE_AttributeGroup_bUELage_BUE_Lage_TypeClass.gif
new file mode 100644
index 0000000000..b41595970d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_BUE_AttributeGroup_bUELage_BUE_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_BUE_AttributeGroup_iDBUEAnlage_ID_BUE_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_BUE_AttributeGroup_iDBUEAnlage_ID_BUE_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..970be05e66
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_BUE_AttributeGroup_iDBUEAnlage_ID_BUE_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Bezeichnung_AttributeGroup_bezeichnungSchloss_Bezeichnung_Schloss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Bezeichnung_AttributeGroup_bezeichnungSchloss_Bezeichnung_Schloss_TypeClass.gif
new file mode 100644
index 0000000000..c5374c2e80
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Bezeichnung_AttributeGroup_bezeichnungSchloss_Bezeichnung_Schloss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Gsp_AttributeGroup_gspLage_Gsp_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Gsp_AttributeGroup_gspLage_Gsp_Lage_TypeClass.gif
new file mode 100644
index 0000000000..0dccd278a6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Gsp_AttributeGroup_gspLage_Gsp_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Gsp_AttributeGroup_iDGspElement_ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Gsp_AttributeGroup_iDGspElement_ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..0056d63c98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Gsp_AttributeGroup_iDGspElement_ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Sk_AttributeGroup_hauptschloss_Hauptschloss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Sk_AttributeGroup_hauptschloss_Hauptschloss_TypeClass.gif
new file mode 100644
index 0000000000..15a02fb1e7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Sk_AttributeGroup_hauptschloss_Hauptschloss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Sk_AttributeGroup_iDSchlosskombination_ID_Schlosskombination_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Sk_AttributeGroup_iDSchlosskombination_ID_Schlosskombination_TypeClass.gif
new file mode 100644
index 0000000000..d70b709b9b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Sk_AttributeGroup_iDSchlosskombination_ID_Schlosskombination_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Sonderanlage_AttributeGroup_beschreibungSonderanlage_Beschreibung_Sonderanlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Sonderanlage_AttributeGroup_beschreibungSonderanlage_Beschreibung_Sonderanlage_TypeClass.gif
new file mode 100644
index 0000000000..4447ddc830
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Sonderanlage_AttributeGroup_beschreibungSonderanlage_Beschreibung_Sonderanlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Sonderanlage_AttributeGroup_iDSonderanlage_ID_Sonderanlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Sonderanlage_AttributeGroup_iDSonderanlage_ID_Sonderanlage_TypeClass.gif
new file mode 100644
index 0000000000..ee18b80ec5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Sonderanlage_AttributeGroup_iDSonderanlage_ID_Sonderanlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Sonderanlage_AttributeGroup_sonderanlageLage_Sonderanlage_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Sonderanlage_AttributeGroup_sonderanlageLage_Sonderanlage_Lage_TypeClass.gif
new file mode 100644
index 0000000000..fc69df4333
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Sonderanlage_AttributeGroup_sonderanlageLage_Sonderanlage_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Ssp_AttributeGroup_iDSchluesselsperre_ID_Schluesselsperre_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Ssp_AttributeGroup_iDSchluesselsperre_ID_Schluesselsperre_TypeClass.gif
new file mode 100644
index 0000000000..8a4acfb07b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_Ssp_AttributeGroup_iDSchluesselsperre_ID_Schluesselsperre_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_W_AttributeGroup_iDWKrElement_ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_W_AttributeGroup_iDWKrElement_ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..ff53277ff1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_W_AttributeGroup_iDWKrElement_ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_W_AttributeGroup_schlossArt_Schloss_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_W_AttributeGroup_schlossArt_Schloss_Art_TypeClass.gif
new file mode 100644
index 0000000000..56785afedb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_W_AttributeGroup_schlossArt_Schloss_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_W_AttributeGroup_verschlussOrt_Verschluss_Ort_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_W_AttributeGroup_verschlussOrt_Verschluss_Ort_TypeClass.gif
new file mode 100644
index 0000000000..d23c315b85
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_W_AttributeGroup_verschlussOrt_Verschluss_Ort_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_W_AttributeGroup_wAnbaulage_W_Anbaulage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_W_AttributeGroup_wAnbaulage_W_Anbaulage_TypeClass.gif
new file mode 100644
index 0000000000..e413b8bd5a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_W_AttributeGroup_wAnbaulage_W_Anbaulage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_W_AttributeGroup_wLage_W_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_W_AttributeGroup_wLage_W_Lage_TypeClass.gif
new file mode 100644
index 0000000000..a183edc3f9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_W_AttributeGroup_wLage_W_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_bezeichnung_Schloss_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_bezeichnung_Schloss_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..d51b61d9ef
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_bezeichnung_Schloss_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_iDSchluessel_ID_Schluessel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_iDSchluessel_ID_Schluessel_TypeClass.gif
new file mode 100644
index 0000000000..05dc620268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_iDSchluessel_ID_Schluessel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossBUE_Schloss_BUE_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossBUE_Schloss_BUE_AttributeGroup.gif
new file mode 100644
index 0000000000..f7a01deeba
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossBUE_Schloss_BUE_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossGsp_Schloss_Gsp_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossGsp_Schloss_Gsp_AttributeGroup.gif
new file mode 100644
index 0000000000..e9bdf38603
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossGsp_Schloss_Gsp_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossSk_Schloss_Sk_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossSk_Schloss_Sk_AttributeGroup.gif
new file mode 100644
index 0000000000..63dbadf56c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossSk_Schloss_Sk_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossSonderanlage_Schloss_Sonderanlage_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossSonderanlage_Schloss_Sonderanlage_AttributeGroup.gif
new file mode 100644
index 0000000000..40a3b0173a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossSonderanlage_Schloss_Sonderanlage_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossSsp_Schloss_Ssp_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossSsp_Schloss_Ssp_AttributeGroup.gif
new file mode 100644
index 0000000000..e95168980f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossSsp_Schloss_Ssp_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossW_Schloss_W_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossW_Schloss_W_AttributeGroup.gif
new file mode 100644
index 0000000000..4ac9c84f95
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schlossW_Schloss_W_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schluesselInGrdstEingeschl_Schluessel_In_Grdst_Eingeschl_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schluesselInGrdstEingeschl_Schluessel_In_Grdst_Eingeschl_TypeClass.gif
new file mode 100644
index 0000000000..3799bd45b6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_schluesselInGrdstEingeschl_Schluessel_In_Grdst_Eingeschl_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_technischBerechtigter_Technisch_Berechtigter_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_technischBerechtigter_Technisch_Berechtigter_TypeClass.gif
new file mode 100644
index 0000000000..190b4e2875
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchloss_technischBerechtigter_Technisch_Berechtigter_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchlosskombination_Bezeichnung_AttributeGroup_bezeichnungSk_Bezeichnung_Sk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchlosskombination_Bezeichnung_AttributeGroup_bezeichnungSk_Bezeichnung_Sk_TypeClass.gif
new file mode 100644
index 0000000000..82807fa1fe
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchlosskombination_Bezeichnung_AttributeGroup_bezeichnungSk_Bezeichnung_Sk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchlosskombination_bezeichnung_Schlosskombination_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchlosskombination_bezeichnung_Schlosskombination_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..1b80aea5fd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchlosskombination_bezeichnung_Schlosskombination_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchlosskombination_iDUnterbringung_ID_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchlosskombination_iDUnterbringung_ID_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..02153a7fa0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchlosskombination_iDUnterbringung_ID_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluessel_Allg_AttributeGroup_schluesselBartform_Schluessel_Bartform_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluessel_Allg_AttributeGroup_schluesselBartform_Schluessel_Bartform_TypeClass.gif
new file mode 100644
index 0000000000..dad7592259
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluessel_Allg_AttributeGroup_schluesselBartform_Schluessel_Bartform_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluessel_Allg_AttributeGroup_schluesselGruppe_Schluessel_Gruppe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluessel_Allg_AttributeGroup_schluesselGruppe_Schluessel_Gruppe_TypeClass.gif
new file mode 100644
index 0000000000..a75fd205d2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluessel_Allg_AttributeGroup_schluesselGruppe_Schluessel_Gruppe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluessel_Bezeichnung_AttributeGroup_bezeichnungSchluessel_Bezeichnung_Schluessel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluessel_Bezeichnung_AttributeGroup_bezeichnungSchluessel_Bezeichnung_Schluessel_TypeClass.gif
new file mode 100644
index 0000000000..5777ba5f48
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluessel_Bezeichnung_AttributeGroup_bezeichnungSchluessel_Bezeichnung_Schluessel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluessel_bezeichnung_Schluessel_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluessel_bezeichnung_Schluessel_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..df29197e26
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluessel_bezeichnung_Schluessel_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluessel_schluesselAllg_Schluessel_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluessel_schluesselAllg_Schluessel_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..4b36c8a973
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluessel_schluesselAllg_Schluessel_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluesselsperre_bedienungArt_Bedienung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluesselsperre_bedienungArt_Bedienung_Art_TypeClass.gif
new file mode 100644
index 0000000000..e0eff207e6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluesselsperre_bedienungArt_Bedienung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluesselsperre_bezeichnung_Bezeichnung_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluesselsperre_bezeichnung_Bezeichnung_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..e4f5f229ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluesselsperre_bezeichnung_Bezeichnung_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluesselsperre_iDStellelement_ID_Stellelement_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluesselsperre_iDStellelement_ID_Stellelement_TypeClass.gif
new file mode 100644
index 0000000000..ae6b2e6429
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluesselsperre_iDStellelement_ID_Stellelement_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluesselsperre_iDUnterbringung_ID_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluesselsperre_iDUnterbringung_ID_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..91e3ddb502
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchluesselsperre_iDUnterbringung_ID_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_Allg_AttributeGroup_abstandGehwegFahrbahn_Abstand_Gehweg_Fahrbahn_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_Allg_AttributeGroup_abstandGehwegFahrbahn_Abstand_Gehweg_Fahrbahn_TypeClass.gif
new file mode 100644
index 0000000000..c53d8e9188
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_Allg_AttributeGroup_abstandGehwegFahrbahn_Abstand_Gehweg_Fahrbahn_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif
new file mode 100644
index 0000000000..3e8f733154
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_Allg_AttributeGroup_schaltgruppe_Schaltgruppe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_Allg_AttributeGroup_schaltgruppe_Schaltgruppe_TypeClass.gif
new file mode 100644
index 0000000000..4d51bba34a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_Allg_AttributeGroup_schaltgruppe_Schaltgruppe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_Bezeichnung_AttributeGroup_bezSchrankenantrieb_Bez_Schrankenantrieb_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_Bezeichnung_AttributeGroup_bezSchrankenantrieb_Bez_Schrankenantrieb_TypeClass.gif
new file mode 100644
index 0000000000..d7dcab430b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_Bezeichnung_AttributeGroup_bezSchrankenantrieb_Bez_Schrankenantrieb_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_bezeichnung_Schrankenantrieb_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_bezeichnung_Schrankenantrieb_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..1ea8e02c5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_bezeichnung_Schrankenantrieb_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..4d9762f2ed
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_sASchrankenbaum_SA_Schrankenbaum_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_sASchrankenbaum_SA_Schrankenbaum_AttributeGroup.gif
new file mode 100644
index 0000000000..922e8ab7b7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_sASchrankenbaum_SA_Schrankenbaum_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_schrankenantriebAllg_Schrankenantrieb_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_schrankenantriebAllg_Schrankenantrieb_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..61e87ecee1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSchrankenantrieb_schrankenantriebAllg_Schrankenantrieb_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_Allg_AttributeGroup_befestigungArt_Befestigung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_Allg_AttributeGroup_befestigungArt_Befestigung_Art_TypeClass.gif
new file mode 100644
index 0000000000..1641e4428e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_Allg_AttributeGroup_befestigungArt_Befestigung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_Allg_AttributeGroup_fundamentArt_Fundament_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_Allg_AttributeGroup_fundamentArt_Fundament_Art_TypeClass.gif
new file mode 100644
index 0000000000..1875b139ec
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_Allg_AttributeGroup_fundamentArt_Fundament_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_Allg_AttributeGroup_hoeheFundamentoberkante_Hoehe_Fundamentoberkante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_Allg_AttributeGroup_hoeheFundamentoberkante_Hoehe_Fundamentoberkante_TypeClass.gif
new file mode 100644
index 0000000000..78db69615d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_Allg_AttributeGroup_hoeheFundamentoberkante_Hoehe_Fundamentoberkante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_Allg_AttributeGroup_obereLichtpunkthoehe_Obere_Lichtpunkthoehe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_Allg_AttributeGroup_obereLichtpunkthoehe_Obere_Lichtpunkthoehe_TypeClass.gif
new file mode 100644
index 0000000000..fee426e9e2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_Allg_AttributeGroup_obereLichtpunkthoehe_Obere_Lichtpunkthoehe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_iDBefestigungBauwerk_ID_Befestigung_Bauwerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_iDBefestigungBauwerk_ID_Befestigung_Bauwerk_TypeClass.gif
new file mode 100644
index 0000000000..fb357f5d86
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_iDBefestigungBauwerk_ID_Befestigung_Bauwerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_iDRegelzeichnung_ID_Regelzeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_iDRegelzeichnung_ID_Regelzeichnung_TypeClass.gif
new file mode 100644
index 0000000000..77a06f5f4c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_iDRegelzeichnung_ID_Regelzeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_iDSignalBefestigung_ID_Signal_Befestigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_iDSignalBefestigung_ID_Signal_Befestigung_TypeClass.gif
new file mode 100644
index 0000000000..ca92866c7c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_iDSignalBefestigung_ID_Signal_Befestigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_signalBefestigungAllg_Signal_Befestigung_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_signalBefestigungAllg_Signal_Befestigung_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..1d91288bbd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Befestigung_signalBefestigungAllg_Signal_Befestigung_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fank_Zuordnung_iDSignalFank_ID_Signal_Fank_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fank_Zuordnung_iDSignalFank_ID_Signal_Fank_TypeClass.gif
new file mode 100644
index 0000000000..305fa05b3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fank_Zuordnung_iDSignalFank_ID_Signal_Fank_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fank_Zuordnung_iDSignalStart_ID_Signal_Start_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fank_Zuordnung_iDSignalStart_ID_Signal_Start_TypeClass.gif
new file mode 100644
index 0000000000..b03123db08
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fank_Zuordnung_iDSignalStart_ID_Signal_Start_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fiktiv_AttributeGroup_autoEinstellung_Auto_Einstellung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fiktiv_AttributeGroup_autoEinstellung_Auto_Einstellung_TypeClass.gif
new file mode 100644
index 0000000000..c5686b5c01
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fiktiv_AttributeGroup_autoEinstellung_Auto_Einstellung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fiktiv_AttributeGroup_fiktivesSignalFunktion_Fiktives_Signal_Funktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fiktiv_AttributeGroup_fiktivesSignalFunktion_Fiktives_Signal_Funktion_TypeClass.gif
new file mode 100644
index 0000000000..9e34a5327b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fiktiv_AttributeGroup_fiktivesSignalFunktion_Fiktives_Signal_Funktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_AttributeGroup_besetzteAusfahrt_Besetzte_Ausfahrt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_AttributeGroup_besetzteAusfahrt_Besetzte_Ausfahrt_TypeClass.gif
new file mode 100644
index 0000000000..9696206ef1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_AttributeGroup_besetzteAusfahrt_Besetzte_Ausfahrt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_AttributeGroup_dAManuell_DA_Manuell_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_AttributeGroup_dAManuell_DA_Manuell_TypeClass.gif
new file mode 100644
index 0000000000..9130fd6865
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_AttributeGroup_dAManuell_DA_Manuell_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_AttributeGroup_durchfahrt_Durchfahrt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_AttributeGroup_durchfahrt_Durchfahrt_TypeClass.gif
new file mode 100644
index 0000000000..16048d0b3f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_AttributeGroup_durchfahrt_Durchfahrt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_AttributeGroup_iDRaZielErlaubnisabhaengig_ID_Block_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_AttributeGroup_iDRaZielErlaubnisabhaengig_ID_Block_Element_TypeClass.gif
new file mode 100644
index 0000000000..3dcea4ecb0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_AttributeGroup_iDRaZielErlaubnisabhaengig_ID_Block_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_AttributeGroup_rangierstrasseRestaufloesung_Rangierstrasse_Restaufloesung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_AttributeGroup_rangierstrasseRestaufloesung_Rangierstrasse_Restaufloesung_TypeClass.gif
new file mode 100644
index 0000000000..82bf8d2f6f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_AttributeGroup_rangierstrasseRestaufloesung_Rangierstrasse_Restaufloesung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_Aus_Inselgleis_AttributeGroup_iDRaFahrtGleichzeitigVerbot_ID_Signal_Gleisbezechnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_Aus_Inselgleis_AttributeGroup_iDRaFahrtGleichzeitigVerbot_ID_Signal_Gleisbezechnung_TypeClass.gif
new file mode 100644
index 0000000000..08a9ac0492
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_Aus_Inselgleis_AttributeGroup_iDRaFahrtGleichzeitigVerbot_ID_Signal_Gleisbezechnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_Aus_Inselgleis_AttributeGroup_iDZgFahrtGleichzeitigVerbot_ID_Signal_Gleisbezechnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_Aus_Inselgleis_AttributeGroup_iDZgFahrtGleichzeitigVerbot_ID_Signal_Gleisbezechnung_TypeClass.gif
new file mode 100644
index 0000000000..08a9ac0492
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_Aus_Inselgleis_AttributeGroup_iDZgFahrtGleichzeitigVerbot_ID_Signal_Gleisbezechnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_S_AttributeGroup_gegengleis_Gegengleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_S_AttributeGroup_gegengleis_Gegengleis_TypeClass.gif
new file mode 100644
index 0000000000..8247b72d57
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_S_AttributeGroup_gegengleis_Gegengleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_S_AttributeGroup_iDAnrueckverschluss_ID_Schaltmittel_Zuordnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_S_AttributeGroup_iDAnrueckverschluss_ID_Schaltmittel_Zuordnung_TypeClass.gif
new file mode 100644
index 0000000000..de6af47e2e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_S_AttributeGroup_iDAnrueckverschluss_ID_Schaltmittel_Zuordnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_S_AttributeGroup_iDZweitesHaltfallkriterium_ID_Zweites_Haltfallkriterium_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_S_AttributeGroup_iDZweitesHaltfallkriterium_ID_Zweites_Haltfallkriterium_TypeClass.gif
new file mode 100644
index 0000000000..446308819c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Fstr_S_AttributeGroup_iDZweitesHaltfallkriterium_ID_Zweites_Haltfallkriterium_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_iDRegelzeichnung_ID_Regelzeichnung_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_iDRegelzeichnung_ID_Regelzeichnung_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..5c5a999f88
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_iDRegelzeichnung_ID_Regelzeichnung_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_iDSignalBefestigung_ID_Signal_Befestigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_iDSignalBefestigung_ID_Signal_Befestigung_TypeClass.gif
new file mode 100644
index 0000000000..eb4dbff07c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_iDSignalBefestigung_ID_Signal_Befestigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_iDSignalNachordnung_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_iDSignalNachordnung_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..38266029cb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_iDSignalNachordnung_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_iDSignal_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_iDSignal_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..38266029cb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_iDSignal_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_rahmenArt_Rahmen_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_rahmenArt_Rahmen_Art_TypeClass.gif
new file mode 100644
index 0000000000..953202770b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_rahmenArt_Rahmen_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_rahmenHoehe_Rahmen_Hoehe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_rahmenHoehe_Rahmen_Hoehe_TypeClass.gif
new file mode 100644
index 0000000000..f76ecf0406
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Rahmen_rahmenHoehe_Rahmen_Hoehe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_AttributeGroup_autoEinstellung_Auto_Einstellung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_AttributeGroup_autoEinstellung_Auto_Einstellung_TypeClass.gif
new file mode 100644
index 0000000000..e7f28e19c6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_AttributeGroup_autoEinstellung_Auto_Einstellung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_AttributeGroup_iDStellelement_ID_Stellelement_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_AttributeGroup_iDStellelement_ID_Stellelement_TypeClass.gif
new file mode 100644
index 0000000000..db9d0e3f51
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_AttributeGroup_iDStellelement_ID_Stellelement_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_AttributeGroup_sonstigeZulaessigeAnordnung_Sonstige_Zulaessige_Anordnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_AttributeGroup_sonstigeZulaessigeAnordnung_Sonstige_Zulaessige_Anordnung_TypeClass.gif
new file mode 100644
index 0000000000..f5be1558dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_AttributeGroup_sonstigeZulaessigeAnordnung_Sonstige_Zulaessige_Anordnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_AttributeGroup_tunnelsignal_Tunnelsignal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_AttributeGroup_tunnelsignal_Tunnelsignal_TypeClass.gif
new file mode 100644
index 0000000000..9c4e0af14e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_AttributeGroup_tunnelsignal_Tunnelsignal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_richtpunkt_Richtpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_richtpunkt_Richtpunkt_TypeClass.gif
new file mode 100644
index 0000000000..c31e7a2bca
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_richtpunkt_Richtpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_richtpunktentfernung_Richtpunktentfernung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_richtpunktentfernung_Richtpunktentfernung_TypeClass.gif
new file mode 100644
index 0000000000..1e449c6284
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_richtpunktentfernung_Richtpunktentfernung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_signalArt_Signal_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_signalArt_Signal_Art_TypeClass.gif
new file mode 100644
index 0000000000..a4f320bf02
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_signalArt_Signal_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_signalsystem_Signalsystem_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_signalsystem_Signalsystem_TypeClass.gif
new file mode 100644
index 0000000000..44d35f2c07
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_signalsystem_Signalsystem_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_streuscheibeArt_Streuscheibe_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_streuscheibeArt_Streuscheibe_Art_TypeClass.gif
new file mode 100644
index 0000000000..6678f80694
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_streuscheibeArt_Streuscheibe_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_streuscheibeBetriebsstellung_Streuscheibe_Betriebsstellung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_streuscheibeBetriebsstellung_Streuscheibe_Betriebsstellung_TypeClass.gif
new file mode 100644
index 0000000000..1076882a3e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_Aktiv_Schirm_AttributeGroup_streuscheibeBetriebsstellung_Streuscheibe_Betriebsstellung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_dunkelschaltung_Dunkelschaltung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_dunkelschaltung_Dunkelschaltung_TypeClass.gif
new file mode 100644
index 0000000000..d89ab7a67f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_dunkelschaltung_Dunkelschaltung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_funktionOhneSignal_Funktion_Ohne_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_funktionOhneSignal_Funktion_Ohne_Signal_TypeClass.gif
new file mode 100644
index 0000000000..1543d3c0c7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_funktionOhneSignal_Funktion_Ohne_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_geltungsbereich_Geltungsbereich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_geltungsbereich_Geltungsbereich_TypeClass.gif
new file mode 100644
index 0000000000..3b0b44472f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_geltungsbereich_Geltungsbereich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalBefestigungsart_Signal_Befestigungsart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalBefestigungsart_Signal_Befestigungsart_TypeClass.gif
new file mode 100644
index 0000000000..24686d6cdc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalBefestigungsart_Signal_Befestigungsart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalFunktion_Signal_Funktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalFunktion_Signal_Funktion_TypeClass.gif
new file mode 100644
index 0000000000..3d00c57ceb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalFunktion_Signal_Funktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalRealAktivSchirm_Signal_Real_Aktiv_Schirm_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalRealAktivSchirm_Signal_Real_Aktiv_Schirm_AttributeGroup.gif
new file mode 100644
index 0000000000..1667bbeb6b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalRealAktivSchirm_Signal_Real_Aktiv_Schirm_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalRealAktiv_Signal_Real_Aktiv_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalRealAktiv_Signal_Real_Aktiv_AttributeGroup.gif
new file mode 100644
index 0000000000..44d87cb33c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalRealAktiv_Signal_Real_Aktiv_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalsichtErreichbar_Signalsicht_Erreichbar_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalsichtErreichbar_Signalsicht_Erreichbar_TypeClass.gif
new file mode 100644
index 0000000000..93e8b6bcd9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalsichtErreichbar_Signalsicht_Erreichbar_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalsichtMindest_Signalsicht_Mindest_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalsichtMindest_Signalsicht_Mindest_TypeClass.gif
new file mode 100644
index 0000000000..7ffd04aed3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalsichtMindest_Signalsicht_Mindest_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalsichtSoll_Signalsicht_Soll_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalsichtSoll_Signalsicht_Soll_TypeClass.gif
new file mode 100644
index 0000000000..2f9b78f261
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Real_AttributeGroup_signalsichtSoll_Signalsicht_Soll_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_Allg_AttributeGroup_anschaltdauer_Anschaltdauer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_Allg_AttributeGroup_anschaltdauer_Anschaltdauer_TypeClass.gif
new file mode 100644
index 0000000000..af44325179
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_Allg_AttributeGroup_anschaltdauer_Anschaltdauer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_Allg_AttributeGroup_beleuchtet_Beleuchtet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_Allg_AttributeGroup_beleuchtet_Beleuchtet_TypeClass.gif
new file mode 100644
index 0000000000..90d0d79dc3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_Allg_AttributeGroup_beleuchtet_Beleuchtet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_Allg_AttributeGroup_geschaltet_Geschaltet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_Allg_AttributeGroup_geschaltet_Geschaltet_TypeClass.gif
new file mode 100644
index 0000000000..f496e2f137
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_Allg_AttributeGroup_geschaltet_Geschaltet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_Allg_AttributeGroup_zs2Ueberwacht_Zs2_Ueberwacht_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_Allg_AttributeGroup_zs2Ueberwacht_Zs2_Ueberwacht_TypeClass.gif
new file mode 100644
index 0000000000..e5f323d1f4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_Allg_AttributeGroup_zs2Ueberwacht_Zs2_Ueberwacht_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_iDSignalRahmen_ID_Signal_Rahmen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_iDSignalRahmen_ID_Signal_Rahmen_TypeClass.gif
new file mode 100644
index 0000000000..880f2572d8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_iDSignalRahmen_ID_Signal_Rahmen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_signalSignalbegriffAllg_Signal_Signalbegriff_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_signalSignalbegriffAllg_Signal_Signalbegriff_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..c398dcf1c5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_Signalbegriff_signalSignalbegriffAllg_Signal_Signalbegriff_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_bezeichnung_Bezeichnung_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_bezeichnung_Bezeichnung_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..9ea845bb50
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_bezeichnung_Bezeichnung_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_pZBSchutzstreckeSoll_PZB_Schutzstrecke_Soll_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_pZBSchutzstreckeSoll_PZB_Schutzstrecke_Soll_TypeClass.gif
new file mode 100644
index 0000000000..1ed56d47f0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_pZBSchutzstreckeSoll_PZB_Schutzstrecke_Soll_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_signalFiktiv_Signal_Fiktiv_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_signalFiktiv_Signal_Fiktiv_AttributeGroup.gif
new file mode 100644
index 0000000000..b2f75a7faf
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_signalFiktiv_Signal_Fiktiv_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_signalFstrAusInselgleis_Signal_Fstr_Aus_Inselgleis_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_signalFstrAusInselgleis_Signal_Fstr_Aus_Inselgleis_AttributeGroup.gif
new file mode 100644
index 0000000000..3090830045
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_signalFstrAusInselgleis_Signal_Fstr_Aus_Inselgleis_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_signalFstrS_Signal_Fstr_S_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_signalFstrS_Signal_Fstr_S_AttributeGroup.gif
new file mode 100644
index 0000000000..4096600c25
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_signalFstrS_Signal_Fstr_S_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_signalFstr_Signal_Fstr_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_signalFstr_Signal_Fstr_AttributeGroup.gif
new file mode 100644
index 0000000000..338a9a6c72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_signalFstr_Signal_Fstr_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_signalReal_Signal_Real_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_signalReal_Signal_Real_AttributeGroup.gif
new file mode 100644
index 0000000000..bcd843952b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSignal_signalReal_Signal_Real_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSonstiger_Punkt_iDBeginnBereich_ID_Beginn_Bereich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSonstiger_Punkt_iDBeginnBereich_ID_Beginn_Bereich_TypeClass.gif
new file mode 100644
index 0000000000..a488171ffe
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateSonstiger_Punkt_iDBeginnBereich_ID_Beginn_Bereich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStart_W_Element_AttributeGroup_iDStartWElement_ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStart_W_Element_AttributeGroup_iDStartWElement_ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..43b6efcccd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStart_W_Element_AttributeGroup_iDStartWElement_ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStart_W_Element_AttributeGroup_wAnschluss_W_Anschluss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStart_W_Element_AttributeGroup_wAnschluss_W_Anschluss_TypeClass.gif
new file mode 100644
index 0000000000..c5dab99a76
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStart_W_Element_AttributeGroup_wAnschluss_W_Anschluss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStell_Bereich_bezeichnungStellwerk_Bezeichnung_Stellwerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStell_Bereich_bezeichnungStellwerk_Bezeichnung_Stellwerk_TypeClass.gif
new file mode 100644
index 0000000000..1623e88e3d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStell_Bereich_bezeichnungStellwerk_Bezeichnung_Stellwerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStell_Bereich_iDAussenelementansteuerung_ID_Aussenelementansteuerung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStell_Bereich_iDAussenelementansteuerung_ID_Aussenelementansteuerung_TypeClass.gif
new file mode 100644
index 0000000000..3052dce139
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStell_Bereich_iDAussenelementansteuerung_ID_Aussenelementansteuerung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStell_Bereich_zusatzinformationStellwerk_Zusatzinformation_Stellwerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStell_Bereich_zusatzinformationStellwerk_Zusatzinformation_Stellwerk_TypeClass.gif
new file mode 100644
index 0000000000..e6388bf07a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStell_Bereich_zusatzinformationStellwerk_Zusatzinformation_Stellwerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStellelement_iDEnergie_ID_Aussenelementansteuerung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStellelement_iDEnergie_ID_Aussenelementansteuerung_TypeClass.gif
new file mode 100644
index 0000000000..481a995094
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStellelement_iDEnergie_ID_Aussenelementansteuerung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStellelement_iDInformation_ID_Aussenelementansteuerung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStellelement_iDInformation_ID_Aussenelementansteuerung_TypeClass.gif
new file mode 100644
index 0000000000..481a995094
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStellelement_iDInformation_ID_Aussenelementansteuerung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Bezeichnung_AttributeGroup_bezeichnungStrecke_Bezeichnung_Strecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Bezeichnung_AttributeGroup_bezeichnungStrecke_Bezeichnung_Strecke_TypeClass.gif
new file mode 100644
index 0000000000..025f0306c7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Bezeichnung_AttributeGroup_bezeichnungStrecke_Bezeichnung_Strecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Bremsweg_bremsweg_Bremsweg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Bremsweg_bremsweg_Bremsweg_TypeClass.gif
new file mode 100644
index 0000000000..5204d4b6a9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Bremsweg_bremsweg_Bremsweg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Bremsweg_streckeRichtung_Strecke_Richtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Bremsweg_streckeRichtung_Strecke_Richtung_TypeClass.gif
new file mode 100644
index 0000000000..0056d63c98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Bremsweg_streckeRichtung_Strecke_Richtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Punkt_iDGEOKnoten_ID_GEO_Knoten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Punkt_iDGEOKnoten_ID_GEO_Knoten_TypeClass.gif
new file mode 100644
index 0000000000..62446fb2c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Punkt_iDGEOKnoten_ID_GEO_Knoten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Punkt_iDStrecke_ID_Strecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Punkt_iDStrecke_ID_Strecke_TypeClass.gif
new file mode 100644
index 0000000000..ebe40ea086
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Punkt_iDStrecke_ID_Strecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Punkt_streckeMeter_Strecke_Meter_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Punkt_streckeMeter_Strecke_Meter_TypeClass.gif
new file mode 100644
index 0000000000..f6c9c1bc2f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_Punkt_streckeMeter_Strecke_Meter_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_bezeichnung_Strecke_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_bezeichnung_Strecke_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..4e2915eef0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateStrecke_bezeichnung_Strecke_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_Allg_AttributeGroup_kantenname_Kantenname_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_Allg_AttributeGroup_kantenname_Kantenname_TypeClass.gif
new file mode 100644
index 0000000000..6c71b4cfb3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_Allg_AttributeGroup_kantenname_Kantenname_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_Allg_AttributeGroup_tOPAnschlussA_TOP_Anschluss_A_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_Allg_AttributeGroup_tOPAnschlussA_TOP_Anschluss_A_TypeClass.gif
new file mode 100644
index 0000000000..b818d2fec0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_Allg_AttributeGroup_tOPAnschlussA_TOP_Anschluss_A_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_Allg_AttributeGroup_tOPAnschlussB_TOP_Anschluss_B_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_Allg_AttributeGroup_tOPAnschlussB_TOP_Anschluss_B_TypeClass.gif
new file mode 100644
index 0000000000..5d7a6e0f66
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_Allg_AttributeGroup_tOPAnschlussB_TOP_Anschluss_B_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_Allg_AttributeGroup_tOPLaenge_TOP_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_Allg_AttributeGroup_tOPLaenge_TOP_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..eeca32a9be
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_Allg_AttributeGroup_tOPLaenge_TOP_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_iDTOPKnotenA_ID_TOP_Knoten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_iDTOPKnotenA_ID_TOP_Knoten_TypeClass.gif
new file mode 100644
index 0000000000..8edf151091
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_iDTOPKnotenA_ID_TOP_Knoten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_iDTOPKnotenB_ID_TOP_Knoten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_iDTOPKnotenB_ID_TOP_Knoten_TypeClass.gif
new file mode 100644
index 0000000000..8edf151091
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_iDTOPKnotenB_ID_TOP_Knoten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_tOPKanteAllg_TOP_Kante_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_tOPKanteAllg_TOP_Kante_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..42586633e4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Kante_tOPKanteAllg_TOP_Kante_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Knoten_iDGEOKnoten_ID_GEO_Knoten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Knoten_iDGEOKnoten_ID_GEO_Knoten_TypeClass.gif
new file mode 100644
index 0000000000..c432db27f7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Knoten_iDGEOKnoten_ID_GEO_Knoten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Knoten_knotenname_Knotenname_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Knoten_knotenname_Knotenname_TypeClass.gif
new file mode 100644
index 0000000000..4f520a39ac
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTOP_Knoten_knotenname_Knotenname_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockBlau_IP_Adressblock_Blau_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockBlau_IP_Adressblock_Blau_TypeClass.gif
new file mode 100644
index 0000000000..fe708946d5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockBlau_IP_Adressblock_Blau_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockGrau_IP_Adressblock_Grau_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockGrau_IP_Adressblock_Grau_TypeClass.gif
new file mode 100644
index 0000000000..fe1b5ce453
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockGrau_IP_Adressblock_Grau_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_AB_Teilsystem_AttributeGroup_tSOTeilsystemArt_TSO_Teilsystem_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_AB_Teilsystem_AttributeGroup_tSOTeilsystemArt_TSO_Teilsystem_Art_TypeClass.gif
new file mode 100644
index 0000000000..c45d7459f2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_AB_Teilsystem_AttributeGroup_tSOTeilsystemArt_TSO_Teilsystem_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV4_IP_Adressblock_Blau_V4_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV4_IP_Adressblock_Blau_V4_TypeClass.gif
new file mode 100644
index 0000000000..a15cacf919
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV4_IP_Adressblock_Blau_V4_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV6_IP_Adressblock_Blau_V6_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV6_IP_Adressblock_Blau_V6_TypeClass.gif
new file mode 100644
index 0000000000..a072b20c7a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV6_IP_Adressblock_Blau_V6_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV4_IP_Adressblock_Grau_V4_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV4_IP_Adressblock_Grau_V4_TypeClass.gif
new file mode 100644
index 0000000000..ddd2316b4e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV4_IP_Adressblock_Grau_V4_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV6_IP_Adressblock_Grau_V6_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV6_IP_Adressblock_Grau_V6_TypeClass.gif
new file mode 100644
index 0000000000..2f7d4aa96b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV6_IP_Adressblock_Grau_V6_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_regionalbereich_Regionalbereich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_regionalbereich_Regionalbereich_TypeClass.gif
new file mode 100644
index 0000000000..b7be165700
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_regionalbereich_Regionalbereich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_tSOIPABTeilsystem_TSO_IP_AB_Teilsystem_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_tSOIPABTeilsystem_TSO_IP_AB_Teilsystem_AttributeGroup.gif
new file mode 100644
index 0000000000..42030b51ce
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTSO_IP_Adressblock_AttributeGroup_tSOIPABTeilsystem_TSO_IP_AB_Teilsystem_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnik_Standort_Bezeichnung_AttributeGroup_bezeichnungTSO_Bezeichnung_TSO_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnik_Standort_Bezeichnung_AttributeGroup_bezeichnungTSO_Bezeichnung_TSO_TypeClass.gif
new file mode 100644
index 0000000000..c750823d36
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnik_Standort_Bezeichnung_AttributeGroup_bezeichnungTSO_Bezeichnung_TSO_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnik_Standort_bezeichnung_Technik_Standort_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnik_Standort_bezeichnung_Technik_Standort_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..9e34a5327b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnik_Standort_bezeichnung_Technik_Standort_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnik_Standort_iDBedienStandort_ID_Bedien_Standort_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnik_Standort_iDBedienStandort_ID_Bedien_Standort_TypeClass.gif
new file mode 100644
index 0000000000..cd537c887d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnik_Standort_iDBedienStandort_ID_Bedien_Standort_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnik_Standort_iDUnterbringung_ID_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnik_Standort_iDUnterbringung_ID_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..a12f58d3e5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnik_Standort_iDUnterbringung_ID_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnik_Standort_tSOIPAdressblock_TSO_IP_Adressblock_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnik_Standort_tSOIPAdressblock_TSO_IP_Adressblock_AttributeGroup.gif
new file mode 100644
index 0000000000..845e9f477f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnik_Standort_tSOIPAdressblock_TSO_IP_Adressblock_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnischer_Bereich_tBArt_TB_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnischer_Bereich_tBArt_TB_Art_TypeClass.gif
new file mode 100644
index 0000000000..fb5bcb5cd2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnischer_Bereich_tBArt_TB_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnischer_Bereich_tBBeschreibung_TB_Beschreibung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnischer_Bereich_tBBeschreibung_TB_Beschreibung_TypeClass.gif
new file mode 100644
index 0000000000..c68f4ae3c6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnischer_Bereich_tBBeschreibung_TB_Beschreibung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnischer_Punkt_tPArt_TP_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnischer_Punkt_tPArt_TP_Art_TypeClass.gif
new file mode 100644
index 0000000000..a90e8244c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnischer_Punkt_tPArt_TP_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnischer_Punkt_tPBeschreibung_TP_Beschreibung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnischer_Punkt_tPBeschreibung_TP_Beschreibung_TypeClass.gif
new file mode 100644
index 0000000000..52a37bad32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTechnischer_Punkt_tPBeschreibung_TP_Beschreibung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_84_Alle_Fstr_AttributeGroup_iDZLVBus_ID_ZLV_Bus_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_84_Alle_Fstr_AttributeGroup_iDZLVBus_ID_ZLV_Bus_TypeClass.gif
new file mode 100644
index 0000000000..a2ea8fe4fb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_84_Alle_Fstr_AttributeGroup_iDZLVBus_ID_ZLV_Bus_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_84_Alle_Fstr_AttributeGroup_telegramm84FuerAlleFstr_Telegramm_84_Fuer_Alle_Fstr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_84_Alle_Fstr_AttributeGroup_telegramm84FuerAlleFstr_Telegramm_84_Fuer_Alle_Fstr_TypeClass.gif
new file mode 100644
index 0000000000..7b611480be
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_84_Alle_Fstr_AttributeGroup_telegramm84FuerAlleFstr_Telegramm_84_Fuer_Alle_Fstr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_84_Einzelne_Fstr_AttributeGroup_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_84_Einzelne_Fstr_AttributeGroup_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif
new file mode 100644
index 0000000000..2f75407527
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_84_Einzelne_Fstr_AttributeGroup_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_84_Einzelne_Fstr_AttributeGroup_iDZLVBus_ID_ZLV_Bus_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_84_Einzelne_Fstr_AttributeGroup_iDZLVBus_ID_ZLV_Bus_TypeClass.gif
new file mode 100644
index 0000000000..392d0d1f05
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_84_Einzelne_Fstr_AttributeGroup_iDZLVBus_ID_ZLV_Bus_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_85_Alle_Fstr_AttributeGroup_iDZLVBus_ID_ZLV_Bus_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_85_Alle_Fstr_AttributeGroup_iDZLVBus_ID_ZLV_Bus_TypeClass.gif
new file mode 100644
index 0000000000..8653454669
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_85_Alle_Fstr_AttributeGroup_iDZLVBus_ID_ZLV_Bus_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_85_Alle_Fstr_AttributeGroup_telegramm85FuerAlleFstr_Telegramm_85_Fuer_Alle_Fstr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_85_Alle_Fstr_AttributeGroup_telegramm85FuerAlleFstr_Telegramm_85_Fuer_Alle_Fstr_TypeClass.gif
new file mode 100644
index 0000000000..1fb76995b8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_85_Alle_Fstr_AttributeGroup_telegramm85FuerAlleFstr_Telegramm_85_Fuer_Alle_Fstr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_85_Einzelne_Fstr_AttributeGroup_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_85_Einzelne_Fstr_AttributeGroup_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif
new file mode 100644
index 0000000000..7dbe164491
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_85_Einzelne_Fstr_AttributeGroup_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_85_Einzelne_Fstr_AttributeGroup_iDZLVBus_ID_ZLV_Bus_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_85_Einzelne_Fstr_AttributeGroup_iDZLVBus_ID_ZLV_Bus_TypeClass.gif
new file mode 100644
index 0000000000..63b8ac35c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTelegramm_85_Einzelne_Fstr_AttributeGroup_iDZLVBus_ID_ZLV_Bus_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_comparisonFinalState_SComparison.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_comparisonFinalState_SComparison.gif
new file mode 100644
index 0000000000..6fa04d1a02
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_comparisonFinalState_SComparison.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_comparisonInitialState_SComparison.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_comparisonInitialState_SComparison.gif
new file mode 100644
index 0000000000..6fa04d1a02
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_comparisonInitialState_SComparison.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_compositePlanning_PlanPro_Schnittstelle.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_compositePlanning_PlanPro_Schnittstelle.gif
new file mode 100644
index 0000000000..76dcd3d500
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_compositePlanning_PlanPro_Schnittstelle.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_compositeyout_PlanPro_Layoutinfo.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_compositeyout_PlanPro_Layoutinfo.gif
new file mode 100644
index 0000000000..cd91b677dd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_compositeyout_PlanPro_Layoutinfo.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_primaryLayout_PlanPro_Layoutinfo.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_primaryLayout_PlanPro_Layoutinfo.gif
new file mode 100644
index 0000000000..cd91b677dd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_primaryLayout_PlanPro_Layoutinfo.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_primaryPlanningIDReferences_ID_PlanPro_Schnittstelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_primaryPlanningIDReferences_ID_PlanPro_Schnittstelle_TypeClass.gif
new file mode 100644
index 0000000000..2084fe8c67
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_primaryPlanningIDReferences_ID_PlanPro_Schnittstelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_primaryPlanning_PlanPro_Schnittstelle.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_primaryPlanning_PlanPro_Schnittstelle.gif
new file mode 100644
index 0000000000..76dcd3d500
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_primaryPlanning_PlanPro_Schnittstelle.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_secondaryLayout_PlanPro_Layoutinfo.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_secondaryLayout_PlanPro_Layoutinfo.gif
new file mode 100644
index 0000000000..cd91b677dd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_secondaryLayout_PlanPro_Layoutinfo.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_secondaryPlanning_PlanPro_Schnittstelle.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_secondaryPlanning_PlanPro_Schnittstelle.gif
new file mode 100644
index 0000000000..76dcd3d500
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTemporaryIntegration_secondaryPlanning_PlanPro_Schnittstelle.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateToolboxTemporaryIntegration_comparisonFinalState_SComparison.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateToolboxTemporaryIntegration_comparisonFinalState_SComparison.gif
new file mode 100644
index 0000000000..3f235b3dbf
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateToolboxTemporaryIntegration_comparisonFinalState_SComparison.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateToolboxTemporaryIntegration_comparisonInitialState_SComparison.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateToolboxTemporaryIntegration_comparisonInitialState_SComparison.gif
new file mode 100644
index 0000000000..3f235b3dbf
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateToolboxTemporaryIntegration_comparisonInitialState_SComparison.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateToolboxTemporaryIntegration_compositePlanning_PlanPro_Schnittstelle.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateToolboxTemporaryIntegration_compositePlanning_PlanPro_Schnittstelle.gif
new file mode 100644
index 0000000000..b61a66864f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateToolboxTemporaryIntegration_compositePlanning_PlanPro_Schnittstelle.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateToolboxTemporaryIntegration_primaryPlanning_PlanPro_Schnittstelle.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateToolboxTemporaryIntegration_primaryPlanning_PlanPro_Schnittstelle.gif
new file mode 100644
index 0000000000..b61a66864f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateToolboxTemporaryIntegration_primaryPlanning_PlanPro_Schnittstelle.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateToolboxTemporaryIntegration_secondaryPlanning_PlanPro_Schnittstelle.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateToolboxTemporaryIntegration_secondaryPlanning_PlanPro_Schnittstelle.gif
new file mode 100644
index 0000000000..b61a66864f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateToolboxTemporaryIntegration_secondaryPlanning_PlanPro_Schnittstelle.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Kante_iDTrasseKnotenA_ID_Trasse_Knoten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Kante_iDTrasseKnotenA_ID_Trasse_Knoten_TypeClass.gif
new file mode 100644
index 0000000000..9f4db38e03
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Kante_iDTrasseKnotenA_ID_Trasse_Knoten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Kante_iDTrasseKnotenB_ID_Trasse_Knoten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Kante_iDTrasseKnotenB_ID_Trasse_Knoten_TypeClass.gif
new file mode 100644
index 0000000000..9f4db38e03
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Kante_iDTrasseKnotenB_ID_Trasse_Knoten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Kante_trasseKanteArt_Trasse_Kante_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Kante_trasseKanteArt_Trasse_Kante_Art_TypeClass.gif
new file mode 100644
index 0000000000..328f729d8c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Kante_trasseKanteArt_Trasse_Kante_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Kante_trasseNutzer_Trasse_Nutzer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Kante_trasseNutzer_Trasse_Nutzer_TypeClass.gif
new file mode 100644
index 0000000000..1d24f79320
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Kante_trasseNutzer_Trasse_Nutzer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Knoten_iDAnschlussElement_ID_Anschluss_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Knoten_iDAnschlussElement_ID_Anschluss_Element_TypeClass.gif
new file mode 100644
index 0000000000..5d9762db42
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Knoten_iDAnschlussElement_ID_Anschluss_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Knoten_iDGEOKnoten_ID_GEO_Knoten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Knoten_iDGEOKnoten_ID_GEO_Knoten_TypeClass.gif
new file mode 100644
index 0000000000..448138d708
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Knoten_iDGEOKnoten_ID_GEO_Knoten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Knoten_trasseKnotenArt_Trasse_Knoten_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Knoten_trasseKnotenArt_Trasse_Knoten_Art_TypeClass.gif
new file mode 100644
index 0000000000..c2b3c0fe32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateTrasse_Knoten_trasseKnotenArt_Trasse_Knoten_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehung_Allg_AttributeGroup_gEOPAD_GEO_PAD_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehung_Allg_AttributeGroup_gEOPAD_GEO_PAD_TypeClass.gif
new file mode 100644
index 0000000000..2084fe8c67
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehung_Allg_AttributeGroup_gEOPAD_GEO_PAD_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehung_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehung_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif
new file mode 100644
index 0000000000..a39b79615d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehung_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehung_Allg_AttributeGroup_ueberhoehungDatum_Ueberhoehung_Datum_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehung_Allg_AttributeGroup_ueberhoehungDatum_Ueberhoehung_Datum_TypeClass.gif
new file mode 100644
index 0000000000..f6c9c1bc2f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehung_Allg_AttributeGroup_ueberhoehungDatum_Ueberhoehung_Datum_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehung_Allg_AttributeGroup_ueberhoehungHoehe_Ueberhoehung_Hoehe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehung_Allg_AttributeGroup_ueberhoehungHoehe_Ueberhoehung_Hoehe_TypeClass.gif
new file mode 100644
index 0000000000..3fa9c54bf0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehung_Allg_AttributeGroup_ueberhoehungHoehe_Ueberhoehung_Hoehe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehung_ueberhoehungAllg_Ueberhoehung_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehung_ueberhoehungAllg_Ueberhoehung_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..ec670471e4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehung_ueberhoehungAllg_Ueberhoehung_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif
new file mode 100644
index 0000000000..23b48484db
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_Allg_AttributeGroup_planQuelle_Plan_Quelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_Allg_AttributeGroup_ueberhoehungslinieForm_Ueberhoehungslinie_Form_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_Allg_AttributeGroup_ueberhoehungslinieForm_Ueberhoehungslinie_Form_TypeClass.gif
new file mode 100644
index 0000000000..2bcab8a036
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_Allg_AttributeGroup_ueberhoehungslinieForm_Ueberhoehungslinie_Form_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_Allg_AttributeGroup_ueberhoehungslinieLaenge_Ueberhoehungslinie_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_Allg_AttributeGroup_ueberhoehungslinieLaenge_Ueberhoehungslinie_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..4d7390752e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_Allg_AttributeGroup_ueberhoehungslinieLaenge_Ueberhoehungslinie_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_iDTOPKantePfad_ID_TOP_Kante_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_iDTOPKantePfad_ID_TOP_Kante_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..f655cb586f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_iDTOPKantePfad_ID_TOP_Kante_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_iDUeberhoehungA_ID_Ueberhoehung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_iDUeberhoehungA_ID_Ueberhoehung_TypeClass.gif
new file mode 100644
index 0000000000..1d1578bb71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_iDUeberhoehungA_ID_Ueberhoehung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_iDUeberhoehungB_ID_Ueberhoehung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_iDUeberhoehungB_ID_Ueberhoehung_TypeClass.gif
new file mode 100644
index 0000000000..1d1578bb71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_iDUeberhoehungB_ID_Ueberhoehung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_ueberhoehungslinieAllg_Ueberhoehungslinie_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_ueberhoehungslinieAllg_Ueberhoehungslinie_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..d415ad7a8c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUeberhoehungslinie_ueberhoehungslinieAllg_Ueberhoehungslinie_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_Technik_AttributeGroup_bandbreite_Bandbreite_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_Technik_AttributeGroup_bandbreite_Bandbreite_TypeClass.gif
new file mode 100644
index 0000000000..d021697b25
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_Technik_AttributeGroup_bandbreite_Bandbreite_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_Technik_AttributeGroup_mediumArt_Medium_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_Technik_AttributeGroup_mediumArt_Medium_Art_TypeClass.gif
new file mode 100644
index 0000000000..ab64276038
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_Technik_AttributeGroup_mediumArt_Medium_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_Technik_AttributeGroup_netzArt_Netz_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_Technik_AttributeGroup_netzArt_Netz_Art_TypeClass.gif
new file mode 100644
index 0000000000..ac5b1fad17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_Technik_AttributeGroup_netzArt_Netz_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_Technik_AttributeGroup_technikArt_Technik_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_Technik_AttributeGroup_technikArt_Technik_Art_TypeClass.gif
new file mode 100644
index 0000000000..edb52e8b7c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_Technik_AttributeGroup_technikArt_Technik_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_Technik_AttributeGroup_technikBeschreibung_Technik_Beschreibung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_Technik_AttributeGroup_technikBeschreibung_Technik_Beschreibung_TypeClass.gif
new file mode 100644
index 0000000000..d2845b4816
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_Technik_AttributeGroup_technikBeschreibung_Technik_Beschreibung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_iDAnhangUeWegNach_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_iDAnhangUeWegNach_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..12ba555007
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_iDAnhangUeWegNach_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_iDAnhangUeWegVon_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_iDAnhangUeWegVon_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..12ba555007
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_iDAnhangUeWegVon_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_iDUebertragungswegNach_ID_Uebertragungsweg_Nach_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_iDUebertragungswegNach_ID_Uebertragungsweg_Nach_TypeClass.gif
new file mode 100644
index 0000000000..a57e119305
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_iDUebertragungswegNach_ID_Uebertragungsweg_Nach_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_iDUebertragungswegVon_ID_Uebertragungsweg_Von_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_iDUebertragungswegVon_ID_Uebertragungsweg_Von_TypeClass.gif
new file mode 100644
index 0000000000..560fa1fa5e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_iDUebertragungswegVon_ID_Uebertragungsweg_Von_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_uebertragungswegArt_Uebertragungsweg_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_uebertragungswegArt_Uebertragungsweg_Art_TypeClass.gif
new file mode 100644
index 0000000000..4fc15c12dd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_uebertragungswegArt_Uebertragungsweg_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_uebertragungswegTechnik_Uebertragungsweg_Technik_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_uebertragungswegTechnik_Uebertragungsweg_Technik_AttributeGroup.gif
new file mode 100644
index 0000000000..e564f3f06e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUebertragungsweg_uebertragungswegTechnik_Uebertragungsweg_Technik_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif
new file mode 100644
index 0000000000..a20f5daae4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_Allg_AttributeGroup_hersteller_Hersteller_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_Allg_AttributeGroup_tueranschlag_Tueranschlag_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_Allg_AttributeGroup_tueranschlag_Tueranschlag_TypeClass.gif
new file mode 100644
index 0000000000..057c18d28f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_Allg_AttributeGroup_tueranschlag_Tueranschlag_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_Allg_AttributeGroup_unterbringungArt_Unterbringung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_Allg_AttributeGroup_unterbringungArt_Unterbringung_Art_TypeClass.gif
new file mode 100644
index 0000000000..d36652c832
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_Allg_AttributeGroup_unterbringungArt_Unterbringung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_Allg_AttributeGroup_unterbringungBefestigung_Unterbringung_Befestigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_Allg_AttributeGroup_unterbringungBefestigung_Unterbringung_Befestigung_TypeClass.gif
new file mode 100644
index 0000000000..46f6dba016
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_Allg_AttributeGroup_unterbringungBefestigung_Unterbringung_Befestigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_iDGEOPunkt_ID_GEO_Punkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_iDGEOPunkt_ID_GEO_Punkt_TypeClass.gif
new file mode 100644
index 0000000000..cbf5393fe8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_iDGEOPunkt_ID_GEO_Punkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_punktObjektStrecke_Punkt_Objekt_Strecke_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_punktObjektStrecke_Punkt_Objekt_Strecke_AttributeGroup.gif
new file mode 100644
index 0000000000..ba4aa919c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_punktObjektStrecke_Punkt_Objekt_Strecke_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_punktObjektTOPKante_Punkt_Objekt_TOP_Kante_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_punktObjektTOPKante_Punkt_Objekt_TOP_Kante_AttributeGroup.gif
new file mode 100644
index 0000000000..224034e9aa
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_punktObjektTOPKante_Punkt_Objekt_TOP_Kante_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_standortBeschreibung_Standort_Beschreibung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_standortBeschreibung_Standort_Beschreibung_TypeClass.gif
new file mode 100644
index 0000000000..4b2c3fa9c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_standortBeschreibung_Standort_Beschreibung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_unterbringungAllg_Unterbringung_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_unterbringungAllg_Unterbringung_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..5ab79ac60e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_unterbringungAllg_Unterbringung_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_unterbringungPolygonzug_Unterbringung_Polygonzug_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_unterbringungPolygonzug_Unterbringung_Polygonzug_TypeClass.gif
new file mode 100644
index 0000000000..bb9da6cc73
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUnterbringung_unterbringungPolygonzug_Unterbringung_Polygonzug_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUr_Objekt_identitaet_Identitaet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUr_Objekt_identitaet_Identitaet_TypeClass.gif
new file mode 100644
index 0000000000..c18e273c28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateUr_Objekt_identitaet_Identitaet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Allg_AttributeGroup_abstandGehwegFahrbahn_Abstand_Gehweg_Fahrbahn_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Allg_AttributeGroup_abstandGehwegFahrbahn_Abstand_Gehweg_Fahrbahn_TypeClass.gif
new file mode 100644
index 0000000000..968ffa6680
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Allg_AttributeGroup_abstandGehwegFahrbahn_Abstand_Gehweg_Fahrbahn_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Allg_AttributeGroup_ausrichtungWinkel_Ausrichtung_Winkel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Allg_AttributeGroup_ausrichtungWinkel_Ausrichtung_Winkel_TypeClass.gif
new file mode 100644
index 0000000000..a3e4ead8a5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Allg_AttributeGroup_ausrichtungWinkel_Ausrichtung_Winkel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Allg_AttributeGroup_ausrichtung_Ausrichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Allg_AttributeGroup_ausrichtung_Ausrichtung_TypeClass.gif
new file mode 100644
index 0000000000..3ddab5847a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Allg_AttributeGroup_ausrichtung_Ausrichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Andreaskreuz_AttributeGroup_blitzpfeil_Blitzpfeil_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Andreaskreuz_AttributeGroup_blitzpfeil_Blitzpfeil_TypeClass.gif
new file mode 100644
index 0000000000..f7a01deeba
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Andreaskreuz_AttributeGroup_blitzpfeil_Blitzpfeil_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Andreaskreuz_AttributeGroup_montageBesonders_Montage_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Andreaskreuz_AttributeGroup_montageBesonders_Montage_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..613df50f3e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Andreaskreuz_AttributeGroup_montageBesonders_Montage_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Andreaskreuz_AttributeGroup_richtungspfeil_Richtungspfeil_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Andreaskreuz_AttributeGroup_richtungspfeil_Richtungspfeil_TypeClass.gif
new file mode 100644
index 0000000000..9b14586f01
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Andreaskreuz_AttributeGroup_richtungspfeil_Richtungspfeil_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Andreaskreuz_AttributeGroup_schutzbuegel_Schutzbuegel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Andreaskreuz_AttributeGroup_schutzbuegel_Schutzbuegel_TypeClass.gif
new file mode 100644
index 0000000000..51539add5b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Andreaskreuz_AttributeGroup_schutzbuegel_Schutzbuegel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Andreaskreuz_AttributeGroup_zusatzschild_Zusatzschild_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Andreaskreuz_AttributeGroup_zusatzschild_Zusatzschild_TypeClass.gif
new file mode 100644
index 0000000000..6664d2939c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Andreaskreuz_AttributeGroup_zusatzschild_Zusatzschild_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Bezeichnung_AttributeGroup_bezeichnungVerkehrszeichen_Bezeichnung_Verkehrszeichen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Bezeichnung_AttributeGroup_bezeichnungVerkehrszeichen_Bezeichnung_Verkehrszeichen_TypeClass.gif
new file mode 100644
index 0000000000..758dafb7cd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Bezeichnung_AttributeGroup_bezeichnungVerkehrszeichen_Bezeichnung_Verkehrszeichen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_akustikFussgaenger_Akustik_Fussgaenger_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_akustikFussgaenger_Akustik_Fussgaenger_TypeClass.gif
new file mode 100644
index 0000000000..968ffa6680
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_akustikFussgaenger_Akustik_Fussgaenger_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_kontrastblende_Kontrastblende_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_kontrastblende_Kontrastblende_TypeClass.gif
new file mode 100644
index 0000000000..c0a1164b11
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_kontrastblende_Kontrastblende_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_optikDurchmesser_Optik_Durchmesser_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_optikDurchmesser_Optik_Durchmesser_TypeClass.gif
new file mode 100644
index 0000000000..585fa351bc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_optikDurchmesser_Optik_Durchmesser_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_optikSymbolmaske_Optik_Symbolmaske_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_optikSymbolmaske_Optik_Symbolmaske_TypeClass.gif
new file mode 100644
index 0000000000..be37fbc707
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_optikSymbolmaske_Optik_Symbolmaske_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_schaltgruppe_Schaltgruppe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_schaltgruppe_Schaltgruppe_TypeClass.gif
new file mode 100644
index 0000000000..d53ad79ffc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_schaltgruppe_Schaltgruppe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_tragkopfVerstellbar_Tragkopf_Verstellbar_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_tragkopfVerstellbar_Tragkopf_Verstellbar_TypeClass.gif
new file mode 100644
index 0000000000..27c2e4c9e2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_tragkopfVerstellbar_Tragkopf_Verstellbar_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_vorgeschaltet_Vorgeschaltet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_vorgeschaltet_Vorgeschaltet_TypeClass.gif
new file mode 100644
index 0000000000..27c2e4c9e2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_Lz_AttributeGroup_vorgeschaltet_Vorgeschaltet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_bezeichnung_Verkehrszeichen_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_bezeichnung_Verkehrszeichen_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..e4e0bbd6a9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_bezeichnung_Verkehrszeichen_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..58b76d646d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_iDBUEAnlage_ID_BUE_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_iDUnterbringung_ID_Unterbringung_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_iDUnterbringung_ID_Unterbringung_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..a29500a4ff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_iDUnterbringung_ID_Unterbringung_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_verkehrszeichenAllg_Verkehrszeichen_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_verkehrszeichenAllg_Verkehrszeichen_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..4308f7acd1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_verkehrszeichenAllg_Verkehrszeichen_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_verkehrszeichenAndreaskreuz_Verkehrszeichen_Andreaskreuz_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_verkehrszeichenAndreaskreuz_Verkehrszeichen_Andreaskreuz_AttributeGroup.gif
new file mode 100644
index 0000000000..53a716ee74
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_verkehrszeichenAndreaskreuz_Verkehrszeichen_Andreaskreuz_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_verkehrszeichenLz_Verkehrszeichen_Lz_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_verkehrszeichenLz_Verkehrszeichen_Lz_AttributeGroup.gif
new file mode 100644
index 0000000000..4308f7acd1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_verkehrszeichenLz_Verkehrszeichen_Lz_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_vzSperrstrecke_Vz_Sperrstrecke_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_vzSperrstrecke_Vz_Sperrstrecke_AttributeGroup.gif
new file mode 100644
index 0000000000..a29500a4ff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVerkehrszeichen_vzSperrstrecke_Vz_Sperrstrecke_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_AttributeGroup_sperrstreckeFussgaenger_Sperrstrecke_Fussgaenger_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_AttributeGroup_sperrstreckeFussgaenger_Sperrstrecke_Fussgaenger_TypeClass.gif
new file mode 100644
index 0000000000..56b3f19943
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_AttributeGroup_sperrstreckeFussgaenger_Sperrstrecke_Fussgaenger_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_AttributeGroup_sperrstrecke_Sperrstrecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_AttributeGroup_sperrstrecke_Sperrstrecke_TypeClass.gif
new file mode 100644
index 0000000000..c721189bd1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_AttributeGroup_sperrstrecke_Sperrstrecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_AttributeGroup_vzSperrstreckeSchranke_Vz_Sperrstrecke_Schranke_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_AttributeGroup_vzSperrstreckeSchranke_Vz_Sperrstrecke_Schranke_AttributeGroup.gif
new file mode 100644
index 0000000000..d09eef97cf
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_AttributeGroup_vzSperrstreckeSchranke_Vz_Sperrstrecke_Schranke_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_AttributeGroup_vzSperrstreckeVorgeschaltet_Vz_Sperrstrecke_Vorgeschaltet_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_AttributeGroup_vzSperrstreckeVorgeschaltet_Vz_Sperrstrecke_Vorgeschaltet_AttributeGroup.gif
new file mode 100644
index 0000000000..c958497ba3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_AttributeGroup_vzSperrstreckeVorgeschaltet_Vz_Sperrstrecke_Vorgeschaltet_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Schranke_AttributeGroup_raeumstrecke_Raeumstrecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Schranke_AttributeGroup_raeumstrecke_Raeumstrecke_TypeClass.gif
new file mode 100644
index 0000000000..bcf1f278fa
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Schranke_AttributeGroup_raeumstrecke_Raeumstrecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Schranke_AttributeGroup_teilsperrstrecke_Teilsperrstrecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Schranke_AttributeGroup_teilsperrstrecke_Teilsperrstrecke_TypeClass.gif
new file mode 100644
index 0000000000..212161926c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Schranke_AttributeGroup_teilsperrstrecke_Teilsperrstrecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Vorgeschaltet_AttributeGroup_beeinflussungStrassenverkehr_Beeinflussung_Strassenverkehr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Vorgeschaltet_AttributeGroup_beeinflussungStrassenverkehr_Beeinflussung_Strassenverkehr_TypeClass.gif
new file mode 100644
index 0000000000..65c0cbe832
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Vorgeschaltet_AttributeGroup_beeinflussungStrassenverkehr_Beeinflussung_Strassenverkehr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDAB_Raeumstrecke_DAB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDAB_Raeumstrecke_DAB_TypeClass.gif
new file mode 100644
index 0000000000..de3ad17d30
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDAB_Raeumstrecke_DAB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDBK_Raeumstrecke_DBK_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDBK_Raeumstrecke_DBK_TypeClass.gif
new file mode 100644
index 0000000000..3d537d9cf8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDBK_Raeumstrecke_DBK_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDCK_Raeumstrecke_DCK_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDCK_Raeumstrecke_DCK_TypeClass.gif
new file mode 100644
index 0000000000..27a899da54
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDCK_Raeumstrecke_DCK_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDSKStrich_Raeumstrecke_DSK_Strich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDSKStrich_Raeumstrecke_DSK_Strich_TypeClass.gif
new file mode 100644
index 0000000000..0c843f9912
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateVz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDSKStrich_Raeumstrecke_DSK_Strich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_Allg_AttributeGroup_isolierfall_Isolierfall_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_Allg_AttributeGroup_isolierfall_Isolierfall_TypeClass.gif
new file mode 100644
index 0000000000..c8cbe6236b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_Allg_AttributeGroup_isolierfall_Isolierfall_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_Allg_AttributeGroup_wKrArt_W_Kr_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_Allg_AttributeGroup_wKrArt_W_Kr_Art_TypeClass.gif
new file mode 100644
index 0000000000..3cd0b7b142
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_Allg_AttributeGroup_wKrArt_W_Kr_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_Allg_AttributeGroup_wKrGrundform_W_Kr_Grundform_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_Allg_AttributeGroup_wKrGrundform_W_Kr_Grundform_TypeClass.gif
new file mode 100644
index 0000000000..3052dce139
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_Allg_AttributeGroup_wKrGrundform_W_Kr_Grundform_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_iDAnhangDWS_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_iDAnhangDWS_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..0dabd12b1d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_iDAnhangDWS_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_iDSignal_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_iDSignal_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..f54edc635d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_iDSignal_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_wKrAnlageAllg_W_Kr_Anlage_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_wKrAnlageAllg_W_Kr_Anlage_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..1a30bfdcc1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Anlage_wKrAnlageAllg_W_Kr_Anlage_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_Allg_AttributeGroup_krKrWSeitenzuordnung_Kr_KrW_Seitenzuordnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_Allg_AttributeGroup_krKrWSeitenzuordnung_Kr_KrW_Seitenzuordnung_TypeClass.gif
new file mode 100644
index 0000000000..dcf6e96046
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_Allg_AttributeGroup_krKrWSeitenzuordnung_Kr_KrW_Seitenzuordnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_Allg_AttributeGroup_vorzugslageAutomatik_Vorzugslage_Automatik_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_Allg_AttributeGroup_vorzugslageAutomatik_Vorzugslage_Automatik_TypeClass.gif
new file mode 100644
index 0000000000..d59b3c9d8b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_Allg_AttributeGroup_vorzugslageAutomatik_Vorzugslage_Automatik_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_Allg_AttributeGroup_wKrGspStellart_W_Kr_Gsp_Stellart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_Allg_AttributeGroup_wKrGspStellart_W_Kr_Gsp_Stellart_TypeClass.gif
new file mode 100644
index 0000000000..2576aa3ed3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_Allg_AttributeGroup_wKrGspStellart_W_Kr_Gsp_Stellart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_bezeichnung_Bezeichnung_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_bezeichnung_Bezeichnung_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..356dbada71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_bezeichnung_Bezeichnung_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_gleissperreElement_Gleissperre_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_gleissperreElement_Gleissperre_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..a02e79c495
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_gleissperreElement_Gleissperre_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_iDRegelzeichnung_ID_Regelzeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_iDRegelzeichnung_ID_Regelzeichnung_TypeClass.gif
new file mode 100644
index 0000000000..d73a99e8da
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_iDRegelzeichnung_ID_Regelzeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_iDStellelement_ID_Stellelement_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_iDStellelement_ID_Stellelement_TypeClass.gif
new file mode 100644
index 0000000000..8e89961a4b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_iDStellelement_ID_Stellelement_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_iDWKrAnlage_ID_W_Kr_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_iDWKrAnlage_ID_W_Kr_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..bdbdd7bacc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_iDWKrAnlage_ID_W_Kr_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_iDWeichenlaufkette_ID_Weichenlaufkette_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_iDWeichenlaufkette_ID_Weichenlaufkette_TypeClass.gif
new file mode 100644
index 0000000000..963ec8838e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_iDWeichenlaufkette_ID_Weichenlaufkette_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_wKrGspElementAllg_W_Kr_Gsp_Element_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_wKrGspElementAllg_W_Kr_Gsp_Element_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..44af2e5cd8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_wKrGspElementAllg_W_Kr_Gsp_Element_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_weicheElement_Weiche_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_weicheElement_Weiche_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..975c4746da
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Element_weicheElement_Weiche_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_austauschAntriebe_Austausch_Antriebe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_austauschAntriebe_Austausch_Antriebe_TypeClass.gif
new file mode 100644
index 0000000000..5236dceda7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_austauschAntriebe_Austausch_Antriebe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_besonderesFahrwegelement_Besonderes_Fahrwegelement_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_besonderesFahrwegelement_Besonderes_Fahrwegelement_TypeClass.gif
new file mode 100644
index 0000000000..0456ccd112
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_besonderesFahrwegelement_Besonderes_Fahrwegelement_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_entgleisungsschuh_Entgleisungsschuh_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_entgleisungsschuh_Entgleisungsschuh_AttributeGroup.gif
new file mode 100644
index 0000000000..560fa1fa5e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_entgleisungsschuh_Entgleisungsschuh_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_iDRegelzeichnung_ID_Regelzeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_iDRegelzeichnung_ID_Regelzeichnung_TypeClass.gif
new file mode 100644
index 0000000000..e3c2ec6a24
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_iDRegelzeichnung_ID_Regelzeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_iDWKrGspElement_ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_iDWKrGspElement_ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..c6a162d49c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_iDWKrGspElement_ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_kreuzung_Kreuzung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_kreuzung_Kreuzung_AttributeGroup.gif
new file mode 100644
index 0000000000..c5afe8fdc4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_kreuzung_Kreuzung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_zungenpaar_Zungenpaar_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_zungenpaar_Zungenpaar_AttributeGroup.gif
new file mode 100644
index 0000000000..c73000c775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateW_Kr_Gsp_Komponente_zungenpaar_Zungenpaar_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_auffahrortung_Auffahrortung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_auffahrortung_Auffahrortung_TypeClass.gif
new file mode 100644
index 0000000000..e93d4eec79
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_auffahrortung_Auffahrortung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_gZFreimeldungL_GZ_Freimeldung_L_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_gZFreimeldungL_GZ_Freimeldung_L_AttributeGroup.gif
new file mode 100644
index 0000000000..f61f198301
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_gZFreimeldungL_GZ_Freimeldung_L_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_gZFreimeldungR_GZ_Freimeldung_R_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_gZFreimeldungR_GZ_Freimeldung_R_AttributeGroup.gif
new file mode 100644
index 0000000000..7b2c0939bd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_gZFreimeldungR_GZ_Freimeldung_R_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_iDGrenzzeichen_ID_Grenzzeichen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_iDGrenzzeichen_ID_Grenzzeichen_TypeClass.gif
new file mode 100644
index 0000000000..6ed90b4ad7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_iDGrenzzeichen_ID_Grenzzeichen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_iDSignal_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_iDSignal_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..e9186c4e26
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_iDSignal_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_weicheBetriebsart_Weiche_Betriebsart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_weicheBetriebsart_Weiche_Betriebsart_TypeClass.gif
new file mode 100644
index 0000000000..77266a6269
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_weicheBetriebsart_Weiche_Betriebsart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_weicheVorzugslage_Weiche_Vorzugslage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_weicheVorzugslage_Weiche_Vorzugslage_TypeClass.gif
new file mode 100644
index 0000000000..59763f447c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeiche_Element_AttributeGroup_weicheVorzugslage_Weiche_Vorzugslage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeichenlaufkette_Zuordnung_iDSignal_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeichenlaufkette_Zuordnung_iDSignal_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..5087b0ec10
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeichenlaufkette_Zuordnung_iDSignal_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeichenlaufkette_Zuordnung_iDWeichenlaufkette_ID_Weichenlaufkette_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeichenlaufkette_Zuordnung_iDWeichenlaufkette_ID_Weichenlaufkette_TypeClass.gif
new file mode 100644
index 0000000000..305fa05b3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeichenlaufkette_Zuordnung_iDWeichenlaufkette_ID_Weichenlaufkette_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeichenlaufkette_bezeichnung_Bezeichnung_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeichenlaufkette_bezeichnung_Bezeichnung_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..79e58f2acb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateWeichenlaufkette_bezeichnung_Bezeichnung_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Merkmale_AttributeGroup_dPLinkArt_DP_Link_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Merkmale_AttributeGroup_dPLinkArt_DP_Link_Art_TypeClass.gif
new file mode 100644
index 0000000000..9c351cc5ec
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Merkmale_AttributeGroup_dPLinkArt_DP_Link_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Merkmale_AttributeGroup_zBSReaktion_ZBS_Reaktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Merkmale_AttributeGroup_zBSReaktion_ZBS_Reaktion_TypeClass.gif
new file mode 100644
index 0000000000..db04142ade
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Merkmale_AttributeGroup_zBSReaktion_ZBS_Reaktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Schutzstrecke_Allg_AttributeGroup_laengeSollMind150_Laenge_Soll_Mind_150_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Schutzstrecke_Allg_AttributeGroup_laengeSollMind150_Laenge_Soll_Mind_150_TypeClass.gif
new file mode 100644
index 0000000000..b9300d3588
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Schutzstrecke_Allg_AttributeGroup_laengeSollMind150_Laenge_Soll_Mind_150_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Schutzstrecke_Allg_AttributeGroup_massgebendeNeigungMind150_Massgebende_Neigung_Mind_150_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Schutzstrecke_Allg_AttributeGroup_massgebendeNeigungMind150_Massgebende_Neigung_Mind_150_TypeClass.gif
new file mode 100644
index 0000000000..788abfe272
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Schutzstrecke_Allg_AttributeGroup_massgebendeNeigungMind150_Massgebende_Neigung_Mind_150_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Schutzstrecke_Allg_AttributeGroup_vFrei_V_Frei_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Schutzstrecke_Allg_AttributeGroup_vFrei_V_Frei_TypeClass.gif
new file mode 100644
index 0000000000..968b6be0c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Schutzstrecke_Allg_AttributeGroup_vFrei_V_Frei_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Schutzstrecke_iDFstrDWeg_ID_Fstr_DWeg_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Schutzstrecke_iDFstrDWeg_ID_Fstr_DWeg_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..794791ad9f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Schutzstrecke_iDFstrDWeg_ID_Fstr_DWeg_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Schutzstrecke_zBSSchutzstreckeAllg_ZBS_Schutzstrecke_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Schutzstrecke_zBSSchutzstreckeAllg_ZBS_Schutzstrecke_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..dd7d81f5d1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Schutzstrecke_zBSSchutzstreckeAllg_ZBS_Schutzstrecke_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_Signalabstand_AttributeGroup_abstandReduziert_Abstand_Reduziert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_Signalabstand_AttributeGroup_abstandReduziert_Abstand_Reduziert_TypeClass.gif
new file mode 100644
index 0000000000..91619bc626
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_Signalabstand_AttributeGroup_abstandReduziert_Abstand_Reduziert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_Signalabstand_AttributeGroup_massgebendeNeigungMindSig150_Massgebende_Neigung_Mind_Sig_150_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_Signalabstand_AttributeGroup_massgebendeNeigungMindSig150_Massgebende_Neigung_Mind_Sig_150_TypeClass.gif
new file mode 100644
index 0000000000..fc1a2e8b75
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_Signalabstand_AttributeGroup_massgebendeNeigungMindSig150_Massgebende_Neigung_Mind_Sig_150_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_Signalabstand_AttributeGroup_massgebendeNeigungMindSig_Massgebende_Neigung_Mind_Sig_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_Signalabstand_AttributeGroup_massgebendeNeigungMindSig_Massgebende_Neigung_Mind_Sig_TypeClass.gif
new file mode 100644
index 0000000000..90ccce9286
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_Signalabstand_AttributeGroup_massgebendeNeigungMindSig_Massgebende_Neigung_Mind_Sig_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_Signalabstand_AttributeGroup_solllaengeMindSig150_Solllaenge_Mind_Sig_150_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_Signalabstand_AttributeGroup_solllaengeMindSig150_Solllaenge_Mind_Sig_150_TypeClass.gif
new file mode 100644
index 0000000000..be37fbc707
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_Signalabstand_AttributeGroup_solllaengeMindSig150_Solllaenge_Mind_Sig_150_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_Signalabstand_AttributeGroup_solllaengeMindSig_Solllaenge_Mind_Sig_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_Signalabstand_AttributeGroup_solllaengeMindSig_Solllaenge_Mind_Sig_TypeClass.gif
new file mode 100644
index 0000000000..993d0905a9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_Signalabstand_AttributeGroup_solllaengeMindSig_Solllaenge_Mind_Sig_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_iDSignal_ID_Signal_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_iDSignal_ID_Signal_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..190f08eb2b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_iDSignal_ID_Signal_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_zBSSignalSignalabstand_ZBS_Signal_Signalabstand_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_zBSSignalSignalabstand_ZBS_Signal_Signalabstand_AttributeGroup.gif
new file mode 100644
index 0000000000..e07c4ede55
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZBS_Signal_zBSSignalSignalabstand_ZBS_Signal_Signalabstand_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Allg_AttributeGroup_unterstationMax_Unterstation_Max_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Allg_AttributeGroup_unterstationMax_Unterstation_Max_TypeClass.gif
new file mode 100644
index 0000000000..59ae8d865a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Allg_AttributeGroup_unterstationMax_Unterstation_Max_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Allg_AttributeGroup_zNModem_ZN_Modem_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Allg_AttributeGroup_zNModem_ZN_Modem_TypeClass.gif
new file mode 100644
index 0000000000..7c7ede6f34
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Allg_AttributeGroup_zNModem_ZN_Modem_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Besondere_Anlage_Bezeichnung_AttributeGroup_bezeichnungBesondereAnlage_Bezeichnung_Besondere_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Besondere_Anlage_Bezeichnung_AttributeGroup_bezeichnungBesondereAnlage_Bezeichnung_Besondere_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..981b7874e5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Besondere_Anlage_Bezeichnung_AttributeGroup_bezeichnungBesondereAnlage_Bezeichnung_Besondere_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Besondere_Anlage_bezeichnung_ZLV_Bus_Besondere_Anlage_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Besondere_Anlage_bezeichnung_ZLV_Bus_Besondere_Anlage_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..15cbbadd0d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Besondere_Anlage_bezeichnung_ZLV_Bus_Besondere_Anlage_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Besondere_Anlage_iDZLVBus_ID_ZLV_Bus_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Besondere_Anlage_iDZLVBus_ID_ZLV_Bus_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..f6b839fd15
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Besondere_Anlage_iDZLVBus_ID_ZLV_Bus_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Besondere_Anlage_unterstationNr_Unterstation_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Besondere_Anlage_unterstationNr_Unterstation_Nr_TypeClass.gif
new file mode 100644
index 0000000000..94a8af9f65
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Besondere_Anlage_unterstationNr_Unterstation_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Bezeichnung_AttributeGroup_zLVBusNr_ZLV_Bus_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Bezeichnung_AttributeGroup_zLVBusNr_ZLV_Bus_Nr_TypeClass.gif
new file mode 100644
index 0000000000..9f96e37737
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Bezeichnung_AttributeGroup_zLVBusNr_ZLV_Bus_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm02_Telegramm_02_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm02_Telegramm_02_TypeClass.gif
new file mode 100644
index 0000000000..5b78080875
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm02_Telegramm_02_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm03_Telegramm_03_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm03_Telegramm_03_TypeClass.gif
new file mode 100644
index 0000000000..f43e956455
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm03_Telegramm_03_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm04_Telegramm_04_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm04_Telegramm_04_TypeClass.gif
new file mode 100644
index 0000000000..411e41cfbd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm04_Telegramm_04_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm10_Telegramm_10_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm10_Telegramm_10_TypeClass.gif
new file mode 100644
index 0000000000..4ce1821708
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm10_Telegramm_10_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm21_Telegramm_21_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm21_Telegramm_21_TypeClass.gif
new file mode 100644
index 0000000000..f43e956455
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm21_Telegramm_21_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm30_Telegramm_30_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm30_Telegramm_30_TypeClass.gif
new file mode 100644
index 0000000000..f43e956455
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm30_Telegramm_30_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_iDZLVBus_ID_ZLV_Bus_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_iDZLVBus_ID_ZLV_Bus_TypeClass.gif
new file mode 100644
index 0000000000..af44325179
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_iDZLVBus_ID_ZLV_Bus_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_iDZNUnterstation_ID_ZN_Unterstation_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_iDZNUnterstation_ID_ZN_Unterstation_TypeClass.gif
new file mode 100644
index 0000000000..2f6d3eba40
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_iDZNUnterstation_ID_ZN_Unterstation_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_zLVBusUSZuordnungTelegramm_ZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_zLVBusUSZuordnungTelegramm_ZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup.gif
new file mode 100644
index 0000000000..90990826a6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_zLVBusUSZuordnungTelegramm_ZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_zLVBusZuordnungAllg_ZLV_Bus_Zuordnung_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_zLVBusZuordnungAllg_ZLV_Bus_Zuordnung_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..90990826a6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_US_Zuordnung_zLVBusZuordnungAllg_ZLV_Bus_Zuordnung_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Zuordnung_Allg_AttributeGroup_anschlussnummer_Anschlussnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Zuordnung_Allg_AttributeGroup_anschlussnummer_Anschlussnummer_TypeClass.gif
new file mode 100644
index 0000000000..f00122b1e0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Zuordnung_Allg_AttributeGroup_anschlussnummer_Anschlussnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Zuordnung_Allg_AttributeGroup_unterstationNr_Unterstation_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Zuordnung_Allg_AttributeGroup_unterstationNr_Unterstation_Nr_TypeClass.gif
new file mode 100644
index 0000000000..411e41cfbd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_Zuordnung_Allg_AttributeGroup_unterstationNr_Unterstation_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_bezeichnung_ZLV_Bus_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_bezeichnung_ZLV_Bus_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..d34ba7412b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_bezeichnung_ZLV_Bus_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_zLVBusAllg_ZLV_Bus_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_zLVBusAllg_ZLV_Bus_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..5ab79ac60e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZLV_Bus_zLVBusAllg_ZLV_Bus_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Allg_AttributeGroup_anzahlWiederholZLAnstoesse_Anzahl_Wiederhol_ZL_Anstoesse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Allg_AttributeGroup_anzahlWiederholZLAnstoesse_Anzahl_Wiederhol_ZL_Anstoesse_TypeClass.gif
new file mode 100644
index 0000000000..5279d7bfc6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Allg_AttributeGroup_anzahlWiederholZLAnstoesse_Anzahl_Wiederhol_ZL_Anstoesse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Allg_AttributeGroup_deadlockpruefung_Deadlockpruefung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Allg_AttributeGroup_deadlockpruefung_Deadlockpruefung_TypeClass.gif
new file mode 100644
index 0000000000..5279d7bfc6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Allg_AttributeGroup_deadlockpruefung_Deadlockpruefung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Allg_AttributeGroup_einstellkontrollzeit_Einstellkontrollzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Allg_AttributeGroup_einstellkontrollzeit_Einstellkontrollzeit_TypeClass.gif
new file mode 100644
index 0000000000..5279d7bfc6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Allg_AttributeGroup_einstellkontrollzeit_Einstellkontrollzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Allg_AttributeGroup_lenkabbruchzeit_Lenkabbruchzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Allg_AttributeGroup_lenkabbruchzeit_Lenkabbruchzeit_TypeClass.gif
new file mode 100644
index 0000000000..c1fbe127e0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Allg_AttributeGroup_lenkabbruchzeit_Lenkabbruchzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Allg_AttributeGroup_personalReaktionszeit_Personal_Reaktionszeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Allg_AttributeGroup_personalReaktionszeit_Personal_Reaktionszeit_TypeClass.gif
new file mode 100644
index 0000000000..f6b839fd15
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Allg_AttributeGroup_personalReaktionszeit_Personal_Reaktionszeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_DLP_Abschnitt_iDGleisAbschnitt_ID_Gleis_Abschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_DLP_Abschnitt_iDGleisAbschnitt_ID_Gleis_Abschnitt_TypeClass.gif
new file mode 100644
index 0000000000..85d42e14cb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_DLP_Abschnitt_iDGleisAbschnitt_ID_Gleis_Abschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_DLP_Abschnitt_iDZLDLPFstr_ID_ZL_DLP_Fstr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_DLP_Abschnitt_iDZLDLPFstr_ID_ZL_DLP_Fstr_TypeClass.gif
new file mode 100644
index 0000000000..6b99a7f3dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_DLP_Abschnitt_iDZLDLPFstr_ID_ZL_DLP_Fstr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_DLP_Fstr_iDZLFstr_ID_ZL_Fstr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_DLP_Fstr_iDZLFstr_ID_ZL_Fstr_TypeClass.gif
new file mode 100644
index 0000000000..f61f198301
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_DLP_Fstr_iDZLFstr_ID_ZL_Fstr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Allg_AttributeGroup_annaeherungsgeschwindigkeit_Annaeherungsgeschwindigkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Allg_AttributeGroup_annaeherungsgeschwindigkeit_Annaeherungsgeschwindigkeit_TypeClass.gif
new file mode 100644
index 0000000000..5d64176e70
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Allg_AttributeGroup_annaeherungsgeschwindigkeit_Annaeherungsgeschwindigkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Allg_AttributeGroup_dWegPrio_DWeg_Prio_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Allg_AttributeGroup_dWegPrio_DWeg_Prio_TypeClass.gif
new file mode 100644
index 0000000000..fb71f8bdd8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Allg_AttributeGroup_dWegPrio_DWeg_Prio_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Allg_AttributeGroup_fUEMAuswertung_FUEM_Auswertung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Allg_AttributeGroup_fUEMAuswertung_FUEM_Auswertung_TypeClass.gif
new file mode 100644
index 0000000000..c10b7b2afb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Allg_AttributeGroup_fUEMAuswertung_FUEM_Auswertung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Allg_AttributeGroup_fstrBildezeit_Fstr_Bildezeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Allg_AttributeGroup_fstrBildezeit_Fstr_Bildezeit_TypeClass.gif
new file mode 100644
index 0000000000..12131f2f61
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Allg_AttributeGroup_fstrBildezeit_Fstr_Bildezeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Allg_AttributeGroup_sichtzeitVorsignal_Sichtzeit_Vorsignal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Allg_AttributeGroup_sichtzeitVorsignal_Sichtzeit_Vorsignal_TypeClass.gif
new file mode 100644
index 0000000000..01247e3207
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Allg_AttributeGroup_sichtzeitVorsignal_Sichtzeit_Vorsignal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_Allg_AttributeGroup_gKZSS_GKZSS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_Allg_AttributeGroup_gKZSS_GKZSS_TypeClass.gif
new file mode 100644
index 0000000000..66b71850f1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_Allg_AttributeGroup_gKZSS_GKZSS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_Allg_AttributeGroup_vmaxAnnaeherung_Vmax_Annaeherung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_Allg_AttributeGroup_vmaxAnnaeherung_Vmax_Annaeherung_TypeClass.gif
new file mode 100644
index 0000000000..d0066efa50
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_Allg_AttributeGroup_vmaxAnnaeherung_Vmax_Annaeherung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_Allg_AttributeGroup_zLFstrZuschlag_ZL_Fstr_Zuschlag_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_Allg_AttributeGroup_zLFstrZuschlag_ZL_Fstr_Zuschlag_TypeClass.gif
new file mode 100644
index 0000000000..783befad5e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_Allg_AttributeGroup_zLFstrZuschlag_ZL_Fstr_Zuschlag_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_GK_AttributeGroup_gK_GK_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_GK_AttributeGroup_gK_GK_TypeClass.gif
new file mode 100644
index 0000000000..c12b491109
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_GK_AttributeGroup_gK_GK_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_GK_AttributeGroup_tvGK_Tv_GK_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_GK_AttributeGroup_tvGK_Tv_GK_TypeClass.gif
new file mode 100644
index 0000000000..cfb5278910
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_GK_AttributeGroup_tvGK_Tv_GK_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_iDEinschaltpunkt_ID_Einschaltpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_iDEinschaltpunkt_ID_Einschaltpunkt_TypeClass.gif
new file mode 100644
index 0000000000..7f902c4a2d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_iDEinschaltpunkt_ID_Einschaltpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_iDVorsignal_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_iDVorsignal_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..b59fc151fe
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_iDVorsignal_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_iDZLFstr_ID_ZL_Fstr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_iDZLFstr_ID_ZL_Fstr_TypeClass.gif
new file mode 100644
index 0000000000..5d52b42ea3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_iDZLFstr_ID_ZL_Fstr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_iDZNAnzeigefeldAnstoss_ID_ZN_Anzeigefeld_Anstoss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_iDZNAnzeigefeldAnstoss_ID_ZN_Anzeigefeld_Anstoss_TypeClass.gif
new file mode 100644
index 0000000000..7186b71a1d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_iDZNAnzeigefeldAnstoss_ID_ZN_Anzeigefeld_Anstoss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_zLFstrAnstossAllg_ZL_Fstr_Anstoss_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_zLFstrAnstossAllg_ZL_Fstr_Anstoss_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..c85d5ad3a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_zLFstrAnstossAllg_ZL_Fstr_Anstoss_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_zLFstrAnstossGK_ZL_Fstr_Anstoss_GK_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_zLFstrAnstossGK_ZL_Fstr_Anstoss_GK_AttributeGroup.gif
new file mode 100644
index 0000000000..425104d76a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_Anstoss_zLFstrAnstossGK_ZL_Fstr_Anstoss_GK_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif
new file mode 100644
index 0000000000..49d98d937a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_iDFstrZugRangier_ID_Fstr_Zug_Rangier_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_iDZLFstr_ID_ZL_Fstr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_iDZLFstr_ID_ZL_Fstr_TypeClass.gif
new file mode 100644
index 0000000000..0f9364baee
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_iDZLFstr_ID_ZL_Fstr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_iDZL_ID_ZL_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_iDZL_ID_ZL_TypeClass.gif
new file mode 100644
index 0000000000..fe6b442c4b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_iDZL_ID_ZL_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_zLFstrAllg_ZL_Fstr_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_zLFstrAllg_ZL_Fstr_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..dd7d81f5d1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Fstr_zLFstrAllg_ZL_Fstr_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Signalgruppe_Allg_AttributeGroup_signalgruppeBezeichner_Signalgruppe_Bezeichner_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Signalgruppe_Allg_AttributeGroup_signalgruppeBezeichner_Signalgruppe_Bezeichner_TypeClass.gif
new file mode 100644
index 0000000000..09963007a5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Signalgruppe_Allg_AttributeGroup_signalgruppeBezeichner_Signalgruppe_Bezeichner_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Signalgruppe_Zuordnung_iDSignal_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Signalgruppe_Zuordnung_iDSignal_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..6d59f87565
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Signalgruppe_Zuordnung_iDSignal_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Signalgruppe_Zuordnung_iDZLSignalgruppe_ID_ZL_Signalgruppe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Signalgruppe_Zuordnung_iDZLSignalgruppe_ID_ZL_Signalgruppe_TypeClass.gif
new file mode 100644
index 0000000000..d75e4636bc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Signalgruppe_Zuordnung_iDZLSignalgruppe_ID_ZL_Signalgruppe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Signalgruppe_iDZL_ID_ZL_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Signalgruppe_iDZL_ID_ZL_TypeClass.gif
new file mode 100644
index 0000000000..9f53f0b8f1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Signalgruppe_iDZL_ID_ZL_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Signalgruppe_zLSignalgruppeAllg_ZL_Signalgruppe_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Signalgruppe_zLSignalgruppeAllg_ZL_Signalgruppe_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..a91d627903
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_Signalgruppe_zLSignalgruppeAllg_ZL_Signalgruppe_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_ZN_AttributeGroup_lenkziffernstellen_Lenkziffernstellen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_ZN_AttributeGroup_lenkziffernstellen_Lenkziffernstellen_TypeClass.gif
new file mode 100644
index 0000000000..cbd1b19c14
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_ZN_AttributeGroup_lenkziffernstellen_Lenkziffernstellen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_ZN_AttributeGroup_zNStellen_ZN_Stellen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_ZN_AttributeGroup_zNStellen_ZN_Stellen_TypeClass.gif
new file mode 100644
index 0000000000..13449f59b0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_ZN_AttributeGroup_zNStellen_ZN_Stellen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_iDESTWZentraleinheit_ID_ESTW_Zentraleinheit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_iDESTWZentraleinheit_ID_ESTW_Zentraleinheit_TypeClass.gif
new file mode 100644
index 0000000000..2d6deb4e8b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_iDESTWZentraleinheit_ID_ESTW_Zentraleinheit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_iDZN_ID_ZN_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_iDZN_ID_ZN_TypeClass.gif
new file mode 100644
index 0000000000..5bbeb622cb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_iDZN_ID_ZN_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_zLAllg_ZL_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_zLAllg_ZL_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..cb2983c23a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_zLAllg_ZL_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_zLZN_ZL_ZN_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_zLZN_ZL_ZN_AttributeGroup.gif
new file mode 100644
index 0000000000..c5f41eacb8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZL_zLZN_ZL_ZN_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_Anzeigefeld_AttributeGroup_akustikdauerAnbAnn_Akustikdauer_Anb_Ann_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_Anzeigefeld_AttributeGroup_akustikdauerAnbAnn_Akustikdauer_Anb_Ann_TypeClass.gif
new file mode 100644
index 0000000000..e6a569287f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_Anzeigefeld_AttributeGroup_akustikdauerAnbAnn_Akustikdauer_Anb_Ann_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_Anzeigefeld_AttributeGroup_akustikdauerSonst_Akustikdauer_Sonst_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_Anzeigefeld_AttributeGroup_akustikdauerSonst_Akustikdauer_Sonst_TypeClass.gif
new file mode 100644
index 0000000000..66a52f706c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_Anzeigefeld_AttributeGroup_akustikdauerSonst_Akustikdauer_Sonst_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_Anzeigefeld_AttributeGroup_akustikdauerVoranz_Akustikdauer_Voranz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_Anzeigefeld_AttributeGroup_akustikdauerVoranz_Akustikdauer_Voranz_TypeClass.gif
new file mode 100644
index 0000000000..96c4ffdc45
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_Anzeigefeld_AttributeGroup_akustikdauerVoranz_Akustikdauer_Voranz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_iDZNAnzeigefeld_ID_ZN_Anzeigefeld_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_iDZNAnzeigefeld_ID_ZN_Anzeigefeld_TypeClass.gif
new file mode 100644
index 0000000000..212161926c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_iDZNAnzeigefeld_ID_ZN_Anzeigefeld_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_iDZN_ID_ZN_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_iDZN_ID_ZN_TypeClass.gif
new file mode 100644
index 0000000000..2b0cac703b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_iDZN_ID_ZN_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_zNAkustikAnzeigefeld_ZN_Akustik_Anzeigefeld_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_zNAkustikAnzeigefeld_ZN_Akustik_Anzeigefeld_AttributeGroup.gif
new file mode 100644
index 0000000000..433da75113
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Akustik_zNAkustikAnzeigefeld_ZN_Akustik_Anzeigefeld_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Allg_AttributeGroup_einwahlstelle_Einwahlstelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Allg_AttributeGroup_einwahlstelle_Einwahlstelle_TypeClass.gif
new file mode 100644
index 0000000000..78645ad2b5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Allg_AttributeGroup_einwahlstelle_Einwahlstelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Allg_AttributeGroup_reaktivierungsfunktion_Reaktivierungsfunktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Allg_AttributeGroup_reaktivierungsfunktion_Reaktivierungsfunktion_TypeClass.gif
new file mode 100644
index 0000000000..7afe9dc1af
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Allg_AttributeGroup_reaktivierungsfunktion_Reaktivierungsfunktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Allg_AttributeGroup_zNAnlagentyp_ZN_Anlagentyp_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Allg_AttributeGroup_zNAnlagentyp_ZN_Anlagentyp_TypeClass.gif
new file mode 100644
index 0000000000..1c8df2fb93
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Allg_AttributeGroup_zNAnlagentyp_ZN_Anlagentyp_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_bedienbarkeitAnzeigefeld_Bedienbarkeit_Anzeigefeld_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_bedienbarkeitAnzeigefeld_Bedienbarkeit_Anzeigefeld_TypeClass.gif
new file mode 100644
index 0000000000..46106a3ca6
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_bedienbarkeitAnzeigefeld_Bedienbarkeit_Anzeigefeld_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_bfNrANB_Bf_Nr_ANB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_bfNrANB_Bf_Nr_ANB_TypeClass.gif
new file mode 100644
index 0000000000..16048d0b3f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_bfNrANB_Bf_Nr_ANB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_bfNrZNA_Bf_Nr_ZN_A_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_bfNrZNA_Bf_Nr_ZN_A_TypeClass.gif
new file mode 100644
index 0000000000..83969f9eb0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_bfNrZNA_Bf_Nr_ZN_A_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_funktionalitaetAnzeigefeld_Funktionalitaet_Anzeigefeld_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_funktionalitaetAnzeigefeld_Funktionalitaet_Anzeigefeld_TypeClass.gif
new file mode 100644
index 0000000000..16048d0b3f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_funktionalitaetAnzeigefeld_Funktionalitaet_Anzeigefeld_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_hOA_HOA_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_hOA_HOA_TypeClass.gif
new file mode 100644
index 0000000000..ced536d9d7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_hOA_HOA_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_sichtbarkeitAnzeigefeld_Sichtbarkeit_Anzeigefeld_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_sichtbarkeitAnzeigefeld_Sichtbarkeit_Anzeigefeld_TypeClass.gif
new file mode 100644
index 0000000000..60aa17eb55
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_sichtbarkeitAnzeigefeld_Sichtbarkeit_Anzeigefeld_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_verzoegerungManuellLoeschung_Verzoegerung_Manuell_Loeschung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_verzoegerungManuellLoeschung_Verzoegerung_Manuell_Loeschung_TypeClass.gif
new file mode 100644
index 0000000000..c345ca5a1b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_verzoegerungManuellLoeschung_Verzoegerung_Manuell_Loeschung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_vormeldestart_Vormeldestart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_vormeldestart_Vormeldestart_TypeClass.gif
new file mode 100644
index 0000000000..e863d31a0c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_vormeldestart_Vormeldestart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_zNAnzeigefeldLoeschkriterium_ZN_Anzeigefeld_Loeschkriterium_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_zNAnzeigefeldLoeschkriterium_ZN_Anzeigefeld_Loeschkriterium_TypeClass.gif
new file mode 100644
index 0000000000..7d4d39f0e8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_zNAnzeigefeldLoeschkriterium_ZN_Anzeigefeld_Loeschkriterium_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_zNFeldOhneAnzeige_ZN_Feld_Ohne_Anzeige_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_zNFeldOhneAnzeige_ZN_Feld_Ohne_Anzeige_TypeClass.gif
new file mode 100644
index 0000000000..82bf8d2f6f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_zNFeldOhneAnzeige_ZN_Feld_Ohne_Anzeige_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_zugvorbereitungsmeldung_Zugvorbereitungsmeldung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_zugvorbereitungsmeldung_Zugvorbereitungsmeldung_TypeClass.gif
new file mode 100644
index 0000000000..90bc42c702
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Allg_AttributeGroup_zugvorbereitungsmeldung_Zugvorbereitungsmeldung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Bezeichnung_AttributeGroup_zNABedienbezeichnerFrei_ZN_A_Bedienbezeichner_Frei_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Bezeichnung_AttributeGroup_zNABedienbezeichnerFrei_ZN_A_Bedienbezeichner_Frei_TypeClass.gif
new file mode 100644
index 0000000000..c9f27e5d0f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Bezeichnung_AttributeGroup_zNABedienbezeichnerFrei_ZN_A_Bedienbezeichner_Frei_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Bezeichnung_AttributeGroup_zNABezeichner_ZN_A_Bezeichner_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Bezeichnung_AttributeGroup_zNABezeichner_ZN_A_Bezeichner_TypeClass.gif
new file mode 100644
index 0000000000..6467d42af2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_Bezeichnung_AttributeGroup_zNABezeichner_ZN_A_Bezeichner_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_iDGleisAbschnitt_ID_Gleis_Abschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_iDGleisAbschnitt_ID_Gleis_Abschnitt_TypeClass.gif
new file mode 100644
index 0000000000..7a20debb6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_iDGleisAbschnitt_ID_Gleis_Abschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_iDZLVBus_ID_ZLV_Bus_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_iDZLVBus_ID_ZLV_Bus_TypeClass.gif
new file mode 100644
index 0000000000..f5e094b108
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_iDZLVBus_ID_ZLV_Bus_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_iDZNAnzeigefeld_ID_ZN_Anzeigefeld_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_iDZNAnzeigefeld_ID_ZN_Anzeigefeld_TypeClass.gif
new file mode 100644
index 0000000000..753454dc02
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_iDZNAnzeigefeld_ID_ZN_Anzeigefeld_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_iDZN_ID_ZN_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_iDZN_ID_ZN_TypeClass.gif
new file mode 100644
index 0000000000..cee6eaa9f8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_iDZN_ID_ZN_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_zNAnzeigefeldAllg_ZN_Anzeigefeld_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_zNAnzeigefeldAllg_ZN_Anzeigefeld_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..9485b4a4ec
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_zNAnzeigefeldAllg_ZN_Anzeigefeld_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_zNAnzeigefeldBezeichnung_ZN_Anzeigefeld_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_zNAnzeigefeldBezeichnung_ZN_Anzeigefeld_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..7b38255189
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Anzeigefeld_zNAnzeigefeldBezeichnung_ZN_Anzeigefeld_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_ausfahrdruckGegengleis_Ausfahrdruck_Gegengleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_ausfahrdruckGegengleis_Ausfahrdruck_Gegengleis_TypeClass.gif
new file mode 100644
index 0000000000..95a741cb08
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_ausfahrdruckGegengleis_Ausfahrdruck_Gegengleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_ausfahrdruck_Ausfahrdruck_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_ausfahrdruck_Ausfahrdruck_TypeClass.gif
new file mode 100644
index 0000000000..41c86b3dbc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_ausfahrdruck_Ausfahrdruck_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_durchfahrdruck_Durchfahrdruck_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_durchfahrdruck_Durchfahrdruck_TypeClass.gif
new file mode 100644
index 0000000000..cd8caad999
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_durchfahrdruck_Durchfahrdruck_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_einfahrdruckGegengleis_Einfahrdruck_Gegengleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_einfahrdruckGegengleis_Einfahrdruck_Gegengleis_TypeClass.gif
new file mode 100644
index 0000000000..4368e6a574
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_einfahrdruckGegengleis_Einfahrdruck_Gegengleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_einfahrdruck_Einfahrdruck_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_einfahrdruck_Einfahrdruck_TypeClass.gif
new file mode 100644
index 0000000000..fbc81eec47
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_einfahrdruck_Einfahrdruck_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_meldedruck_Meldedruck_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_meldedruck_Meldedruck_TypeClass.gif
new file mode 100644
index 0000000000..01d709dc78
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Druck_AttributeGroup_meldedruck_Meldedruck_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Schalt_AttributeGroup_besonderesSchaltkriterium_Besonderes_Schaltkriterium_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Schalt_AttributeGroup_besonderesSchaltkriterium_Besonderes_Schaltkriterium_TypeClass.gif
new file mode 100644
index 0000000000..c575cb5528
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Schalt_AttributeGroup_besonderesSchaltkriterium_Besonderes_Schaltkriterium_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Schalt_AttributeGroup_iDFortschaltungStart_ID_Fortschaltung_Start_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Schalt_AttributeGroup_iDFortschaltungStart_ID_Fortschaltung_Start_TypeClass.gif
new file mode 100644
index 0000000000..7c6d3a00ff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Schalt_AttributeGroup_iDFortschaltungStart_ID_Fortschaltung_Start_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Schalt_AttributeGroup_telegrammwiederholung_Telegrammwiederholung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Schalt_AttributeGroup_telegrammwiederholung_Telegrammwiederholung_TypeClass.gif
new file mode 100644
index 0000000000..58de830345
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Schalt_AttributeGroup_telegrammwiederholung_Telegrammwiederholung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Schalt_AttributeGroup_zNSchaltkriterium_ZN_Schaltkriterium_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Schalt_AttributeGroup_zNSchaltkriterium_ZN_Schaltkriterium_TypeClass.gif
new file mode 100644
index 0000000000..c575cb5528
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Krit_Schalt_AttributeGroup_zNSchaltkriterium_ZN_Schaltkriterium_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Kriterium_iDZNFortschaltKritStart_ID_ZN_Anzeigefeld_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Kriterium_iDZNFortschaltKritStart_ID_ZN_Anzeigefeld_TypeClass.gif
new file mode 100644
index 0000000000..b93b3d2f5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Kriterium_iDZNFortschaltKritStart_ID_ZN_Anzeigefeld_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Kriterium_iDZNFortschaltKritZiel_ID_ZN_Anzeigefeld_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Kriterium_iDZNFortschaltKritZiel_ID_ZN_Anzeigefeld_TypeClass.gif
new file mode 100644
index 0000000000..b93b3d2f5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Kriterium_iDZNFortschaltKritZiel_ID_ZN_Anzeigefeld_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Kriterium_iDZN_ID_ZN_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Kriterium_iDZN_ID_ZN_TypeClass.gif
new file mode 100644
index 0000000000..bace1227eb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Kriterium_iDZN_ID_ZN_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Kriterium_zNFortschaltKritDruck_ZN_Fortschalt_Krit_Druck_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Kriterium_zNFortschaltKritDruck_ZN_Fortschalt_Krit_Druck_AttributeGroup.gif
new file mode 100644
index 0000000000..b6f318a092
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Kriterium_zNFortschaltKritDruck_ZN_Fortschalt_Krit_Druck_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Kriterium_zNFortschaltKritSchalt_ZN_Fortschalt_Krit_Schalt_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Kriterium_zNFortschaltKritSchalt_ZN_Fortschalt_Krit_Schalt_AttributeGroup.gif
new file mode 100644
index 0000000000..eb8204ca8e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Fortschalt_Kriterium_zNFortschaltKritSchalt_ZN_Fortschalt_Krit_Schalt_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_84_Zuordnung_iDZN_ID_ZN_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_84_Zuordnung_iDZN_ID_ZN_TypeClass.gif
new file mode 100644
index 0000000000..88a21e3eea
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_84_Zuordnung_iDZN_ID_ZN_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_84_Zuordnung_telegramm84AlleFstr_Telegramm_84_Alle_Fstr_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_84_Zuordnung_telegramm84AlleFstr_Telegramm_84_Alle_Fstr_AttributeGroup.gif
new file mode 100644
index 0000000000..1b3c931234
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_84_Zuordnung_telegramm84AlleFstr_Telegramm_84_Alle_Fstr_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_84_Zuordnung_telegramm84EinzelneFstr_Telegramm_84_Einzelne_Fstr_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_84_Zuordnung_telegramm84EinzelneFstr_Telegramm_84_Einzelne_Fstr_AttributeGroup.gif
new file mode 100644
index 0000000000..fefcd936b5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_84_Zuordnung_telegramm84EinzelneFstr_Telegramm_84_Einzelne_Fstr_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_84_Zuordnung_telegramm84Verzicht_Telegramm_84_Verzicht_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_84_Zuordnung_telegramm84Verzicht_Telegramm_84_Verzicht_TypeClass.gif
new file mode 100644
index 0000000000..4344d57135
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_84_Zuordnung_telegramm84Verzicht_Telegramm_84_Verzicht_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_85_Zuordnung_iDZN_ID_ZN_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_85_Zuordnung_iDZN_ID_ZN_TypeClass.gif
new file mode 100644
index 0000000000..09963007a5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_85_Zuordnung_iDZN_ID_ZN_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_85_Zuordnung_telegramm85AlleFstr_Telegramm_85_Alle_Fstr_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_85_Zuordnung_telegramm85AlleFstr_Telegramm_85_Alle_Fstr_AttributeGroup.gif
new file mode 100644
index 0000000000..cca8aec82c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_85_Zuordnung_telegramm85AlleFstr_Telegramm_85_Alle_Fstr_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_85_Zuordnung_telegramm85EinzelneFstr_Telegramm_85_Einzelne_Fstr_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_85_Zuordnung_telegramm85EinzelneFstr_Telegramm_85_Einzelne_Fstr_AttributeGroup.gif
new file mode 100644
index 0000000000..daddc877f5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Telegramm_85_Zuordnung_telegramm85EinzelneFstr_Telegramm_85_Einzelne_Fstr_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_bfKennung_Bf_Kennung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_bfKennung_Bf_Kennung_TypeClass.gif
new file mode 100644
index 0000000000..3408e141df
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_bfKennung_Bf_Kennung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_kUsZeittelegramm_KUs_Zeittelegramm_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_kUsZeittelegramm_KUs_Zeittelegramm_TypeClass.gif
new file mode 100644
index 0000000000..b68de5e26d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_kUsZeittelegramm_KUs_Zeittelegramm_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_koppelunterstation_Koppelunterstation_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_koppelunterstation_Koppelunterstation_TypeClass.gif
new file mode 100644
index 0000000000..53a350e53a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_koppelunterstation_Koppelunterstation_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_zBSAdresse_ZBS_Adresse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_zBSAdresse_ZBS_Adresse_TypeClass.gif
new file mode 100644
index 0000000000..40ef685420
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_zBSAdresse_ZBS_Adresse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_zBSAnbindung_ZBS_Anbindung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_zBSAnbindung_ZBS_Anbindung_TypeClass.gif
new file mode 100644
index 0000000000..a4565dfc94
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_zBSAnbindung_ZBS_Anbindung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_zNUnterstationBfNr_ZN_Unterstation_Bf_Nr_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_zNUnterstationBfNr_ZN_Unterstation_Bf_Nr_AttributeGroup.gif
new file mode 100644
index 0000000000..c4c41773a4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_zNUnterstationBfNr_ZN_Unterstation_Bf_Nr_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_zeitsynchronisationFunkuhr_Zeitsynchronisation_Funkuhr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_zeitsynchronisationFunkuhr_Zeitsynchronisation_Funkuhr_TypeClass.gif
new file mode 100644
index 0000000000..1a6d6b3def
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Allg_AttributeGroup_zeitsynchronisationFunkuhr_Zeitsynchronisation_Funkuhr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Bf_Nr_AttributeGroup_bfNr_Bf_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Bf_Nr_AttributeGroup_bfNr_Bf_Nr_TypeClass.gif
new file mode 100644
index 0000000000..481a995094
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Bf_Nr_AttributeGroup_bfNr_Bf_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Bf_Nr_AttributeGroup_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Bf_Nr_AttributeGroup_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..f023b33712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Bf_Nr_AttributeGroup_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Bf_Nr_AttributeGroup_prioritaet_Prioritaet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Bf_Nr_AttributeGroup_prioritaet_Prioritaet_TypeClass.gif
new file mode 100644
index 0000000000..33b27a49fa
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_Bf_Nr_AttributeGroup_prioritaet_Prioritaet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_iDZNZBS_ID_ZN_ZBS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_iDZNZBS_ID_ZN_ZBS_TypeClass.gif
new file mode 100644
index 0000000000..7510fe464c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_iDZNZBS_ID_ZN_ZBS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_zNUnterstationAllg_ZN_Unterstation_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_zNUnterstationAllg_ZN_Unterstation_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..f8b67b8143
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_Unterstation_zNUnterstationAllg_ZN_Unterstation_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_ZBS_iDESTWZentraleinheit_ID_ESTW_Zentraleinheit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_ZBS_iDESTWZentraleinheit_ID_ESTW_Zentraleinheit_TypeClass.gif
new file mode 100644
index 0000000000..b8fa9f3436
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_ZBS_iDESTWZentraleinheit_ID_ESTW_Zentraleinheit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_ZBS_iPAdresse_IP_Adresse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_ZBS_iPAdresse_IP_Adresse_TypeClass.gif
new file mode 100644
index 0000000000..d0066efa50
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_ZBS_iPAdresse_IP_Adresse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_ZBS_zBSSchnittstelle_ZBS_Schnittstelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_ZBS_zBSSchnittstelle_ZBS_Schnittstelle_TypeClass.gif
new file mode 100644
index 0000000000..4bef1cde0b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_ZBS_zBSSchnittstelle_ZBS_Schnittstelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_bezeichnungStellwerk_Bezeichnung_Stellwerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_bezeichnungStellwerk_Bezeichnung_Stellwerk_TypeClass.gif
new file mode 100644
index 0000000000..7f00aa632e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_bezeichnungStellwerk_Bezeichnung_Stellwerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDAnhangZNPlanBedienraum_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDAnhangZNPlanBedienraum_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..199994a565
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDAnhangZNPlanBedienraum_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDAnhangZNPlanRechnerraum_ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDAnhangZNPlanRechnerraum_ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..199994a565
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDAnhangZNPlanRechnerraum_ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDOertlichkeit_ID_Oertlichkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDOertlichkeit_ID_Oertlichkeit_TypeClass.gif
new file mode 100644
index 0000000000..ef031f41ca
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDOertlichkeit_ID_Oertlichkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDStellwerk_ID_Stellwerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDStellwerk_ID_Stellwerk_TypeClass.gif
new file mode 100644
index 0000000000..4118ce5fc8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDStellwerk_ID_Stellwerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDUnterbringung_ID_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDUnterbringung_ID_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..d1bf162dab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDUnterbringung_ID_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDZNUnterstation_ID_ZN_Unterstation_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDZNUnterstation_ID_ZN_Unterstation_TypeClass.gif
new file mode 100644
index 0000000000..e7b97df441
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_iDZNUnterstation_ID_ZN_Unterstation_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_zNAllg_ZN_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_zNAllg_ZN_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..26732f6496
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZN_zNAllg_ZN_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Allg_AttributeGroup_iDElementGrenze_ID_Element_Grenze_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Allg_AttributeGroup_iDElementGrenze_ID_Element_Grenze_TypeClass.gif
new file mode 100644
index 0000000000..931730f4ef
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Allg_AttributeGroup_iDElementGrenze_ID_Element_Grenze_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Allg_AttributeGroup_iDRBCVorGrenze_ID_RBC_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Allg_AttributeGroup_iDRBCVorGrenze_ID_RBC_TypeClass.gif
new file mode 100644
index 0000000000..3cafe5d16f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Allg_AttributeGroup_iDRBCVorGrenze_ID_RBC_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Allg_AttributeGroup_systemVorGrenzeBesonders_System_Vor_Grenze_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Allg_AttributeGroup_systemVorGrenzeBesonders_System_Vor_Grenze_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..320d117825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Allg_AttributeGroup_systemVorGrenzeBesonders_System_Vor_Grenze_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Allg_AttributeGroup_systemVorGrenze_System_Vor_Grenze_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Allg_AttributeGroup_systemVorGrenze_System_Vor_Grenze_TypeClass.gif
new file mode 100644
index 0000000000..5643b74f35
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Allg_AttributeGroup_systemVorGrenze_System_Vor_Grenze_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Bezeichnung_AttributeGroup_bezZUBBereichsgrenze_Bez_ZUB_Bereichsgrenze_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Bezeichnung_AttributeGroup_bezZUBBereichsgrenze_Bez_ZUB_Bereichsgrenze_TypeClass.gif
new file mode 100644
index 0000000000..1230fa4d83
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Bezeichnung_AttributeGroup_bezZUBBereichsgrenze_Bez_ZUB_Bereichsgrenze_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_ESG_AttributeGroup_bgrenzeNachESGBedAusstieg_Bgrenze_Nach_ESG_Bed_Ausstieg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_ESG_AttributeGroup_bgrenzeNachESGBedAusstieg_Bgrenze_Nach_ESG_Bed_Ausstieg_AttributeGroup.gif
new file mode 100644
index 0000000000..8efd2ad9e1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_ESG_AttributeGroup_bgrenzeNachESGBedAusstieg_Bgrenze_Nach_ESG_Bed_Ausstieg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_ESG_AttributeGroup_harterAusstiegAusL2_Harter_Ausstieg_Aus_L2_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_ESG_AttributeGroup_harterAusstiegAusL2_Harter_Ausstieg_Aus_L2_TypeClass.gif
new file mode 100644
index 0000000000..7cc18f19c0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_ESG_AttributeGroup_harterAusstiegAusL2_Harter_Ausstieg_Aus_L2_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_ESG_AttributeGroup_prioritaet_Prioritaet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_ESG_AttributeGroup_prioritaet_Prioritaet_TypeClass.gif
new file mode 100644
index 0000000000..a1e0e46fa7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_ESG_AttributeGroup_prioritaet_Prioritaet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_abstandGrenzeBereichC_Abstand_Grenze_Bereich_C_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_abstandGrenzeBereichC_Abstand_Grenze_Bereich_C_TypeClass.gif
new file mode 100644
index 0000000000..101c5ad3de
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_abstandGrenzeBereichC_Abstand_Grenze_Bereich_C_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_baselineSystemVersion_Baseline_System_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_baselineSystemVersion_Baseline_System_Version_TypeClass.gif
new file mode 100644
index 0000000000..ab7abfd64f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_baselineSystemVersion_Baseline_System_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_bgrenzeNachL2BedEinstieg_Bgrenze_Nach_L2_Bed_Einstieg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_bgrenzeNachL2BedEinstieg_Bgrenze_Nach_L2_Bed_Einstieg_AttributeGroup.gif
new file mode 100644
index 0000000000..5a0697e635
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_bgrenzeNachL2BedEinstieg_Bgrenze_Nach_L2_Bed_Einstieg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_einstiegOhneRueckwSig_Einstieg_Ohne_Rueckw_Sig_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_einstiegOhneRueckwSig_Einstieg_Ohne_Rueckw_Sig_TypeClass.gif
new file mode 100644
index 0000000000..d55104df4c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_einstiegOhneRueckwSig_Einstieg_Ohne_Rueckw_Sig_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_iDRBCNachGrenze_ID_RBC_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_iDRBCNachGrenze_ID_RBC_TypeClass.gif
new file mode 100644
index 0000000000..8b750f7b97
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_iDRBCNachGrenze_ID_RBC_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_iDSignalZufahrtsicherungL2oS_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_iDSignalZufahrtsicherungL2oS_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..4ffa17e76f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_iDSignalZufahrtsicherungL2oS_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_prioritaet_Prioritaet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_prioritaet_Prioritaet_TypeClass.gif
new file mode 100644
index 0000000000..d021963654
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_prioritaet_Prioritaet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_zUBBereichsgrenzeNachL2VonESG_ZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_zUBBereichsgrenzeNachL2VonESG_ZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup.gif
new file mode 100644
index 0000000000..c4bac7155c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_AttributeGroup_zUBBereichsgrenzeNachL2VonESG_ZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_abstandDatenpunktEHEMFolgesignal_Abstand_Datenpunkt_EH_EM_Folgesignal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_abstandDatenpunktEHEMFolgesignal_Abstand_Datenpunkt_EH_EM_Folgesignal_TypeClass.gif
new file mode 100644
index 0000000000..fb744048dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_abstandDatenpunktEHEMFolgesignal_Abstand_Datenpunkt_EH_EM_Folgesignal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_abstandDatenpunktEPTPI_Abstand_Datenpunkt_EP_TPI_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_abstandDatenpunktEPTPI_Abstand_Datenpunkt_EP_TPI_TypeClass.gif
new file mode 100644
index 0000000000..f91a9955db
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_abstandDatenpunktEPTPI_Abstand_Datenpunkt_EP_TPI_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_abstandDatenpunktTPIFolgesignal_Abstand_Datenpunkt_TPI_Folgesignal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_abstandDatenpunktTPIFolgesignal_Abstand_Datenpunkt_TPI_Folgesignal_TypeClass.gif
new file mode 100644
index 0000000000..953202770b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_abstandDatenpunktTPIFolgesignal_Abstand_Datenpunkt_TPI_Folgesignal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_iDFachtelegramm_ID_Fachtelegramm_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_iDFachtelegramm_ID_Fachtelegramm_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..471254323f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_iDFachtelegramm_ID_Fachtelegramm_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_iDFolgesignal_ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_iDFolgesignal_ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..38266029cb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_iDFolgesignal_ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_LZB_AttributeGroup_bgrenzeNachLZBBedEinstieg_Bgrenze_Nach_LZB_Bed_Einstieg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_LZB_AttributeGroup_bgrenzeNachLZBBedEinstieg_Bgrenze_Nach_LZB_Bed_Einstieg_AttributeGroup.gif
new file mode 100644
index 0000000000..55ee60b02e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_LZB_AttributeGroup_bgrenzeNachLZBBedEinstieg_Bgrenze_Nach_LZB_Bed_Einstieg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_LZB_AttributeGroup_harterAusstiegAusL2_Harter_Ausstieg_Aus_L2_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_LZB_AttributeGroup_harterAusstiegAusL2_Harter_Ausstieg_Aus_L2_TypeClass.gif
new file mode 100644
index 0000000000..fb87467162
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_LZB_AttributeGroup_harterAusstiegAusL2_Harter_Ausstieg_Aus_L2_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_LZB_AttributeGroup_prioritaet_Prioritaet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_LZB_AttributeGroup_prioritaet_Prioritaet_TypeClass.gif
new file mode 100644
index 0000000000..585fa351bc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_LZB_AttributeGroup_prioritaet_Prioritaet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_Ohne_AttributeGroup_bgrenzeNachOhneBedEinstieg_Bgrenze_Nach_Ohne_Bed_Einstieg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_Ohne_AttributeGroup_bgrenzeNachOhneBedEinstieg_Bgrenze_Nach_Ohne_Bed_Einstieg_AttributeGroup.gif
new file mode 100644
index 0000000000..615cc24ef5
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_Ohne_AttributeGroup_bgrenzeNachOhneBedEinstieg_Bgrenze_Nach_Ohne_Bed_Einstieg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_PZB_AttributeGroup_bgrenzeNachPZBBedEinstieg_Bgrenze_Nach_PZB_Bed_Einstieg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_PZB_AttributeGroup_bgrenzeNachPZBBedEinstieg_Bgrenze_Nach_PZB_Bed_Einstieg_AttributeGroup.gif
new file mode 100644
index 0000000000..11d4e22f71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_PZB_AttributeGroup_bgrenzeNachPZBBedEinstieg_Bgrenze_Nach_PZB_Bed_Einstieg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_PZB_AttributeGroup_harterAusstiegAusL2_Harter_Ausstieg_Aus_L2_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_PZB_AttributeGroup_harterAusstiegAusL2_Harter_Ausstieg_Aus_L2_TypeClass.gif
new file mode 100644
index 0000000000..99f2fe5716
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_PZB_AttributeGroup_harterAusstiegAusL2_Harter_Ausstieg_Aus_L2_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_PZB_AttributeGroup_prioritaet_Prioritaet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_PZB_AttributeGroup_prioritaet_Prioritaet_TypeClass.gif
new file mode 100644
index 0000000000..9cc534c342
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_PZB_AttributeGroup_prioritaet_Prioritaet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_Sonstige_AttributeGroup_bezeichnungZUB_Bezeichnung_ZUB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_Sonstige_AttributeGroup_bezeichnungZUB_Bezeichnung_ZUB_TypeClass.gif
new file mode 100644
index 0000000000..b9cd878de7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_Sonstige_AttributeGroup_bezeichnungZUB_Bezeichnung_ZUB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_Sonstige_AttributeGroup_laengeAusfuehrungsbereich_Laenge_Ausfuehrungsbereich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_Sonstige_AttributeGroup_laengeAusfuehrungsbereich_Laenge_Ausfuehrungsbereich_TypeClass.gif
new file mode 100644
index 0000000000..a7d12d3650
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_Sonstige_AttributeGroup_laengeAusfuehrungsbereich_Laenge_Ausfuehrungsbereich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_ZBS_AttributeGroup_bgrenzeNachZBSBedEinstieg_Bgrenze_Nach_ZBS_Bed_Einstieg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_ZBS_AttributeGroup_bgrenzeNachZBSBedEinstieg_Bgrenze_Nach_ZBS_Bed_Einstieg_AttributeGroup.gif
new file mode 100644
index 0000000000..cba39ba898
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_Nach_ZBS_AttributeGroup_bgrenzeNachZBSBedEinstieg_Bgrenze_Nach_ZBS_Bed_Einstieg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_bezeichnung_ZUB_Bereichsgrenze_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_bezeichnung_ZUB_Bereichsgrenze_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..1b80aea5fd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_bezeichnung_ZUB_Bereichsgrenze_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..c82554161f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_iDOertlichkeit_ID_Oertlichkeit_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeAllg_ZUB_Bereichsgrenze_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeAllg_ZUB_Bereichsgrenze_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..8f218cb68a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeAllg_ZUB_Bereichsgrenze_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachESG_ZUB_Bereichsgrenze_Nach_ESG_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachESG_ZUB_Bereichsgrenze_Nach_ESG_AttributeGroup.gif
new file mode 100644
index 0000000000..497cf8697c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachESG_ZUB_Bereichsgrenze_Nach_ESG_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachGNT_ZUB_Bereichsgrenze_Nach_GNT_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachGNT_ZUB_Bereichsgrenze_Nach_GNT_TypeClass.gif
new file mode 100644
index 0000000000..0217157fa0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachGNT_ZUB_Bereichsgrenze_Nach_GNT_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachL2_ZUB_Bereichsgrenze_Nach_L2_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachL2_ZUB_Bereichsgrenze_Nach_L2_AttributeGroup.gif
new file mode 100644
index 0000000000..ff485d7bdb
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachL2_ZUB_Bereichsgrenze_Nach_L2_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachLZB_ZUB_Bereichsgrenze_Nach_LZB_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachLZB_ZUB_Bereichsgrenze_Nach_LZB_AttributeGroup.gif
new file mode 100644
index 0000000000..513f25d218
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachLZB_ZUB_Bereichsgrenze_Nach_LZB_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachOhne_ZUB_Bereichsgrenze_Nach_Ohne_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachOhne_ZUB_Bereichsgrenze_Nach_Ohne_AttributeGroup.gif
new file mode 100644
index 0000000000..671249c159
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachOhne_ZUB_Bereichsgrenze_Nach_Ohne_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachPZB_ZUB_Bereichsgrenze_Nach_PZB_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachPZB_ZUB_Bereichsgrenze_Nach_PZB_AttributeGroup.gif
new file mode 100644
index 0000000000..9c6b7fcd48
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachPZB_ZUB_Bereichsgrenze_Nach_PZB_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachSonstige_ZUB_Bereichsgrenze_Nach_Sonstige_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachSonstige_ZUB_Bereichsgrenze_Nach_Sonstige_AttributeGroup.gif
new file mode 100644
index 0000000000..3ed52d7309
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachSonstige_ZUB_Bereichsgrenze_Nach_Sonstige_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachZBS_ZUB_Bereichsgrenze_Nach_ZBS_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachZBS_ZUB_Bereichsgrenze_Nach_ZBS_AttributeGroup.gif
new file mode 100644
index 0000000000..e2efc630b9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBereichsgrenzeNachZBS_ZUB_Bereichsgrenze_Nach_ZBS_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBgrenzeRBCWechsel_ZUB_Bgrenze_RBC_Wechsel_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBgrenzeRBCWechsel_ZUB_Bgrenze_RBC_Wechsel_AttributeGroup.gif
new file mode 100644
index 0000000000..b6fd7a0bf4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bereichsgrenze_zUBBgrenzeRBCWechsel_ZUB_Bgrenze_RBC_Wechsel_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bgrenze_RBC_Wechsel_AttributeGroup_bgrenzeRBCWechselBTSKette_Bgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bgrenze_RBC_Wechsel_AttributeGroup_bgrenzeRBCWechselBTSKette_Bgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup.gif
new file mode 100644
index 0000000000..427fb585ea
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bgrenze_RBC_Wechsel_AttributeGroup_bgrenzeRBCWechselBTSKette_Bgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bgrenze_RBC_Wechsel_AttributeGroup_iDRBCNachGrenze_ID_RBC_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bgrenze_RBC_Wechsel_AttributeGroup_iDRBCNachGrenze_ID_RBC_TypeClass.gif
new file mode 100644
index 0000000000..56db615a6f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Bgrenze_RBC_Wechsel_AttributeGroup_iDRBCNachGrenze_ID_RBC_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_SE_Ausruestung_AttributeGroup_anwendungssystem_Anwendungssystem_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_SE_Ausruestung_AttributeGroup_anwendungssystem_Anwendungssystem_TypeClass.gif
new file mode 100644
index 0000000000..adf0a6ff75
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_SE_Ausruestung_AttributeGroup_anwendungssystem_Anwendungssystem_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_SE_Ausruestung_AttributeGroup_baselineSystemVersion_Baseline_System_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_SE_Ausruestung_AttributeGroup_baselineSystemVersion_Baseline_System_Version_TypeClass.gif
new file mode 100644
index 0000000000..31a5cbb854
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_SE_Ausruestung_AttributeGroup_baselineSystemVersion_Baseline_System_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_Bezeichnung_AttributeGroup_bezeichnungZUBSE_Bezeichnung_ZUB_SE_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_Bezeichnung_AttributeGroup_bezeichnungZUBSE_Bezeichnung_ZUB_SE_TypeClass.gif
new file mode 100644
index 0000000000..5e6f3724b0
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_Bezeichnung_AttributeGroup_bezeichnungZUBSE_Bezeichnung_ZUB_SE_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_bezeichnung_ZUB_Streckeneigenschaft_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_bezeichnung_ZUB_Streckeneigenschaft_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..b3b0b3f8a8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_bezeichnung_ZUB_Streckeneigenschaft_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_metallteil_Metallteil_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_metallteil_Metallteil_AttributeGroup.gif
new file mode 100644
index 0000000000..d36652c832
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_metallteil_Metallteil_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_oberstrombegrenzungGueterzug_Oberstrombegrenzung_Gueterzug_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_oberstrombegrenzungGueterzug_Oberstrombegrenzung_Gueterzug_TypeClass.gif
new file mode 100644
index 0000000000..5ac7789850
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_oberstrombegrenzungGueterzug_Oberstrombegrenzung_Gueterzug_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_oberstrombegrenzungReisezug_Oberstrombegrenzung_Reisezug_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_oberstrombegrenzungReisezug_Oberstrombegrenzung_Reisezug_TypeClass.gif
new file mode 100644
index 0000000000..8b5cda1c96
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_oberstrombegrenzungReisezug_Oberstrombegrenzung_Reisezug_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_verbotAnhalten_Verbot_Anhalten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_verbotAnhalten_Verbot_Anhalten_TypeClass.gif
new file mode 100644
index 0000000000..d7724b60a2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_verbotAnhalten_Verbot_Anhalten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_verbotRegenerativeBremse_Verbot_Regenerative_Bremse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_verbotRegenerativeBremse_Verbot_Regenerative_Bremse_TypeClass.gif
new file mode 100644
index 0000000000..79ceed0345
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_verbotRegenerativeBremse_Verbot_Regenerative_Bremse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_verbotWBArt_Verbot_WB_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_verbotWBArt_Verbot_WB_Art_TypeClass.gif
new file mode 100644
index 0000000000..00f46c76ac
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_verbotWBArt_Verbot_WB_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_zUBSEAusruestung_ZUB_SE_Ausruestung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_zUBSEAusruestung_ZUB_SE_Ausruestung_AttributeGroup.gif
new file mode 100644
index 0000000000..943d22ac75
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZUB_Streckeneigenschaft_zUBSEAusruestung_ZUB_SE_Ausruestung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZiel_W_Element_AttributeGroup_iDZielWElement_ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZiel_W_Element_AttributeGroup_iDZielWElement_ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..f1e2d49e68
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZiel_W_Element_AttributeGroup_iDZielWElement_ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZiel_W_Element_AttributeGroup_wAnschluss_W_Anschluss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZiel_W_Element_AttributeGroup_wAnschluss_W_Anschluss_TypeClass.gif
new file mode 100644
index 0000000000..e75f794e23
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZiel_W_Element_AttributeGroup_wAnschluss_W_Anschluss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZugeinwirkung_Allg_AttributeGroup_zugeinwirkungArt_Zugeinwirkung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZugeinwirkung_Allg_AttributeGroup_zugeinwirkungArt_Zugeinwirkung_Art_TypeClass.gif
new file mode 100644
index 0000000000..568a3d4c8f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZugeinwirkung_Allg_AttributeGroup_zugeinwirkungArt_Zugeinwirkung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZugeinwirkung_Allg_AttributeGroup_zugeinwirkungTyp_Zugeinwirkung_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZugeinwirkung_Allg_AttributeGroup_zugeinwirkungTyp_Zugeinwirkung_Typ_TypeClass.gif
new file mode 100644
index 0000000000..1d2f734b15
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZugeinwirkung_Allg_AttributeGroup_zugeinwirkungTyp_Zugeinwirkung_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZugeinwirkung_bezeichnung_Bezeichnung_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZugeinwirkung_bezeichnung_Bezeichnung_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..002f4e523c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZugeinwirkung_bezeichnung_Bezeichnung_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZugeinwirkung_iDBezugspunkt_ID_Bezugspunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZugeinwirkung_iDBezugspunkt_ID_Bezugspunkt_TypeClass.gif
new file mode 100644
index 0000000000..9f53f0b8f1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZugeinwirkung_iDBezugspunkt_ID_Bezugspunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZugeinwirkung_zugeinwirkungAllg_Zugeinwirkung_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZugeinwirkung_zugeinwirkungAllg_Zugeinwirkung_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..a91d627903
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZugeinwirkung_zugeinwirkungAllg_Zugeinwirkung_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_elektrischerAntriebAnzahl_Elektrischer_Antrieb_Anzahl_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_elektrischerAntriebAnzahl_Elektrischer_Antrieb_Anzahl_TypeClass.gif
new file mode 100644
index 0000000000..7d18f38302
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_elektrischerAntriebAnzahl_Elektrischer_Antrieb_Anzahl_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_elektrischerAntriebLage_Elektrischer_Antrieb_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_elektrischerAntriebLage_Elektrischer_Antrieb_Lage_TypeClass.gif
new file mode 100644
index 0000000000..69db0cd7ee
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_elektrischerAntriebLage_Elektrischer_Antrieb_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_geschwindigkeitL_Geschwindigkeit_L_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_geschwindigkeitL_Geschwindigkeit_L_TypeClass.gif
new file mode 100644
index 0000000000..e792ad9dec
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_geschwindigkeitL_Geschwindigkeit_L_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_geschwindigkeitR_Geschwindigkeit_R_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_geschwindigkeitR_Geschwindigkeit_R_TypeClass.gif
new file mode 100644
index 0000000000..ca79a7f3d8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_geschwindigkeitR_Geschwindigkeit_R_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_herzstueckAntriebe_Herzstueck_Antriebe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_herzstueckAntriebe_Herzstueck_Antriebe_TypeClass.gif
new file mode 100644
index 0000000000..50ac6daf7e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_herzstueckAntriebe_Herzstueck_Antriebe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_kreuzungsgleis_Kreuzungsgleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_kreuzungsgleis_Kreuzungsgleis_TypeClass.gif
new file mode 100644
index 0000000000..69db0cd7ee
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_kreuzungsgleis_Kreuzungsgleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_stammgleis_Stammgleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_stammgleis_Stammgleis_TypeClass.gif
new file mode 100644
index 0000000000..aa20a64624
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_stammgleis_Stammgleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_weichensignal_Weichensignal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_weichensignal_Weichensignal_TypeClass.gif
new file mode 100644
index 0000000000..00d05b74f4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_weichensignal_Weichensignal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_zungenpruefkontaktAnzahl_Zungenpruefkontakt_Anzahl_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_zungenpruefkontaktAnzahl_Zungenpruefkontakt_Anzahl_TypeClass.gif
new file mode 100644
index 0000000000..4fdd589d6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/ctool16/CreateZungenpaar_AttributeGroup_zungenpruefkontaktAnzahl_Zungenpruefkontakt_Anzahl_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/AEA_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/AEA_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/AEA_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/AEA_Energieversorgung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/AEA_Energieversorgung_AttributeGroup.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/AEA_Energieversorgung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/AEA_GFK_IP_Adressblock_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/AEA_GFK_IP_Adressblock_AttributeGroup.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/AEA_GFK_IP_Adressblock_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_Segment_Profile.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_Segment_Profile.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_Segment_Profile.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_Segment_Profile_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_Segment_Profile_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_Segment_Profile_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_TS_Instanz.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_TS_Instanz.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_TS_Instanz.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_TS_Instanz_Adresse_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_TS_Instanz_Adresse_AttributeGroup.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_TS_Instanz_Adresse_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_Timing_Point.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_Timing_Point.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_Timing_Point.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_Timing_Point_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_Timing_Point_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_Timing_Point_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_Timing_Point_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_Timing_Point_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ATO_Timing_Point_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/AWU_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/AWU_TypeClass.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/AWU_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/A_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/A_Wert_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/A_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_ATO_Halt_Vor_EoA_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_ATO_Halt_Vor_EoA_TypeClass.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_ATO_Halt_Vor_EoA_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Bes_Langer_Einfahrweg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Bes_Langer_Einfahrweg_TypeClass.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Bes_Langer_Einfahrweg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Datenpunkt_EH_EM_Folgesignal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Datenpunkt_EH_EM_Folgesignal_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Datenpunkt_EH_EM_Folgesignal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Datenpunkt_EP_TPI_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Datenpunkt_EP_TPI_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Datenpunkt_EP_TPI_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Datenpunkt_TPI_Folgesignal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Datenpunkt_TPI_Folgesignal_TypeClass.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Datenpunkt_TPI_Folgesignal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Einmesspunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Einmesspunkt_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Einmesspunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Gehweg_Fahrbahn_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Gehweg_Fahrbahn_TypeClass.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Gehweg_Fahrbahn_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Grenze_Bereich_C_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Grenze_Bereich_C_TypeClass.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Grenze_Bereich_C_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Reduziert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Reduziert_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_Reduziert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_TypeClass.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Abstand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ader_Durchmesser_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ader_Durchmesser_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ader_Durchmesser_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ader_Querschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ader_Querschnitt_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ader_Querschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ader_Reserve_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ader_Reserve_TypeClass.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ader_Reserve_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Adresse_PLZ_Ort_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Adresse_PLZ_Ort_TypeClass.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Adresse_PLZ_Ort_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Adresse_Strasse_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Adresse_Strasse_Nr_TypeClass.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Adresse_Strasse_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akteur.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akteur.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akteur.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akteur_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akteur_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akteur_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akteur_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akteur_Zuordnung.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akteur_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akustik_Fussgaenger_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akustik_Fussgaenger_TypeClass.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akustik_Fussgaenger_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akustikdauer_Anb_Ann_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akustikdauer_Anb_Ann_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akustikdauer_Anb_Ann_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akustikdauer_Sonst_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akustikdauer_Sonst_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akustikdauer_Sonst_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akustikdauer_Voranz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akustikdauer_Voranz_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Akustikdauer_Voranz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anbindung_IB2_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anbindung_IB2_TypeClass.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anbindung_IB2_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anbindung_IB3_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anbindung_IB3_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anbindung_IB3_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anhang.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anhang.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anhang.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anhang_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anhang_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..338fb8d9a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anhang_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anhang_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anhang_Art_TypeClass.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anhang_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anlagenteil_Sonstige_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anlagenteil_Sonstige_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anlagenteil_Sonstige_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Annaeherungsgeschwindigkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Annaeherungsgeschwindigkeit_TypeClass.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Annaeherungsgeschwindigkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anordnung_Im_DP_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anordnung_Im_DP_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anordnung_Im_DP_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anschaltdauer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anschaltdauer_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anschaltdauer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anschlussnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anschlussnummer_TypeClass.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anschlussnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anwendung_ESG_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anwendung_ESG_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anwendung_ESG_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anwendung_GNT_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anwendung_GNT_TypeClass.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anwendung_GNT_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anwendung_Sonst_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anwendung_Sonst_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anwendung_Sonst_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anwendungssystem_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anwendungssystem_TypeClass.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anwendungssystem_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anzahl_Verseilelemente_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anzahl_Verseilelemente_TypeClass.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anzahl_Verseilelemente_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anzahl_Voll_LEU_Kalkuliert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anzahl_Voll_LEU_Kalkuliert_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anzahl_Voll_LEU_Kalkuliert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anzahl_Wiederhol_ZL_Anstoesse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anzahl_Wiederhol_ZL_Anstoesse_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anzahl_Wiederhol_ZL_Anstoesse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anzeigegefuehrt_ES_Kategorie_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anzeigegefuehrt_ES_Kategorie_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anzeigegefuehrt_ES_Kategorie_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anzeigetext_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anzeigetext_TypeClass.gif
new file mode 100644
index 0000000000..7c2aaac84e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Anzeigetext_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Art_Bedingung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Art_Bedingung_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Art_Bedingung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auffahrortung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auffahrortung_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auffahrortung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Aufloesung_Ssp_Zielgleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Aufloesung_Ssp_Zielgleis_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Aufloesung_Ssp_Zielgleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Aufloesung_Verzoegerung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Aufloesung_Verzoegerung_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Aufloesung_Verzoegerung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausfahrdruck_Gegengleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausfahrdruck_Gegengleis_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausfahrdruck_Gegengleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausfahrdruck_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausfahrdruck_TypeClass.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausfahrdruck_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausgabe_Fachdaten.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausgabe_Fachdaten.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausgabe_Fachdaten.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausgang_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausgang_Nr_TypeClass.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausgang_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausrichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausrichtung_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausrichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausrichtung_Winkel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausrichtung_Winkel_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausrichtung_Winkel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Aussenelementansteuerung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Aussenelementansteuerung.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Aussenelementansteuerung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Aussenelementansteuerung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Aussenelementansteuerung_Art_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Aussenelementansteuerung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Aussenelementansteuerung_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Aussenelementansteuerung_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Aussenelementansteuerung_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausstieg_ETCS_Sperre_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausstieg_ETCS_Sperre_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ausstieg_ETCS_Sperre_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Austausch_Antriebe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Austausch_Antriebe_TypeClass.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Austausch_Antriebe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auswurfrichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auswurfrichtung_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auswurfrichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auto_Einstellung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auto_Einstellung_TypeClass.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auto_Einstellung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auto_Erlaubnisholen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auto_Erlaubnisholen_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auto_Erlaubnisholen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auto_Erlaubnisruecklauf_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auto_Erlaubnisruecklauf_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auto_Erlaubnisruecklauf_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auto_Het_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auto_Het_TypeClass.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Auto_Het_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Automatische_Einstellung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Automatische_Einstellung_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Automatische_Einstellung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BSO_IP_AB_Teilsystem_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BSO_IP_AB_Teilsystem_AttributeGroup.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BSO_IP_AB_Teilsystem_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BSO_IP_Adressblock_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BSO_IP_Adressblock_AttributeGroup.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BSO_IP_Adressblock_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BSO_Teilsystem_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BSO_Teilsystem_Art_TypeClass.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BSO_Teilsystem_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Abhaengigkeit_Fue_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Abhaengigkeit_Fue_AttributeGroup.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Abhaengigkeit_Fue_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_Fuss_Rad_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_Fuss_Rad_AttributeGroup.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_Fuss_Rad_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_Strasse.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_Strasse.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_Strasse.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_Strasse_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_Strasse_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_Strasse_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_V.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_V.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_V.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_V_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_V_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Anlage_V_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Ausschaltung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Ausschaltung.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Ausschaltung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Bauart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Bauart_TypeClass.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Bauart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Bedien_Anz_Element_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Bedien_Anz_Element_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Bedien_Anz_Element_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Bedien_Anzeige_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Bedien_Anzeige_Element.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Bedien_Anzeige_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Buestra_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Buestra_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Buestra_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Deckendes_Signal_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Deckendes_Signal_Zuordnung.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Deckendes_Signal_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Einschaltung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Einschaltung.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Einschaltung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Einschaltung_Hp_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Einschaltung_Hp_AttributeGroup.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Einschaltung_Hp_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Einschaltung_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Einschaltung_Zuordnung.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Einschaltung_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Funktionsueberwachung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Funktionsueberwachung_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Funktionsueberwachung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Gefahrraum_Eckpunkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Gefahrraum_Eckpunkt.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Gefahrraum_Eckpunkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Gefahrraum_Eckpunkt_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Gefahrraum_Eckpunkt_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Gefahrraum_Eckpunkt_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Gleisbezogener_Gefahrraum.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Gleisbezogener_Gefahrraum.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Gleisbezogener_Gefahrraum.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Handschalteinrichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Handschalteinrichtung_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Handschalteinrichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Kante.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Kante.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Kante.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Kreuzungsplan.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Kreuzungsplan.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Kreuzungsplan.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Kreuzungsplan_Koordinaten_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Kreuzungsplan_Koordinaten_AttributeGroup.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Kreuzungsplan_Koordinaten_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Lage_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Mit_GFR_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Mit_GFR_TypeClass.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Mit_GFR_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Nachlaufzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Nachlaufzeit_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Nachlaufzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Neigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Neigung_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Neigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Schnittstelle.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Schnittstelle.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Schnittstelle.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Schnittstelle_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Schnittstelle_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Schnittstelle_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Sicherungsart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Sicherungsart_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Sicherungsart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Sicherungszeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Sicherungszeit_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Sicherungszeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Spezifisches_Signal.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Spezifisches_Signal.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Spezifisches_Signal.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Strasse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Strasse_TypeClass.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Strasse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Technik_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Technik_TypeClass.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Technik_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Vorlaufzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Vorlaufzeit_TypeClass.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_Vorlaufzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_WS_Fstr_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_WS_Fstr_Zuordnung.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BUE_WS_Fstr_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BV_Darstellung_In_Plan_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BV_Darstellung_In_Plan_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BV_Darstellung_In_Plan_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BV_Kategorie_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BV_Kategorie_TypeClass.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/BV_Kategorie_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/B_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/B_Wert_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/B_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Anlage.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Anlage_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Anlage_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Anlage_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Dach.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Dach.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Dach.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Kante.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Kante.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Kante.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Kante_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Kante_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Kante_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Kante_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Kante_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Kante_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Zugang.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Zugang.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Zugang.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Zugang_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Zugang_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Zugang_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Zugang_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Zugang_Art_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bahnsteig_Zugang_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Balise.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Balise.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Balise.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Balise_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Balise_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Balise_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Balise_Geraetestand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Balise_Geraetestand_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Balise_Geraetestand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Balisenhalter_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Balisenhalter_TypeClass.gif
new file mode 100644
index 0000000000..338fb8d9a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Balisenhalter_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bandbreite_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bandbreite_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bandbreite_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Baseline_System_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Baseline_System_Version_TypeClass.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Baseline_System_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Basis_Objekt_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Basis_Objekt_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Basis_Objekt_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bauabschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bauabschnitt_TypeClass.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bauabschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bauart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bauart_TypeClass.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bauart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Baubereich_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Baubereich_Art_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Baubereich_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Baulast_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Baulast_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Baulast_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Baumprofil_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Baumprofil_TypeClass.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Baumprofil_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bauphase_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bauphase_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bauphase_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bauzustand_Kurzbezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bauzustand_Kurzbezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bauzustand_Kurzbezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bauzustand_Langbezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bauzustand_Langbezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bauzustand_Langbezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bearbeitungsvermerk.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bearbeitungsvermerk.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bearbeitungsvermerk.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bearbeitungsvermerk_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bearbeitungsvermerk_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bearbeitungsvermerk_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bearbeitungsvermerk_Rolle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bearbeitungsvermerk_Rolle_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bearbeitungsvermerk_Rolle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Anrueckabschnitt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Anrueckabschnitt.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Anrueckabschnitt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Anrueckabschnitt_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Anrueckabschnitt_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Anrueckabschnitt_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Anzeige_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Anzeige_Element.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Anzeige_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Anzeige_Element_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Anzeige_Element_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Anzeige_Element_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Anzeige_Element_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Anzeige_Element_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Anzeige_Element_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Bezirk.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Bezirk.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Bezirk.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Bezirk_Adressformel_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Bezirk_Adressformel_AttributeGroup.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Bezirk_Adressformel_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Bezirk_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Bezirk_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Bezirk_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Bezirk_Anhaenge_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Bezirk_Anhaenge_AttributeGroup.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Bezirk_Anhaenge_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Einricht_Bauart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Einricht_Bauart_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Einricht_Bauart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Einricht_Oertl_Bez_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Einricht_Oertl_Bez_TypeClass.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Einricht_Oertl_Bez_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Einricht_Oertlich_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Einricht_Oertlich_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Einricht_Oertlich_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Einrichtung_Oertlich.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Einrichtung_Oertlich.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Einrichtung_Oertlich.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Einrichtung_Oertlich_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Einrichtung_Oertlich_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Einrichtung_Oertlich_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_GBT.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_GBT.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_GBT.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_GBT_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_GBT_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_GBT_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oberflaeche.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oberflaeche.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oberflaeche.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oberflaeche_Anhaenge_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oberflaeche_Anhaenge_AttributeGroup.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oberflaeche_Anhaenge_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oberflaeche_Bild.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oberflaeche_Bild.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oberflaeche_Bild.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oberflaeche_Bild_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oberflaeche_Bild_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oberflaeche_Bild_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oertlichkeit.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oertlichkeit.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oertlichkeit.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oertlichkeit_Kennzahlen_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oertlichkeit_Kennzahlen_AttributeGroup.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Oertlichkeit_Kennzahlen_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Platz.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Platz.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Platz.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Platz_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Platz_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Platz_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Platz_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Platz_Art_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Platz_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Standort.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Standort.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Standort.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Standort_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Standort_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Standort_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Zentrale.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Zentrale.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Zentrale.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Zentrale_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Zentrale_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedien_Zentrale_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedienbarkeit_Anzeigefeld_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedienbarkeit_Anzeigefeld_TypeClass.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedienbarkeit_Anzeigefeld_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedienplatzbezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedienplatzbezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedienplatzbezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedienplatznummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedienplatznummer_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedienplatznummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedienraumnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedienraumnummer_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedienraumnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedienung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedienung_Art_TypeClass.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedienung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_Besondere_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_Besondere_AttributeGroup.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_Besondere_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_PZB_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_PZB_AttributeGroup.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_PZB_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_Signal_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_Signal_AttributeGroup.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_Signal_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_Sonstige_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_Sonstige_AttributeGroup.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_Sonstige_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_Weiche_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_Weiche_AttributeGroup.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_Weiche_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_Weichenlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_Weichenlage_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bedingung_Weichenlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Beeinflussung_Strassenverkehr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Beeinflussung_Strassenverkehr_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Beeinflussung_Strassenverkehr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Befestigung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Befestigung_Art_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Befestigung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Begrenzung_A_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Begrenzung_A_TypeClass.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Begrenzung_A_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Begrenzung_B_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Begrenzung_B_TypeClass.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Begrenzung_B_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Beleuchtet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Beleuchtet_TypeClass.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Beleuchtet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bemerkung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bemerkung_TypeClass.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bemerkung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bereich_Objekt_Teilbereich_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bereich_Objekt_Teilbereich_AttributeGroup.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bereich_Objekt_Teilbereich_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Beschreibung_Sonderanlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Beschreibung_Sonderanlage_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Beschreibung_Sonderanlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Beschreibung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Beschreibung_TypeClass.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Beschreibung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Besetzte_Ausfahrt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Besetzte_Ausfahrt_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Besetzte_Ausfahrt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Besonderes_Fahrwegelement_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Besonderes_Fahrwegelement_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Besonderes_Fahrwegelement_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Besonderes_Schaltkriterium_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Besonderes_Schaltkriterium_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Besonderes_Schaltkriterium_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bestandsrelevanz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bestandsrelevanz_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bestandsrelevanz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bestandsschutz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bestandsschutz_TypeClass.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bestandsschutz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Betriebsfuehrung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Betriebsfuehrung_TypeClass.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Betriebsfuehrung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Betriebsstellenbezeichner_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Betriebsstellenbezeichner_TypeClass.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Betriebsstellenbezeichner_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bettungswiderstand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bettungswiderstand_TypeClass.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bettungswiderstand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Bed_Anrueckabschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Bed_Anrueckabschnitt_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Bed_Anrueckabschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Bed_Anzeige_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Bed_Anzeige_Element_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Bed_Anzeige_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Bed_Zentrale_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Bed_Zentrale_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Bed_Zentrale_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Gleis_Bezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Gleis_Bezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Gleis_Bezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Lageplan_Blattschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Lageplan_Blattschnitt_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Lageplan_Blattschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Schrankenantrieb_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Schrankenantrieb_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Schrankenantrieb_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Strecke_BTS_1_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Strecke_BTS_1_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Strecke_BTS_1_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Strecke_BTS_2_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Strecke_BTS_2_TypeClass.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Strecke_BTS_2_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Strecke_BTS_3_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Strecke_BTS_3_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_Strecke_BTS_3_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_ZUB_Bereichsgrenze_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_ZUB_Bereichsgrenze_TypeClass.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bez_ZUB_Bereichsgrenze_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_AEA_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_AEA_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_AEA_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_ATO_TP_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_ATO_TP_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_ATO_TP_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Aussenanlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Aussenanlage_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Aussenanlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_BSO_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_BSO_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_BSO_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_BUE_GFR_Eckpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_BUE_GFR_Eckpunkt_TypeClass.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_BUE_GFR_Eckpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Bahnsteig_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Bahnsteig_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Bahnsteig_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Bahnsteig_Kante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Bahnsteig_Kante_TypeClass.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Bahnsteig_Kante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Besondere_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Besondere_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Besondere_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_ESTW_ZE_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_ESTW_ZE_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_ESTW_ZE_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_ETCS_Kante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_ETCS_Kante_TypeClass.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_ETCS_Kante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Fstr_DWeg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Fstr_DWeg_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Fstr_DWeg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_GFR_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_GFR_Element_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_GFR_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_GFR_Tripelspiegel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_GFR_Tripelspiegel_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_GFR_Tripelspiegel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Kabel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Kabel_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Kabel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Kabel_Verteilpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Kabel_Verteilpunkt_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Kabel_Verteilpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Kennbuchstabe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Kennbuchstabe_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Kennbuchstabe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_LEU_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_LEU_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_LEU_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Lageplan_Kurz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Lageplan_Kurz_TypeClass.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Lageplan_Kurz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Lageplan_Lang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Lageplan_Lang_TypeClass.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Lageplan_Lang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Lageplan_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Lageplan_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Lageplan_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Markanter_Punkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Markanter_Punkt_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Markanter_Punkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_NB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_NB_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_NB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_NB_Zone_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_NB_Zone_TypeClass.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_NB_Zone_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Planung_Gruppe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Planung_Gruppe_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Planung_Gruppe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Planung_Projekt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Planung_Projekt_TypeClass.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Planung_Projekt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_RBC_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_RBC_TypeClass.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_RBC_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Schloss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Schloss_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Schloss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Schluessel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Schluessel_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Schluessel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Sk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Sk_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Sk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Stellwerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Stellwerk_TypeClass.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Stellwerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Strecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Strecke_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Strecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_TSO_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_TSO_TypeClass.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_TSO_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Tabelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Tabelle_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Tabelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Unteranlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Unteranlage_TypeClass.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Unteranlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Verkehrszeichen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Verkehrszeichen_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_Verkehrszeichen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_ZUB_SE_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_ZUB_SE_TypeClass.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_ZUB_SE_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_ZUB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_ZUB_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bezeichnung_ZUB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bf_Kennung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bf_Kennung_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bf_Kennung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bf_Nr_ANB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bf_Nr_ANB_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bf_Nr_ANB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bf_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bf_Nr_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bf_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bf_Nr_ZN_A_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bf_Nr_ZN_A_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bf_Nr_ZN_A_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_ESG_Bed_Ausstieg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_ESG_Bed_Ausstieg_AttributeGroup.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_ESG_Bed_Ausstieg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_L2_Bed_Einstieg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_L2_Bed_Einstieg_AttributeGroup.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_L2_Bed_Einstieg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_LZB_Bed_Einstieg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_LZB_Bed_Einstieg_AttributeGroup.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_LZB_Bed_Einstieg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_Ohne_Bed_Einstieg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_Ohne_Bed_Einstieg_AttributeGroup.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_Ohne_Bed_Einstieg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_PZB_Bed_Einstieg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_PZB_Bed_Einstieg_AttributeGroup.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_PZB_Bed_Einstieg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_ZBS_Bed_Einstieg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_ZBS_Bed_Einstieg_AttributeGroup.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_Nach_ZBS_Bed_Einstieg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bild_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bild_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bild_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Binaerdaten.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Binaerdaten.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Binaerdaten.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Binaerdaten_Datei_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Binaerdaten_Datei_AttributeGroup.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Binaerdaten_Datei_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Blitzpfeil_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Blitzpfeil_TypeClass.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Blitzpfeil_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Anlage.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Anlage_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Anlage_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Anlage_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Bauform_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Bauform_TypeClass.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Bauform_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Element.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Element_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Element_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Element_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Element_Erlaubnis_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Element_Erlaubnis_AttributeGroup.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Element_Erlaubnis_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Strecke.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Strecke.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Strecke.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Strecke_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Strecke_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Block_Strecke_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bremsweg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bremsweg_TypeClass.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Bremsweg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/C_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/C_Wert_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/C_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Container_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Container_AttributeGroup.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Container_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DA_Manuell_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DA_Manuell_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DA_Manuell_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DB_GDI_Referenz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DB_GDI_Referenz_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DB_GDI_Referenz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DD_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DD_Wert_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DD_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_ATO_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_ATO_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_ATO_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Bezug_Funktional_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Bezug_Funktional_Art_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Bezug_Funktional_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Bezug_Funktional_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Bezug_Funktional_AttributeGroup.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Bezug_Funktional_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_ETCS_Adresse_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_ETCS_Adresse_AttributeGroup.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_ETCS_Adresse_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Link_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Link_Art_TypeClass.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Link_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Telegramm_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Telegramm_AttributeGroup.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Telegramm_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Telegramm_ESG_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Telegramm_ESG_AttributeGroup.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Telegramm_ESG_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_Art_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_AttributeGroup.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_ESG_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_ESG_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_ESG_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_ETCS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_ETCS_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_ETCS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GESG_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GESG_AttributeGroup.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GESG_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GETCS_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GETCS_AttributeGroup.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GETCS_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GGNT_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GGNT_AttributeGroup.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GGNT_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GNT_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GNT_TypeClass.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GNT_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GSonst_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GSonst_AttributeGroup.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GSonst_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GTrans_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GTrans_AttributeGroup.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GTrans_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GZBS_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GZBS_AttributeGroup.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_GZBS_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_Sonst_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_Sonst_TypeClass.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_Sonst_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_Trans_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_Trans_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_Trans_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_V_La_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_V_La_TypeClass.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_V_La_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_ZBS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_ZBS_TypeClass.gif
new file mode 100644
index 0000000000..e4b530eca1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Typ_ZBS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Verlinkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Verlinkt_TypeClass.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DP_Verlinkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Intervall_200_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Intervall_200_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Intervall_200_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Intervall_50_200_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Intervall_50_200_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Intervall_50_200_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Intervall_50_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Intervall_50_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Intervall_50_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Prio_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Prio_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Prio_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Reihenfolge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Reihenfolge_TypeClass.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Reihenfolge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_V_Aufwertung_Verzicht_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_V_Aufwertung_Verzicht_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_V_Aufwertung_Verzicht_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_V_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_V_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_V_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Vorzug_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Vorzug_TypeClass.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DWeg_Vorzug_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/D_LEVELTR_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/D_LEVELTR_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/D_LEVELTR_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Darstellung_Polygonzug_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Darstellung_Polygonzug_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Darstellung_Polygonzug_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Darstellung_Richtungswinkel_Bezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Darstellung_Richtungswinkel_Bezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Darstellung_Richtungswinkel_Bezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Darstellung_Richtungswinkel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Darstellung_Richtungswinkel_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Darstellung_Richtungswinkel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Dateiname_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Dateiname_TypeClass.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Dateiname_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Dateityp_Binaerdatei_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Dateityp_Binaerdatei_TypeClass.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Dateityp_Binaerdatei_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Dateityp_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Dateityp_TypeClass.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Dateityp_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Daten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Daten_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Daten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt_Beschreibung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt_Beschreibung_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt_Beschreibung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt_Einmesspunkt_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt_Einmesspunkt_AttributeGroup.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt_Einmesspunkt_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt_Link.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt_Link.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datenpunkt_Link.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Abschluss_Einzel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Abschluss_Einzel_TypeClass.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Abschluss_Einzel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Abschluss_Gruppe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Abschluss_Gruppe_TypeClass.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Abschluss_Gruppe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Abschluss_Projekt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Abschluss_Projekt_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Abschluss_Projekt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Auslieferung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Auslieferung_TypeClass.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Auslieferung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Regelwerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Regelwerk_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Regelwerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Regelwerksstand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Regelwerksstand_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Regelwerksstand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Uebernahme_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Uebernahme_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Datum_Uebernahme_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Deadlockpruefung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Deadlockpruefung_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Deadlockpruefung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Delta_VGES_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Delta_VGES_TypeClass.gif
new file mode 100644
index 0000000000..e4b530eca1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Delta_VGES_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Delta_VLES_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Delta_VLES_TypeClass.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Delta_VLES_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Delta_VZES_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Delta_VZES_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Delta_VZES_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DocumentRoot.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DocumentRoot.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/DocumentRoot.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Dunkelschaltanstoss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Dunkelschaltanstoss_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Dunkelschaltanstoss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Dunkelschaltung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Dunkelschaltung_TypeClass.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Dunkelschaltung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Durchfahrdruck_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Durchfahrdruck_TypeClass.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Durchfahrdruck_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Durchfahrt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Durchfahrt_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Durchfahrt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EKW_Kr_Anteil_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EKW_Kr_Anteil_TypeClass.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EKW_Kr_Anteil_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESG_Ind_Erlaeuterung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESG_Ind_Erlaeuterung_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESG_Ind_Erlaeuterung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESG_Ind_Parameter_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESG_Ind_Parameter_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESG_Ind_Parameter_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESG_Ind_Parameterwert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESG_Ind_Parameterwert_TypeClass.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESG_Ind_Parameterwert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESG_Individuelle_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESG_Individuelle_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESG_Individuelle_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESG_Spezifische_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESG_Spezifische_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESG_Spezifische_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESTW_ZE_Energieversorgung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESTW_ZE_Energieversorgung_AttributeGroup.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESTW_ZE_Energieversorgung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESTW_Zentraleinheit.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESTW_Zentraleinheit.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESTW_Zentraleinheit.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESTW_Zentraleinheit_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESTW_Zentraleinheit_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESTW_Zentraleinheit_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESTW_Zentraleinheit_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESTW_Zentraleinheit_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ESTW_Zentraleinheit_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Adresse_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Adresse_AttributeGroup.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Adresse_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Gefahrpunktabstand_Abweichend_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Gefahrpunktabstand_Abweichend_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Gefahrpunktabstand_Abweichend_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Kante.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Kante.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Kante.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Kante_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Kante_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Kante_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Knoten.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Knoten.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Knoten.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Knoten_Art_Sonstige_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Knoten_Art_Sonstige_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Knoten_Art_Sonstige_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Paketnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Paketnummer_TypeClass.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Paketnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Par_Erlaeuterung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Par_Erlaeuterung_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Par_Erlaeuterung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Parametername_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Parametername_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Parametername_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Parameterwert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Parameterwert_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Parameterwert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Richtungsanzeige.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Richtungsanzeige.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Richtungsanzeige.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Signal.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Signal.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Signal.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Signal_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Signal_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Signal_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Signal_DWeg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Signal_DWeg_AttributeGroup.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Signal_DWeg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Signal_TBV_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Signal_TBV_AttributeGroup.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_Signal_TBV_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_System_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_System_Version_TypeClass.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_System_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_W_Kr.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_W_Kr.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_W_Kr.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_W_Kr_MUKA_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_W_Kr_MUKA_AttributeGroup.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ETCS_W_Kr_MUKA_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Art_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Ausgang_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Ausgang_AttributeGroup.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Ausgang_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Eingang_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Eingang_AttributeGroup.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Eingang_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Physisch_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Physisch_AttributeGroup.gif
new file mode 100644
index 0000000000..e4b530eca1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Physisch_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Typ_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Virtuell_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Virtuell_AttributeGroup.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/EV_Modul_Virtuell_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/E_Mail_Adresse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/E_Mail_Adresse_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/E_Mail_Adresse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einfahrdruck_Gegengleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einfahrdruck_Gegengleis_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einfahrdruck_Gegengleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einfahrdruck_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einfahrdruck_TypeClass.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einfahrdruck_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Eingang_Gepuffert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Eingang_Gepuffert_TypeClass.gif
new file mode 100644
index 0000000000..e4b530eca1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Eingang_Gepuffert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einschaltverz_Errechnet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einschaltverz_Errechnet_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einschaltverz_Errechnet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einschaltverz_Gewaehlt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einschaltverz_Gewaehlt_TypeClass.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einschaltverz_Gewaehlt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einstellkontrollzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einstellkontrollzeit_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einstellkontrollzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einstieg_Erlaubt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einstieg_Erlaubt_TypeClass.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einstieg_Erlaubt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einstieg_Ohne_Rueckw_Sig_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einstieg_Ohne_Rueckw_Sig_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einstieg_Ohne_Rueckw_Sig_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einwahlstelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einwahlstelle_TypeClass.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einwahlstelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einzeldatei_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einzeldatei_Art_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Einzeldatei_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Elektrischer_Antrieb_Anzahl_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Elektrischer_Antrieb_Anzahl_TypeClass.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Elektrischer_Antrieb_Anzahl_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Elektrischer_Antrieb_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Elektrischer_Antrieb_Lage_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Elektrischer_Antrieb_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Lage_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Position.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Position.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Position.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Position_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Position_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Position_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Stil.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Stil.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Stil.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Stil_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Stil_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Stil_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Verschluss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Verschluss_TypeClass.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Element_Verschluss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Energie_Eingang_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Energie_Eingang_Art_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Energie_Eingang_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Energieversorgung_Art_Ersatz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Energieversorgung_Art_Ersatz_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Energieversorgung_Art_Ersatz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Energieversorgung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Energieversorgung_Art_TypeClass.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Energieversorgung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Entgleisungsschuh_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Entgleisungsschuh_AttributeGroup.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Entgleisungsschuh_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Erlaubnis_Staendig_Vorhanden_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Erlaubnis_Staendig_Vorhanden_TypeClass.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Erlaubnis_Staendig_Vorhanden_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Erlaubnisabgabespeicherung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Erlaubnisabgabespeicherung_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Erlaubnisabgabespeicherung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Erlaubnisholen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Erlaubnisholen_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Erlaubnisholen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Erreichungstoleranz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Erreichungstoleranz_TypeClass.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Erreichungstoleranz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ersatzstecker_Gleisbezogen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ersatzstecker_Gleisbezogen_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ersatzstecker_Gleisbezogen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Erzeugung_Zeitstempel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Erzeugung_Zeitstempel_TypeClass.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Erzeugung_Zeitstempel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FA_FAE_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FA_FAE_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FA_FAE_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage_Elektr_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage_Elektr_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage_Elektr_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage_Kaskade_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage_Kaskade_AttributeGroup.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage_Kaskade_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage_Uebertragung_FMinfo_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage_Uebertragung_FMinfo_AttributeGroup.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anlage_Uebertragung_FMinfo_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anschluss_Bezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anschluss_Bezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anschluss_Bezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anschluss_Speiserichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anschluss_Speiserichtung_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Anschluss_Speiserichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Art_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element_Anschluss_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element_Anschluss_AttributeGroup.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element_Anschluss_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element_Art_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element_Seilanzahl_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element_Seilanzahl_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element_Seilanzahl_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element_Seiltyp_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element_Seiltyp_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Element_Seiltyp_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Hilffreimeldung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Hilffreimeldung_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Hilffreimeldung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Isolierung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Isolierung_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Isolierung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Kaskade_Bezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Kaskade_Bezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Kaskade_Bezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Kaskade_Einzelauswertung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Kaskade_Einzelauswertung_TypeClass.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Kaskade_Einzelauswertung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente_Achszaehlpunkt_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente_Achszaehlpunkt_AttributeGroup.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente_Achszaehlpunkt_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente_Art_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente_Schienenprofil_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente_Schienenprofil_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente_Schienenprofil_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente_Stromversorgung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente_Stromversorgung_TypeClass.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente_Stromversorgung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente_Typ_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Komponente_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_Beeinflusst_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_Beeinflusst_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_Beeinflusst_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_E1_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_E1_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_E1_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_E2_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_E2_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_E2_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_E3_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_E3_TypeClass.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_E3_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_S_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_S_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_S_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Typ_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FMA_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_Anschaltbedingung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_Anschaltbedingung.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_Anschaltbedingung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ESG_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ESG_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ESG_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ESG_Subtyp_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ESG_Subtyp_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ESG_Subtyp_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ESG_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ESG_Typ_TypeClass.gif
new file mode 100644
index 0000000000..7c2aaac84e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ESG_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ETCS_L2_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ETCS_L2_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ETCS_L2_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ETCS_L2_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ETCS_L2_Typ_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ETCS_L2_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ETCS_Trans_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ETCS_Trans_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ETCS_Trans_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ETCS_Trans_Paket_41_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ETCS_Trans_Paket_41_AttributeGroup.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ETCS_Trans_Paket_41_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ETCS_Trans_Paket_N_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ETCS_Trans_Paket_N_AttributeGroup.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ETCS_Trans_Paket_N_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_Fahrweg_Teil.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_Fahrweg_Teil.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_Fahrweg_Teil.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_Fahrweg_Teil_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_Fahrweg_Teil_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_Fahrweg_Teil_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_Fahrweg_Teile_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_Fahrweg_Teile_AttributeGroup.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_Fahrweg_Teile_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_GNT_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_GNT_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_GNT_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_GNT_Punktart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_GNT_Punktart_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_GNT_Punktart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_Hinweis_Funktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_Hinweis_Funktion_TypeClass.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_Hinweis_Funktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ZBS_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ZBS_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ZBS_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ZBS_Merkmale_La_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ZBS_Merkmale_La_AttributeGroup.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ZBS_Merkmale_La_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ZBS_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ZBS_Typ_TypeClass.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FT_ZBS_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FUEM_Auswertung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FUEM_Auswertung_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FUEM_Auswertung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FW_Teil_Nummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FW_Teil_Nummer_TypeClass.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/FW_Teil_Nummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/F_Bedienung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/F_Bedienung_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/F_Bedienung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/F_ST_Z_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/F_ST_Z_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/F_ST_Z_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fabrikat_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fabrikat_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fabrikat_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fachdaten_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fachdaten_AttributeGroup.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fachdaten_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fachtelegramm.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fachtelegramm.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fachtelegramm.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fahrbahn_Befestigung_Gleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fahrbahn_Befestigung_Gleis_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fahrbahn_Befestigung_Gleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fahrbahn_Befestigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fahrbahn_Befestigung_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fahrbahn_Befestigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fahrbahn_Breite_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fahrbahn_Breite_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fahrbahn_Breite_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fahrstrom_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fahrstrom_TypeClass.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fahrstrom_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fahrt_Ueber_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fahrt_Ueber_TypeClass.gif
new file mode 100644
index 0000000000..338fb8d9a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fahrt_Ueber_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fiktives_Signal_Funktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fiktives_Signal_Funktion_TypeClass.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fiktives_Signal_Funktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Freimelde_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Freimelde_Zuordnung.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Freimelde_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Raum_Freimeldung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Raum_Freimeldung_TypeClass.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Raum_Freimeldung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Schutz.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Schutz.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Schutz.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Schutz_Anforderer_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Schutz_Anforderer_AttributeGroup.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Schutz_Anforderer_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Schutz_Signal_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Schutz_Signal_AttributeGroup.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Schutz_Signal_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Schutz_W_Gsp_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Schutz_W_Gsp_AttributeGroup.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Schutz_W_Gsp_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Schutz_Weitergabe_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Schutz_Weitergabe_AttributeGroup.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Schutz_Weitergabe_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Signal_Zielsperrung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Signal_Zielsperrung_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Signal_Zielsperrung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Verzicht_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Verzicht_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Verzicht_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_W_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_W_Lage_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_W_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Zwieschutz.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Zwieschutz.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Zwieschutz.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Zwieschutz_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Zwieschutz_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fla_Zwieschutz_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Freie_Stellbarkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Freie_Stellbarkeit_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Freie_Stellbarkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Abhaengigkeit.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Abhaengigkeit.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Abhaengigkeit.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Abhaengigkeit_Ssp_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Abhaengigkeit_Ssp_AttributeGroup.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Abhaengigkeit_Ssp_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Aneinander.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Aneinander.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Aneinander.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Aneinander_Bedienstring_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Aneinander_Bedienstring_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Aneinander_Bedienstring_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Aneinander_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Aneinander_Zuordnung.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Aneinander_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Bedienstring_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Bedienstring_TypeClass.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Bedienstring_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Bildezeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Bildezeit_TypeClass.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Bildezeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_DWeg.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_DWeg.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_DWeg.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_DWeg_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_DWeg_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_DWeg_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_DWeg_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_DWeg_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_DWeg_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_DWeg_Spezifisch_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_DWeg_Spezifisch_AttributeGroup.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_DWeg_Spezifisch_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_DWeg_W_Kr.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_DWeg_W_Kr.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_DWeg_W_Kr.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Fahrweg.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Fahrweg.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Fahrweg.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Mittel_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Mittel_Art_TypeClass.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Mittel_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Mittel_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Mittel_AttributeGroup.gif
new file mode 100644
index 0000000000..7c2aaac84e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Mittel_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Mittel_V_Aufwertung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Mittel_V_Aufwertung_TypeClass.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Mittel_V_Aufwertung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Nichthaltfall.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Nichthaltfall.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Nichthaltfall.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Rangier_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Rangier_Art_TypeClass.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Rangier_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Rangier_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Rangier_AttributeGroup.gif
new file mode 100644
index 0000000000..338fb8d9a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Rangier_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Rangier_Fla_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Rangier_Fla_Zuordnung.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Rangier_Fla_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Reihenfolge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Reihenfolge_TypeClass.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Reihenfolge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Signalisierung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Signalisierung.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Signalisierung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Umfahrpunkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Umfahrpunkt.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Umfahrpunkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_V_Hg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_V_Hg_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_V_Hg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_V_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_V_TypeClass.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_V_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Vsigabstand_Verkuerzt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Vsigabstand_Verkuerzt_TypeClass.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Vsigabstand_Verkuerzt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Zug_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Zug_Art_TypeClass.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Zug_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Zug_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Zug_AttributeGroup.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Zug_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Zug_DWeg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Zug_DWeg_AttributeGroup.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Zug_DWeg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Zug_Rangier.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Zug_Rangier.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Zug_Rangier.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Zug_Rangier_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Zug_Rangier_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fstr_Zug_Rangier_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fue_Schaltfall_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fue_Schaltfall_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fue_Schaltfall_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fuehrende_Oertlichkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fuehrende_Oertlichkeit_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fuehrende_Oertlichkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fuellung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fuellung_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fuellung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fundament_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fundament_Art_TypeClass.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fundament_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Funktion_Ohne_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Funktion_Ohne_Signal_TypeClass.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Funktion_Ohne_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Funktionalitaet_Anzeigefeld_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Funktionalitaet_Anzeigefeld_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Funktionalitaet_Anzeigefeld_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fuss_Radweg_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fuss_Radweg_Art_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fuss_Radweg_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fuss_Radweg_Seite_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fuss_Radweg_Seite_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Fuss_Radweg_Seite_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Form_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Form_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Form_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_KAD_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_KAD_TypeClass.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_KAD_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Kante.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Kante.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Kante.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Kante_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Kante_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Kante_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Knoten.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Knoten.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Knoten.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Koordinatensystem_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Koordinatensystem_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Koordinatensystem_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_PAD_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_PAD_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_PAD_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Punkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Punkt.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Punkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Punkt_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Punkt_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Punkt_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Radius_A_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Radius_A_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Radius_A_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Radius_B_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Radius_B_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Radius_B_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Richtungswinkel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Richtungswinkel_TypeClass.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GEO_Richtungswinkel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFK_Kategorie_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFK_Kategorie_TypeClass.gif
new file mode 100644
index 0000000000..e4b530eca1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFK_Kategorie_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Anlage.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Anlage_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Anlage_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Anlage_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Art_TypeClass.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Element.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Element_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Element_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Element_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Neigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Neigung_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Neigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Tripelspiegel.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Tripelspiegel.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Tripelspiegel.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Tripelspiegel_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Tripelspiegel_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..e4b530eca1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Tripelspiegel_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Tripelspiegel_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Tripelspiegel_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Tripelspiegel_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Typ_TypeClass.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GFR_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GKZSS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GKZSS_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GKZSS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GK_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GK_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GK_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GK_X_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GK_X_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GK_X_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GK_Y_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GK_Y_TypeClass.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GK_Y_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GK_Z_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GK_Z_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GK_Z_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GUE_Abstand_Abweichend_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GUE_Abstand_Abweichend_TypeClass.gif
new file mode 100644
index 0000000000..338fb8d9a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GUE_Abstand_Abweichend_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GUE_Anordnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GUE_Anordnung_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GUE_Anordnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GUE_Bauart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GUE_Bauart_TypeClass.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GUE_Bauart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GUE_Energieversorgung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GUE_Energieversorgung_TypeClass.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GUE_Energieversorgung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GUE_Messstrecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GUE_Messstrecke_TypeClass.gif
new file mode 100644
index 0000000000..e4b530eca1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GUE_Messstrecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GZ_Freimeldung_L_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GZ_Freimeldung_L_AttributeGroup.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GZ_Freimeldung_L_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GZ_Freimeldung_R_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GZ_Freimeldung_R_AttributeGroup.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/GZ_Freimeldung_R_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gegengleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gegengleis_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gegengleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geltungsbereich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geltungsbereich_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geltungsbereich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschaltet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschaltet_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschaltet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschwindigkeit_L_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschwindigkeit_L_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschwindigkeit_L_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschwindigkeit_R_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschwindigkeit_R_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschwindigkeit_R_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschwindigkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschwindigkeit_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschwindigkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschwindigkeitsprofil.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschwindigkeitsprofil.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschwindigkeitsprofil.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschwindigkeitsprofil_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschwindigkeitsprofil_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Geschwindigkeitsprofil_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gitterbehang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gitterbehang_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gitterbehang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Abschluss.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Abschluss.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Abschluss.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Abschluss_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Abschluss_Art_TypeClass.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Abschluss_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Abschnitt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Abschnitt.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Abschnitt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Am_Bue_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Am_Bue_TypeClass.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Am_Bue_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Art.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Art.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Art.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Baubereich.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Baubereich.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Baubereich.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Bezeichnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Bezeichnung.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Bezeichnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Bezeichnung_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Bezeichnung_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Bezeichnung_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Fahrbahn.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Fahrbahn.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Fahrbahn.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Lichtraum.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Lichtraum.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Lichtraum.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Schaltgruppe.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Schaltgruppe.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleis_Schaltgruppe.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleisart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleisart_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleisart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleissperre_Betriebsart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleissperre_Betriebsart_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleissperre_Betriebsart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleissperre_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleissperre_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleissperre_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleissperre_Vorzugslage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleissperre_Vorzugslage_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleissperre_Vorzugslage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleissperrensignal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleissperrensignal_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gleissperrensignal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gruppen_ID_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gruppen_ID_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gruppen_ID_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gsp_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gsp_Lage_TypeClass.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Gsp_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/HOA_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/HOA_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/HOA_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/HSystem_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/HSystem_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/HSystem_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Haltetoleranz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Haltetoleranz_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Haltetoleranz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Haltezeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Haltezeit_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Haltezeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Harter_Ausstieg_Aus_L2_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Harter_Ausstieg_Aus_L2_TypeClass.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Harter_Ausstieg_Aus_L2_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hauptschloss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hauptschloss_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hauptschloss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hauptzugang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hauptzugang_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hauptzugang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hersteller_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hersteller_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hersteller_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Herzstueck_Antriebe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Herzstueck_Antriebe_TypeClass.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Herzstueck_Antriebe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hinweis_Balisenbefestigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hinweis_Balisenbefestigung_TypeClass.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hinweis_Balisenbefestigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehe_Fundamentoberkante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehe_Fundamentoberkante_TypeClass.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehe_Fundamentoberkante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenlinie.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenlinie.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenlinie.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenlinie_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenlinie_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenlinie_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenlinie_Form_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenlinie_Form_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenlinie_Form_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenlinie_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenlinie_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..7c2aaac84e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenlinie_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenpunkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenpunkt.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenpunkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenpunkt_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenpunkt_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenpunkt_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenpunkt_Datum_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenpunkt_Datum_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenpunkt_Datum_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenpunkt_Hoehe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenpunkt_Hoehe_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hoehenpunkt_Hoehe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hp_Ersatzstecker_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hp_Ersatzstecker_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hp_Ersatzstecker_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hupe_Anschaltzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hupe_Anschaltzeit_TypeClass.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Hupe_Anschaltzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ATO_TS_Instanz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ATO_TS_Instanz_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ATO_TS_Instanz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ATO_TS_Instanz_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ATO_TS_Instanz_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ATO_TS_Instanz_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Anforderer_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Anforderer_Element_TypeClass.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Anforderer_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Anforderung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Anforderung_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Anforderung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_AnhangBearbeitungsvermerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_AnhangBearbeitungsvermerk_TypeClass.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_AnhangBearbeitungsvermerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Anhang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Anhang_TypeClass.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Anhang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Anhang_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Anhang_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Anhang_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Anschluss_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Anschluss_Element_TypeClass.gif
new file mode 100644
index 0000000000..338fb8d9a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Anschluss_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Ausgabe_Fachdaten_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Ausgabe_Fachdaten_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Ausgabe_Fachdaten_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Aussenelementansteuerung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Aussenelementansteuerung_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Aussenelementansteuerung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Aussenelementansteuerung_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Aussenelementansteuerung_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Aussenelementansteuerung_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Bedien_Anzeige_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Bedien_Anzeige_Element_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Bedien_Anzeige_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Einschaltung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Einschaltung_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Einschaltung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Gleisbezogener_Gefahrraum_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Gleisbezogener_Gefahrraum_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Gleisbezogener_Gefahrraum_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Schnittstelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Schnittstelle_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_Schnittstelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_WS_Fstr_Zuordnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_WS_Fstr_Zuordnung_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_BUE_WS_Fstr_Zuordnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bahnsteig_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bahnsteig_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bahnsteig_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bahnsteig_Kante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bahnsteig_Kante_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bahnsteig_Kante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bahnsteig_Kante_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bahnsteig_Kante_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bahnsteig_Kante_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Balise_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Balise_TypeClass.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Balise_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Balise_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Balise_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Balise_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Basis_Objekt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Basis_Objekt_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Basis_Objekt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bearbeitungsvermerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bearbeitungsvermerk_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bearbeitungsvermerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Anzeige_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Anzeige_Element_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Anzeige_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Bezirk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Bezirk_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Bezirk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Einrichtung_Oertlich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Einrichtung_Oertlich_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Einrichtung_Oertlich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Oberflaeche_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Oberflaeche_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Oberflaeche_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Standort_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Standort_TypeClass.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Standort_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Zentrale_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Zentrale_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bedien_Zentrale_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Befestigung_Bauwerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Befestigung_Bauwerk_TypeClass.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Befestigung_Bauwerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Beginn_Bereich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Beginn_Bereich_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Beginn_Bereich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bezugspunkt_Positionierung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bezugspunkt_Positionierung_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bezugspunkt_Positionierung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bezugspunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bezugspunkt_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Bezugspunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Binaerdaten_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Binaerdaten_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Binaerdaten_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Block_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Block_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..338fb8d9a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Block_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Block_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Block_Element_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Block_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Block_Strecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Block_Strecke_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Block_Strecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_DP_Bezug_Funktional_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_DP_Bezug_Funktional_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_DP_Bezug_Funktional_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Datenpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Datenpunkt_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Datenpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Datenpunkt_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Datenpunkt_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Datenpunkt_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ESTW_Zentraleinheit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ESTW_Zentraleinheit_TypeClass.gif
new file mode 100644
index 0000000000..e4b530eca1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ESTW_Zentraleinheit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ETCS_Kante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ETCS_Kante_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ETCS_Kante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ETCS_Knoten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ETCS_Knoten_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ETCS_Knoten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ETCS_Knoten_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ETCS_Knoten_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ETCS_Knoten_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_EV_Modul_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_EV_Modul_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_EV_Modul_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Einschaltpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Einschaltpunkt_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Einschaltpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Element_Grenze_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Element_Grenze_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Element_Grenze_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Element_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Element_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Element_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Element_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Energie_Eingang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Energie_Eingang_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Energie_Eingang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Energie_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Energie_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Energie_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FMA_Anlage_Rangier_Frei_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FMA_Anlage_Rangier_Frei_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FMA_Anlage_Rangier_Frei_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FMA_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FMA_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FMA_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FMA_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FMA_Element_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FMA_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FMA_Komponente_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FMA_Komponente_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FMA_Komponente_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FT_Anschaltbedingung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FT_Anschaltbedingung_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FT_Anschaltbedingung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FT_Fahrweg_Teil_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FT_Fahrweg_Teil_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_FT_Fahrweg_Teil_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fachtelegramm_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fachtelegramm_TypeClass.gif
new file mode 100644
index 0000000000..7c2aaac84e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fachtelegramm_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fachtelegramm_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fachtelegramm_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fachtelegramm_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fla_Schutz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fla_Schutz_TypeClass.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fla_Schutz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fortschaltung_Start_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fortschaltung_Start_TypeClass.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fortschaltung_Start_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_Aneinander_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_Aneinander_TypeClass.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_Aneinander_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_Ausschluss_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_Ausschluss_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_Ausschluss_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_DWeg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_DWeg_TypeClass.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_DWeg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_DWeg_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_DWeg_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_DWeg_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_Fahrweg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_Fahrweg_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_Fahrweg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_Fahrweg_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_Fahrweg_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..7c2aaac84e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_Fahrweg_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_Zug_Rangier_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_Zug_Rangier_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Fstr_Zug_Rangier_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GEO_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GEO_Art_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GEO_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GEO_Kante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GEO_Kante_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GEO_Kante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GEO_Knoten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GEO_Knoten_TypeClass.gif
new file mode 100644
index 0000000000..e4b530eca1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GEO_Knoten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GEO_Punkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GEO_Punkt_TypeClass.gif
new file mode 100644
index 0000000000..e4b530eca1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GEO_Punkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GEO_Punkt_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GEO_Punkt_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GEO_Punkt_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GFR_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GFR_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_GFR_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Gleis_Abschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Gleis_Abschnitt_TypeClass.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Gleis_Abschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Gleis_Bezeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Gleis_Bezeichnung_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Gleis_Bezeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Grenzzeichen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Grenzzeichen_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Grenzzeichen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Handschalt_Wirkfunktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Handschalt_Wirkfunktion_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Handschalt_Wirkfunktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Hoehenpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Hoehenpunkt_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Hoehenpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Information_Eingang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Information_Eingang_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Information_Eingang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Information_Primaer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Information_Primaer_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Information_Primaer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Komponente_Programmiert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Komponente_Programmiert_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Komponente_Programmiert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_LEU_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_LEU_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_LEU_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_LEU_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_LEU_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_LEU_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_LEU_Bezug_Funktional_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_LEU_Bezug_Funktional_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_LEU_Bezug_Funktional_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_LEU_Schaltkasten_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_LEU_Schaltkasten_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_LEU_Schaltkasten_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_LO_Einbau_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_LO_Einbau_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_LO_Einbau_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Lageplan_Blattschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Lageplan_Blattschnitt_TypeClass.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Lageplan_Blattschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Lageplan_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Lageplan_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Lageplan_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Lageplan_Zustand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Lageplan_Zustand_TypeClass.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Lageplan_Zustand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Markante_Stelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Markante_Stelle_TypeClass.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Markante_Stelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Markanter_Punkt_Gleis_Abschluss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Markanter_Punkt_Gleis_Abschluss_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Markanter_Punkt_Gleis_Abschluss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Markanter_Punkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Markanter_Punkt_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Markanter_Punkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_NB_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_NB_Element_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_NB_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_NB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_NB_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_NB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_NB_Zone_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_NB_Zone_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_NB_Zone_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Oertlichkeit_Ausgabe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Oertlichkeit_Ausgabe_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Oertlichkeit_Ausgabe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Oertlichkeit_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Oertlichkeit_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Oertlichkeit_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Oertlichkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Oertlichkeit_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Oertlichkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_PZB_Element_Bezugspunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_PZB_Element_Bezugspunkt_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_PZB_Element_Bezugspunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_PZB_Element_Mitnutzung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_PZB_Element_Mitnutzung_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_PZB_Element_Mitnutzung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_PZB_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_PZB_Element_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_PZB_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_PZB_Element_Zuordnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_PZB_Element_Zuordnung_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_PZB_Element_Zuordnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_PlanPro_Schnittstelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_PlanPro_Schnittstelle_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_PlanPro_Schnittstelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Planung_Einzel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Planung_Einzel_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Planung_Einzel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Planungsgrundlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Planungsgrundlage_TypeClass.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Planungsgrundlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Quellelement_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Quellelement_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Quellelement_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_RBC_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_RBC_TypeClass.gif
new file mode 100644
index 0000000000..7c2aaac84e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_RBC_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Regelzeichnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Regelzeichnung_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Regelzeichnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Regelzeichnung_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Regelzeichnung_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Regelzeichnung_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Schalter_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Schalter_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Schalter_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Schaltmittel_Zuordnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Schaltmittel_Zuordnung_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Schaltmittel_Zuordnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Schlosskombination_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Schlosskombination_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Schlosskombination_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Schluessel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Schluessel_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Schluessel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Schluesselsperre_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Schluesselsperre_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Schluesselsperre_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Befestigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Befestigung_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Befestigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Fank_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Fank_TypeClass.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Fank_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Gleisbezechnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Gleisbezechnung_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Gleisbezechnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Rahmen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Rahmen_TypeClass.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Rahmen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Signalbegriff_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Signalbegriff_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Signalbegriff_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Start_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Start_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_Start_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Signal_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Sonderanlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Sonderanlage_TypeClass.gif
new file mode 100644
index 0000000000..7c2aaac84e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Sonderanlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Stellelement_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Stellelement_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Stellelement_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Stellwerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Stellwerk_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Stellwerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Strecke_Bremsweg_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Strecke_Bremsweg_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Strecke_Bremsweg_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Strecke_Punkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Strecke_Punkt_TypeClass.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Strecke_Punkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Strecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Strecke_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Strecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_TOP_Kante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_TOP_Kante_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_TOP_Kante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_TOP_Kante_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_TOP_Kante_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_TOP_Kante_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_TOP_Knoten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_TOP_Knoten_TypeClass.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_TOP_Knoten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Technischer_Punkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Technischer_Punkt_TypeClass.gif
new file mode 100644
index 0000000000..7c2aaac84e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Technischer_Punkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Trasse_Kante_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Trasse_Kante_TypeClass.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Trasse_Kante_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Trasse_Knoten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Trasse_Knoten_TypeClass.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Trasse_Knoten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Ueberhoehung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Ueberhoehung_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Ueberhoehung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Uebertragungsweg_Nach_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Uebertragungsweg_Nach_TypeClass.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Uebertragungsweg_Nach_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Uebertragungsweg_Von_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Uebertragungsweg_Von_TypeClass.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Uebertragungsweg_Von_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Umfahrpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Umfahrpunkt_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Umfahrpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Unterbringung_Technik_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Unterbringung_Technik_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Unterbringung_Technik_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Unterbringung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Unterbringung_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Unterbringung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Unterbringung_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Unterbringung_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Unterbringung_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Ur_Objekt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Ur_Objekt_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Ur_Objekt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Verknuepftes_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Verknuepftes_Element_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Verknuepftes_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_W_Kr_Anlage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_W_Kr_Anlage_TypeClass.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_W_Kr_Anlage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_W_Kr_Anlage_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_W_Kr_Anlage_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_W_Kr_Anlage_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_W_Kr_Gsp_Element_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_W_Kr_Gsp_Element_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_W_Kr_Gsp_Element_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_W_Kr_Gsp_Komponente_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_W_Kr_Gsp_Komponente_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_W_Kr_Gsp_Komponente_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Weichenlaufkette_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Weichenlaufkette_TypeClass.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Weichenlaufkette_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZLV_Bus_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZLV_Bus_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZLV_Bus_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZLV_Bus_ohne_Proxy_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZLV_Bus_ohne_Proxy_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZLV_Bus_ohne_Proxy_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZL_DLP_Fstr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZL_DLP_Fstr_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZL_DLP_Fstr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZL_Fstr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZL_Fstr_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZL_Fstr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZL_Signalgruppe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZL_Signalgruppe_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZL_Signalgruppe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZL_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZL_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZL_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_Anzeigefeld_Anstoss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_Anzeigefeld_Anstoss_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_Anzeigefeld_Anstoss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_Anzeigefeld_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_Anzeigefeld_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_Anzeigefeld_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_Fortschalt_Kriterium_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_Fortschalt_Kriterium_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_Fortschalt_Kriterium_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_TypeClass.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_Unterstation_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_Unterstation_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_Unterstation_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_ZBS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_ZBS_TypeClass.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_ZN_ZBS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Ziel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Ziel_TypeClass.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Ziel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Zugeinwirkung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Zugeinwirkung_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Zugeinwirkung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Zweites_Haltfallkriterium_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Zweites_Haltfallkriterium_TypeClass.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ID_Zweites_Haltfallkriterium_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/INA_Gefahrstelle_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/INA_Gefahrstelle_AttributeGroup.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/INA_Gefahrstelle_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Blau_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Blau_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Blau_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Blau_V4_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Blau_V4_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Blau_V4_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Blau_V6_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Blau_V6_TypeClass.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Blau_V6_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Grau_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Grau_TypeClass.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Grau_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Grau_V4_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Grau_V4_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Grau_V4_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Grau_V6_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Grau_V6_TypeClass.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adressblock_Grau_V6_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adresse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adresse_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/IP_Adresse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ident_Rolle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ident_Rolle_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ident_Rolle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Identitaet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Identitaet_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Identitaet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Index_Ausgabe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Index_Ausgabe_TypeClass.gif
new file mode 100644
index 0000000000..e4b530eca1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Index_Ausgabe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Individualisierung_Weitere_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Individualisierung_Weitere_TypeClass.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Individualisierung_Weitere_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Induktionsschutz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Induktionsschutz_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Induktionsschutz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Informativ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Informativ_TypeClass.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Informativ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Isolierfall_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Isolierfall_TypeClass.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Isolierfall_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ist_Befahren_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ist_Befahren_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ist_Befahren_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/KUs_Zeittelegramm_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/KUs_Zeittelegramm_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/KUs_Zeittelegramm_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Art_TypeClass.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Typ_TypeClass.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Verteilpunkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Verteilpunkt.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Verteilpunkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Verteilpunkt_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Verteilpunkt_Art_TypeClass.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Verteilpunkt_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Verteilpunkt_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Verteilpunkt_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kabel_Verteilpunkt_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kantenname_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kantenname_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kantenname_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kennzahl_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kennzahl_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kennzahl_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Klassifizierung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Klassifizierung_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Klassifizierung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Km_BTS_1_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Km_BTS_1_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Km_BTS_1_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Km_BTS_2_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Km_BTS_2_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Km_BTS_2_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Km_BTS_3_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Km_BTS_3_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Km_BTS_3_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Km_Massgebend_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Km_Massgebend_TypeClass.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Km_Massgebend_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Knoten_Auf_TOP_Kante_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Knoten_Auf_TOP_Kante_AttributeGroup.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Knoten_Auf_TOP_Kante_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Knotenname_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Knotenname_TypeClass.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Knotenname_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kommentar_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kommentar_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kommentar_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Konfigurationskennung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Konfigurationskennung_TypeClass.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Konfigurationskennung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Konstruktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Konstruktion_TypeClass.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Konstruktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kontrastblende_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kontrastblende_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kontrastblende_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Koordinatensystem_BB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Koordinatensystem_BB_TypeClass.gif
new file mode 100644
index 0000000000..338fb8d9a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Koordinatensystem_BB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Koordinatensystem_PB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Koordinatensystem_PB_TypeClass.gif
new file mode 100644
index 0000000000..e4b530eca1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Koordinatensystem_PB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Koppelunterstation_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Koppelunterstation_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Koppelunterstation_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kr_KrW_Seitenzuordnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kr_KrW_Seitenzuordnung_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kr_KrW_Seitenzuordnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kreuzung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kreuzung_AttributeGroup.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kreuzung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kreuzungsgleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kreuzungsgleis_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kreuzungsgleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kreuzungswinkel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kreuzungswinkel_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kreuzungswinkel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kurztext_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kurztext_TypeClass.gif
new file mode 100644
index 0000000000..7c2aaac84e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kurztext_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kurzzugschaltung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kurzzugschaltung_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Kurzzugschaltung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Anlage.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Anlage_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Anlage_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Anlage_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Anlage_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Anlage_Art_TypeClass.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Anlage_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Anlage_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Anlage_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Anlage_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Ausgang_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Ausgang_Nr_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Ausgang_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Art_TypeClass.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Ausgang_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Ausgang_AttributeGroup.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Ausgang_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Geraetestand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Geraetestand_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Geraetestand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Typ_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Modul_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Schaltkasten.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Schaltkasten.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Schaltkasten.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Schaltkasten_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Schaltkasten_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Schaltkasten_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Schaltkasten_Energie_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Schaltkasten_Energie_AttributeGroup.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Schaltkasten_Energie_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Schaltkasten_Position_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Schaltkasten_Position_AttributeGroup.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Schaltkasten_Position_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Schaltkasten_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Schaltkasten_Typ_TypeClass.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Schaltkasten_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Steuernde_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Steuernde_AttributeGroup.gif
new file mode 100644
index 0000000000..e4b530eca1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LEU_Steuernde_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LFUE_Impuls_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LFUE_Impuls_TypeClass.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LFUE_Impuls_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LLA_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LLA_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LLA_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LM_G_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LM_G_TypeClass.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LM_G_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Ausgabestand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Ausgabestand_TypeClass.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Ausgabestand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_DB_Freigabe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_DB_Freigabe_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_DB_Freigabe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Datum_Herstellung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Datum_Herstellung_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Datum_Herstellung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_EMA_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_EMA_Nr_TypeClass.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_EMA_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Ersatz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Ersatz_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Ersatz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Firmensachnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Firmensachnummer_TypeClass.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Firmensachnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Material_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Material_AttributeGroup.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Material_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Seriennummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Seriennummer_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LO_Seriennummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LST_Objekt_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LST_Objekt_Art_TypeClass.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LST_Objekt_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LST_Objekte_Planungsbereich_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LST_Objekte_Planungsbereich_AttributeGroup.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LST_Objekte_Planungsbereich_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LST_Planung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LST_Planung_AttributeGroup.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LST_Planung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LST_Zustand.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LST_Zustand.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LST_Zustand.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LT_Binaerdatei_Hilfe_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LT_Binaerdatei_Hilfe_AttributeGroup.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LT_Binaerdatei_Hilfe_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LT_Binaerdaten_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LT_Binaerdaten_AttributeGroup.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/LT_Binaerdaten_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/L_ACKLEVELTR_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/L_ACKLEVELTR_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/L_ACKLEVELTR_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laenge_1_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laenge_1_TypeClass.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laenge_1_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laenge_Ausfuehrungsbereich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laenge_Ausfuehrungsbereich_TypeClass.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laenge_Ausfuehrungsbereich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laenge_Gestufte_V_Signalisierung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laenge_Gestufte_V_Signalisierung_TypeClass.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laenge_Gestufte_V_Signalisierung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laenge_Soll_Mind_150_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laenge_Soll_Mind_150_TypeClass.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laenge_Soll_Mind_150_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laenge_Soll_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laenge_Soll_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laenge_Soll_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lage_Zum_Gleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lage_Zum_Gleis_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lage_Zum_Gleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan_Art_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan_Blattschnitt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan_Blattschnitt.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan_Blattschnitt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan_Blattschnitt_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan_Blattschnitt_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan_Blattschnitt_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan_Zustand.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan_Zustand.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lageplan_Zustand.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lagerung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lagerung_Art_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lagerung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laufende_Nummer_Ausgabe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laufende_Nummer_Ausgabe_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Laufende_Nummer_Ausgabe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Leistungsbedarf_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Leistungsbedarf_TypeClass.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Leistungsbedarf_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lenkabbruchzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lenkabbruchzeit_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lenkabbruchzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lenkziffernstellen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lenkziffernstellen_TypeClass.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lenkziffernstellen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lfd_Nr_Am_Bezugspunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lfd_Nr_Am_Bezugspunkt_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lfd_Nr_Am_Bezugspunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lichtraumprofil_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lichtraumprofil_TypeClass.gif
new file mode 100644
index 0000000000..338fb8d9a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lichtraumprofil_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lieferlaenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lieferlaenge_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lieferlaenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lieferobjekt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lieferobjekt.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Lieferobjekt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Linie_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Linie_Art_TypeClass.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Linie_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Linie_Farbwert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Linie_Farbwert_TypeClass.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Linie_Farbwert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Linie_Subart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Linie_Subart_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Linie_Subart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Link_Distanz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Link_Distanz_TypeClass.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Link_Distanz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Luft_Telegramm.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Luft_Telegramm.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Luft_Telegramm.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/M_LEVELTR_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/M_LEVELTR_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/M_LEVELTR_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Markanter_Punkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Markanter_Punkt.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Markanter_Punkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Markanter_Punkt_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Markanter_Punkt_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Markanter_Punkt_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neig_1_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neig_1_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neig_1_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neig_Schutzstrecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neig_Schutzstrecke_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neig_Schutzstrecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neigung_Mind_150_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neigung_Mind_150_TypeClass.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neigung_Mind_150_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neigung_Mind_Sig_150_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neigung_Mind_Sig_150_TypeClass.gif
new file mode 100644
index 0000000000..338fb8d9a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neigung_Mind_Sig_150_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neigung_Mind_Sig_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neigung_Mind_Sig_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neigung_Mind_Sig_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neigung_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massgebende_Neigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massnahme_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massnahme_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Massnahme_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Mastschild_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Mastschild_TypeClass.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Mastschild_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Max_Leistung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Max_Leistung_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Max_Leistung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Max_Unterbrechungszeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Max_Unterbrechungszeit_TypeClass.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Max_Unterbrechungszeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Medium_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Medium_Art_TypeClass.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Medium_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Meldedruck_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Meldedruck_TypeClass.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Meldedruck_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Melder_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Melder_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Melder_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Messfehler_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Messfehler_TypeClass.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Messfehler_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Metallteil_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Metallteil_AttributeGroup.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Metallteil_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Metallteil_Kategorie_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Metallteil_Kategorie_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Metallteil_Kategorie_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Metallteil_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Metallteil_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Metallteil_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Modulnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Modulnummer_TypeClass.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Modulnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Montage_Ausgleichsgewichte_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Montage_Ausgleichsgewichte_TypeClass.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Montage_Ausgleichsgewichte_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Montage_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Montage_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Montage_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Montageabweichung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Montageabweichung_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Montageabweichung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Montagehoehe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Montagehoehe_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Montagehoehe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Art_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Bedien_Anzeige_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Bedien_Anzeige_Element.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Bedien_Anzeige_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Bedien_Anzeige_Funktionen_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Bedien_Anzeige_Funktionen_AttributeGroup.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Bedien_Anzeige_Funktionen_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Funktionalitaet_NB_R_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Funktionalitaet_NB_R_AttributeGroup.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Funktionalitaet_NB_R_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Grenze_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Grenze_Art_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Grenze_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Rueckgabevoraussetzung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Rueckgabevoraussetzung_TypeClass.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Rueckgabevoraussetzung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Verhaeltnis_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Verhaeltnis_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Verhaeltnis_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Allg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Allg_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Allg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Element.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Element_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Element_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Element_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Grenze.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Grenze.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Grenze.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Reihenfolgezwang_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Reihenfolgezwang_AttributeGroup.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NB_Zone_Reihenfolgezwang_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_ATOTS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_ATOTS_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_ATOTS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_BG_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_BG_TypeClass.gif
new file mode 100644
index 0000000000..7c2aaac84e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_BG_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_C_ATOTS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_C_ATOTS_TypeClass.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_C_ATOTS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_C_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_C_TypeClass.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_C_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_RBC_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_RBC_TypeClass.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_RBC_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_SP_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_SP_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_SP_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_STM_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_STM_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_STM_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_TP_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_TP_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_TP_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_TSR_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_TSR_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/NID_TSR_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Nachlaufverhinderung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Nachlaufverhinderung_TypeClass.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Nachlaufverhinderung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Nagetierschutz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Nagetierschutz_TypeClass.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Nagetierschutz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Name_Akteur_10_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Name_Akteur_10_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Name_Akteur_10_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Name_Akteur_5_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Name_Akteur_5_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Name_Akteur_5_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Name_Akteur_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Name_Akteur_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Name_Akteur_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Name_Organisation_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Name_Organisation_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Name_Organisation_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Neigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Neigung_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Neigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Nennleistung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Nennleistung_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Nennleistung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Netz_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Netz_Art_TypeClass.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Netz_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Nummer_Schaltkasten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Nummer_Schaltkasten_TypeClass.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Nummer_Schaltkasten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Obere_Lichtpunkthoehe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Obere_Lichtpunkthoehe_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Obere_Lichtpunkthoehe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oberflaeche_Bildart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oberflaeche_Bildart_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oberflaeche_Bildart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oberflaeche_Zustaendigkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oberflaeche_Zustaendigkeit_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oberflaeche_Zustaendigkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oberstrombegrenzung_Gueterzug_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oberstrombegrenzung_Gueterzug_TypeClass.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oberstrombegrenzung_Gueterzug_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oberstrombegrenzung_Reisezug_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oberstrombegrenzung_Reisezug_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oberstrombegrenzung_Reisezug_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Objektmanagement_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Objektmanagement_AttributeGroup.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Objektmanagement_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Objektreferenzen_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Objektreferenzen_AttributeGroup.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Objektreferenzen_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Objektzustand_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Objektzustand_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Objektzustand_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlicher_Elementname_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlicher_Elementname_TypeClass.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlicher_Elementname_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Abkuerzung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Abkuerzung_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Abkuerzung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Art_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Gueltig_Ab_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Gueltig_Ab_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Gueltig_Ab_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Gueltig_Bis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Gueltig_Bis_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Gueltig_Bis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Kurzname_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Kurzname_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Kurzname_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Langname_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Langname_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Oertlichkeit_Langname_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Optik_Durchmesser_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Optik_Durchmesser_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Optik_Durchmesser_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Optik_Symbolmaske_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Optik_Symbolmaske_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Optik_Symbolmaske_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Organisation.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Organisation.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Organisation.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Organisationseinheit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Organisationseinheit_TypeClass.gif
new file mode 100644
index 0000000000..7c2aaac84e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Organisationseinheit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Abstand_GM_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Abstand_GM_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Abstand_GM_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Art_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_GM_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_GM_AttributeGroup.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_GM_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_GUE_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_GUE_AttributeGroup.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_GUE_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_Zuordnung.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_Zuordnung_BP_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_Zuordnung_BP_AttributeGroup.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_Zuordnung_BP_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_Zuordnung_Fstr_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_Zuordnung_Fstr_AttributeGroup.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_Zuordnung_Fstr_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_Zuordnung_INA_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_Zuordnung_INA_AttributeGroup.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Element_Zuordnung_INA_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_INA_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_INA_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_INA_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Schutzstrecke_Soll_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Schutzstrecke_Soll_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Schutzstrecke_Soll_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Zuordnung_Signal.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Zuordnung_Signal.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PZB_Zuordnung_Signal.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pegel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pegel_TypeClass.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pegel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Personal_Reaktionszeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Personal_Reaktionszeit_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Personal_Reaktionszeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pixel_Koordinate_X_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pixel_Koordinate_X_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pixel_Koordinate_X_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pixel_Koordinate_Y_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pixel_Koordinate_Y_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pixel_Koordinate_Y_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PlanPro_Layoutinfo.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PlanPro_Layoutinfo.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PlanPro_Layoutinfo.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PlanPro_Schnittstelle.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PlanPro_Schnittstelle.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PlanPro_Schnittstelle.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PlanPro_Schnittstelle_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PlanPro_Schnittstelle_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PlanPro_Schnittstelle_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PlanPro_XSD_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PlanPro_XSD_Version_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/PlanPro_XSD_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Plan_Quelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Plan_Quelle_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Plan_Quelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_E_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_E_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_E_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_E_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_E_Art_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_E_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_E_Ausgabe_Besonders_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_E_Ausgabe_Besonders_AttributeGroup.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_E_Ausgabe_Besonders_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_E_Handlung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_E_Handlung_AttributeGroup.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_E_Handlung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_Einzel.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_Einzel.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_Einzel.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_G_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_G_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_G_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_G_Art_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_G_Art_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_G_Art_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_G_Fuehrende_Strecke_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_G_Fuehrende_Strecke_AttributeGroup.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_G_Fuehrende_Strecke_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_G_Schriftfeld_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_G_Schriftfeld_AttributeGroup.gif
new file mode 100644
index 0000000000..338fb8d9a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_G_Schriftfeld_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_Gruppe.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_Gruppe.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_Gruppe.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_P_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_P_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_P_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_Phase_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_Phase_TypeClass.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_Phase_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_Projekt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_Projekt.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Planung_Projekt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygone_Betrachtungsbereich_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygone_Betrachtungsbereich_AttributeGroup.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygone_Betrachtungsbereich_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygone_Planungsbereich_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygone_Planungsbereich_AttributeGroup.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygone_Planungsbereich_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygonzug_Ausrichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygonzug_Ausrichtung_TypeClass.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygonzug_Ausrichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygonzug_Betrachtungsbereich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygonzug_Betrachtungsbereich_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygonzug_Betrachtungsbereich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygonzug_Blattschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygonzug_Blattschnitt_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygonzug_Blattschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygonzug_Planungsbereich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygonzug_Planungsbereich_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Polygonzug_Planungsbereich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Port_Nr_Ausg_Physisch_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Port_Nr_Ausg_Physisch_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Port_Nr_Ausg_Physisch_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Position_Sonstige_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Position_Sonstige_TypeClass.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Position_Sonstige_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Position_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Position_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Position_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Primaerquelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Primaerquelle_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Primaerquelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Prioritaet_Gefahrstelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Prioritaet_Gefahrstelle_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Prioritaet_Gefahrstelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Prioritaet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Prioritaet_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Prioritaet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Prog_Datei_Einzel_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Prog_Datei_Einzel_AttributeGroup.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Prog_Datei_Einzel_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Prog_Datei_Gruppe.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Prog_Datei_Gruppe.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Prog_Datei_Gruppe.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Projekt_Nummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Projekt_Nummer_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Projekt_Nummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Projektierungsfall_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Projektierungsfall_TypeClass.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Projektierungsfall_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Proxy_Objekt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Proxy_Objekt.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Proxy_Objekt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pruefgeschwindigkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pruefgeschwindigkeit_TypeClass.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pruefgeschwindigkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pruefmerkmale_Daten_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pruefmerkmale_Daten_AttributeGroup.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pruefmerkmale_Daten_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pruefsumme_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pruefsumme_Art_TypeClass.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pruefsumme_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pruefsumme_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pruefsumme_TypeClass.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pruefsumme_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pruefzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pruefzeit_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Pruefzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Punkt_Objekt_Strecke_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Punkt_Objekt_Strecke_AttributeGroup.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Punkt_Objekt_Strecke_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Punkt_Objekt_TOP_Kante_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Punkt_Objekt_TOP_Kante_AttributeGroup.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Punkt_Objekt_TOP_Kante_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RBC.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RBC.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RBC.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RBC_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RBC_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RBC_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RBC_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RBC_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RBC_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RBC_ETCS_System_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RBC_ETCS_System_Version_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RBC_ETCS_System_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RBC_SRS_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RBC_SRS_Version_TypeClass.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RBC_SRS_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RZ_Nummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RZ_Nummer_TypeClass.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RZ_Nummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RZ_Parameter_Name_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RZ_Parameter_Name_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RZ_Parameter_Name_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RZ_Parameter_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RZ_Parameter_Wert_TypeClass.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/RZ_Parameter_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Raeumstrecke_DAB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Raeumstrecke_DAB_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Raeumstrecke_DAB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Raeumstrecke_DBK_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Raeumstrecke_DBK_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Raeumstrecke_DBK_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Raeumstrecke_DCK_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Raeumstrecke_DCK_TypeClass.gif
new file mode 100644
index 0000000000..7c2aaac84e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Raeumstrecke_DCK_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Raeumstrecke_DSK_Strich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Raeumstrecke_DSK_Strich_TypeClass.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Raeumstrecke_DSK_Strich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Raeumstrecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Raeumstrecke_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Raeumstrecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rahmen_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rahmen_Art_TypeClass.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rahmen_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rahmen_Hoehe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rahmen_Hoehe_TypeClass.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rahmen_Hoehe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rang_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rang_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rang_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rangier_Gegenfahrtausschluss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rangier_Gegenfahrtausschluss_TypeClass.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rangier_Gegenfahrtausschluss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rangierstrasse_Restaufloesung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rangierstrasse_Restaufloesung_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rangierstrasse_Restaufloesung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Reaktivierungsfunktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Reaktivierungsfunktion_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Reaktivierungsfunktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Referenz_LST_Zustand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Referenz_LST_Zustand_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Referenz_LST_Zustand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Referenz_Objekt_Darstellung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Referenz_Objekt_Darstellung_TypeClass.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Referenz_Objekt_Darstellung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Referenz_Planung_Basis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Referenz_Planung_Basis_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Referenz_Planung_Basis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Referenz_Vergleich_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Referenz_Vergleich_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Referenz_Vergleich_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Regelzeichnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Regelzeichnung.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Regelzeichnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Regelzeichnung_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Regelzeichnung_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Regelzeichnung_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Regelzeichnung_Parameter.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Regelzeichnung_Parameter.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Regelzeichnung_Parameter.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Regelzeichnung_Parameter_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Regelzeichnung_Parameter_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Regelzeichnung_Parameter_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Regionalbereich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Regionalbereich_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Regionalbereich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rekursion_2_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rekursion_2_Nr_TypeClass.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rekursion_2_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rekursion_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rekursion_Nr_TypeClass.gif
new file mode 100644
index 0000000000..338fb8d9a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rekursion_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Richtpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Richtpunkt_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Richtpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Richtpunktentfernung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Richtpunktentfernung_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Richtpunktentfernung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Richtungsbezug_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Richtungsbezug_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Richtungsbezug_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Richtungspfeil_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Richtungspfeil_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Richtungspfeil_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rueckblockwecker_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rueckblockwecker_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rueckblockwecker_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rueckschauzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rueckschauzeit_TypeClass.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rueckschauzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rufnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rufnummer_TypeClass.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Rufnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/SA_Schrankenbaum_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/SA_Schrankenbaum_AttributeGroup.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/SA_Schrankenbaum_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/SBE_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/SBE_TypeClass.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/SBE_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/SBUE_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/SBUE_TypeClass.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/SBUE_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/SLE_SLS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/SLE_SLS_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/SLE_SLS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/SRS_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/SRS_Version_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/SRS_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/STZ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/STZ_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/STZ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schalter_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schalter_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schalter_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schaltgruppe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schaltgruppe_TypeClass.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schaltgruppe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schaltmittel_Fstr_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schaltmittel_Fstr_Zuordnung.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schaltmittel_Fstr_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schaltmittel_Funktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schaltmittel_Funktion_TypeClass.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schaltmittel_Funktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schaltmittel_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schaltmittel_Zuordnung.gif
new file mode 100644
index 0000000000..7c2aaac84e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schaltmittel_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schaltung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schaltung_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schaltung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Art_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_BUE_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_BUE_AttributeGroup.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_BUE_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Gsp_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Gsp_AttributeGroup.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Gsp_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Sk_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Sk_AttributeGroup.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Sk_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Sonderanlage_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Sonderanlage_AttributeGroup.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Sonderanlage_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Ssp_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Ssp_AttributeGroup.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_Ssp_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_W_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_W_AttributeGroup.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schloss_W_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schlosskombination.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schlosskombination.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schlosskombination.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schlosskombination_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schlosskombination_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schlosskombination_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel_Bartform_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel_Bartform_TypeClass.gif
new file mode 100644
index 0000000000..e4b530eca1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel_Bartform_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel_Gruppe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel_Gruppe_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel_Gruppe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel_In_Grdst_Eingeschl_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel_In_Grdst_Eingeschl_TypeClass.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluessel_In_Grdst_Eingeschl_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluesselsperre.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluesselsperre.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schluesselsperre.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schrankenantrieb.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schrankenantrieb.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schrankenantrieb.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schrankenantrieb_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schrankenantrieb_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schrankenantrieb_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schrankenantrieb_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schrankenantrieb_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schrankenantrieb_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schrankreihe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schrankreihe_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schrankreihe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schutzbuegel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schutzbuegel_TypeClass.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schutzbuegel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schutzschiene_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schutzschiene_TypeClass.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schutzschiene_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schutzstrecke_Erforderlich_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schutzstrecke_Erforderlich_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schutzstrecke_Erforderlich_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schutzstrecke_Vorhanden_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schutzstrecke_Vorhanden_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schutzstrecke_Vorhanden_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schutzuebertrager_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schutzuebertrager_TypeClass.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Schutzuebertrager_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Seitliche_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Seitliche_Lage_TypeClass.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Seitliche_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Seitlicher_Abstand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Seitlicher_Abstand_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Seitlicher_Abstand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sicherheitsabstand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sicherheitsabstand_TypeClass.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sicherheitsabstand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sichtbarkeit_Anzeigefeld_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sichtbarkeit_Anzeigefeld_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sichtbarkeit_Anzeigefeld_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sichtzeit_Vorsignal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sichtzeit_Vorsignal_TypeClass.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sichtzeit_Vorsignal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Art_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Befestigung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Befestigung.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Befestigung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Befestigung_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Befestigung_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Befestigung_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Befestigungsart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Befestigungsart_TypeClass.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Befestigungsart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Fank_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Fank_Zuordnung.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Fank_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Fiktiv_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Fiktiv_AttributeGroup.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Fiktiv_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Fstr_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Fstr_AttributeGroup.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Fstr_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Fstr_Aus_Inselgleis_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Fstr_Aus_Inselgleis_AttributeGroup.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Fstr_Aus_Inselgleis_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Fstr_S_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Fstr_S_AttributeGroup.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Fstr_S_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Funktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Funktion_TypeClass.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Funktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Rahmen.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Rahmen.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Rahmen.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Real_Aktiv_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Real_Aktiv_AttributeGroup.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Real_Aktiv_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Real_Aktiv_Schirm_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Real_Aktiv_Schirm_AttributeGroup.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Real_Aktiv_Schirm_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Real_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Real_AttributeGroup.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Real_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Signalbegriff.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Signalbegriff.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Signalbegriff.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Signalbegriff_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Signalbegriff_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signal_Signalbegriff_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalgruppe_Bezeichner_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalgruppe_Bezeichner_TypeClass.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalgruppe_Bezeichner_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalsicht_Erreichbar_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalsicht_Erreichbar_TypeClass.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalsicht_Erreichbar_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalsicht_Mindest_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalsicht_Mindest_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalsicht_Mindest_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalsicht_Soll_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalsicht_Soll_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalsicht_Soll_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalsystem_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalsystem_TypeClass.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalsystem_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalverz_Errechnet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalverz_Errechnet_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalverz_Errechnet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalverz_Gewaehlt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalverz_Gewaehlt_TypeClass.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Signalverz_Gewaehlt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Solllaenge_Mind_Sig_150_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Solllaenge_Mind_Sig_150_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Solllaenge_Mind_Sig_150_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Solllaenge_Mind_Sig_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Solllaenge_Mind_Sig_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Solllaenge_Mind_Sig_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sonderanlage_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sonderanlage_Lage_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sonderanlage_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sonstige_Standortangabe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sonstige_Standortangabe_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sonstige_Standortangabe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sonstige_Zulaessige_Anordnung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sonstige_Zulaessige_Anordnung_TypeClass.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sonstige_Zulaessige_Anordnung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sonstiger_Punkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sonstiger_Punkt.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sonstiger_Punkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Spannung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Spannung_Art_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Spannung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Spannung_Toleranz_Obere_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Spannung_Toleranz_Obere_TypeClass.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Spannung_Toleranz_Obere_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Spannung_Toleranz_Untere_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Spannung_Toleranz_Untere_TypeClass.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Spannung_Toleranz_Untere_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sperrlaenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sperrlaenge_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sperrlaenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sperrstrecke_Fussgaenger_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sperrstrecke_Fussgaenger_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sperrstrecke_Fussgaenger_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sperrstrecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sperrstrecke_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Sperrstrecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Stammgleis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Stammgleis_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Stammgleis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Standort_Beschreibung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Standort_Beschreibung_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Standort_Beschreibung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Standortangabe_Balisenschild_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Standortangabe_Balisenschild_TypeClass.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Standortangabe_Balisenschild_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Start_Signal_Charakter_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Start_Signal_Charakter_TypeClass.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Start_Signal_Charakter_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Start_W_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Start_W_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Start_W_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Stell_Bereich.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Stell_Bereich.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Stell_Bereich.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Stellelement.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Stellelement.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Stellelement.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Steuerbezirksname_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Steuerbezirksname_TypeClass.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Steuerbezirksname_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Steuerbezirksnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Steuerbezirksnummer_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Steuerbezirksnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Stoerhalt_Haltfall_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Stoerhalt_Haltfall_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Stoerhalt_Haltfall_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Stoerhalt_Merkhinweis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Stoerhalt_Merkhinweis_TypeClass.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Stoerhalt_Merkhinweis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Abschnitt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Abschnitt_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Abschnitt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Art_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Bremsweg.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Bremsweg.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Bremsweg.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Km_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Km_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Km_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Meter_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Meter_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Meter_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Nummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Nummer_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Nummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Punkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Punkt.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Punkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Richtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Richtung_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Strecke_Richtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Streckengeschwindigkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Streckengeschwindigkeit_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Streckengeschwindigkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Streuscheibe_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Streuscheibe_Art_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Streuscheibe_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Streuscheibe_Betriebsstellung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Streuscheibe_Betriebsstellung_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Streuscheibe_Betriebsstellung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/System_Vor_Grenze_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/System_Vor_Grenze_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/System_Vor_Grenze_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/System_Vor_Grenze_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/System_Vor_Grenze_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/System_Vor_Grenze_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Systemhoehe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Systemhoehe_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Systemhoehe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TBV_Meldepunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TBV_Meldepunkt_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TBV_Meldepunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TBV_Tunnelbereich_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TBV_Tunnelbereich_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TBV_Tunnelbereich_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TBV_Tunnelsignal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TBV_Tunnelsignal_TypeClass.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TBV_Tunnelsignal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TB_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TB_Art_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TB_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TB_Beschreibung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TB_Beschreibung_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TB_Beschreibung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Anschluss_A_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Anschluss_A_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Anschluss_A_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Anschluss_B_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Anschluss_B_TypeClass.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Anschluss_B_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Kante.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Kante.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Kante.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Kante_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Kante_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Kante_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Knoten.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Knoten.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Knoten.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TOP_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TP_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TP_Art_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TP_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TP_Beschreibung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TP_Beschreibung_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TP_Beschreibung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TSO_IP_AB_Teilsystem_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TSO_IP_AB_Teilsystem_AttributeGroup.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TSO_IP_AB_Teilsystem_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TSO_IP_Adressblock_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TSO_IP_Adressblock_AttributeGroup.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TSO_IP_Adressblock_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TSO_Teilsystem_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TSO_Teilsystem_Art_TypeClass.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TSO_Teilsystem_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Taste_ANF_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Taste_ANF_TypeClass.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Taste_ANF_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Taste_FGT_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Taste_FGT_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Taste_FGT_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Taste_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Taste_TypeClass.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Taste_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Taste_WGT_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Taste_WGT_TypeClass.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Taste_WGT_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technik_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technik_Art_TypeClass.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technik_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technik_Beschreibung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technik_Beschreibung_TypeClass.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technik_Beschreibung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technik_Standort.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technik_Standort.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technik_Standort.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technik_Standort_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technik_Standort_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technik_Standort_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technisch_Berechtigter_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technisch_Berechtigter_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technisch_Berechtigter_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technischer_Bereich.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technischer_Bereich.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technischer_Bereich.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technischer_Platz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technischer_Platz_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technischer_Platz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technischer_Punkt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technischer_Punkt.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Technischer_Punkt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Teilsperrstrecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Teilsperrstrecke_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Teilsperrstrecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Teilvorgabezeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Teilvorgabezeit_TypeClass.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Teilvorgabezeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telefonnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telefonnummer_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telefonnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_02_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_02_TypeClass.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_02_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_03_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_03_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_03_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_04_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_04_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_04_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_10_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_10_TypeClass.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_10_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_21_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_21_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_21_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_30_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_30_TypeClass.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_30_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_84_Alle_Fstr_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_84_Alle_Fstr_AttributeGroup.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_84_Alle_Fstr_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_84_Einzelne_Fstr_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_84_Einzelne_Fstr_AttributeGroup.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_84_Einzelne_Fstr_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_84_Fuer_Alle_Fstr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_84_Fuer_Alle_Fstr_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_84_Fuer_Alle_Fstr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_84_Verzicht_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_84_Verzicht_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_84_Verzicht_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_85_Alle_Fstr_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_85_Alle_Fstr_AttributeGroup.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_85_Alle_Fstr_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_85_Einzelne_Fstr_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_85_Einzelne_Fstr_AttributeGroup.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_85_Einzelne_Fstr_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_85_Fuer_Alle_Fstr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_85_Fuer_Alle_Fstr_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_85_Fuer_Alle_Fstr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_Index_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_Index_TypeClass.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegramm_Index_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegrammnummer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegrammnummer_TypeClass.gif
new file mode 100644
index 0000000000..33a997a160
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegrammnummer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegrammwiederholung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegrammwiederholung_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Telegrammwiederholung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TemporaryIntegration.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TemporaryIntegration.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/TemporaryIntegration.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Text_Bedingung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Text_Bedingung_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Text_Bedingung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Textmeldung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Textmeldung_TypeClass.gif
new file mode 100644
index 0000000000..cb1755a712
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Textmeldung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Titel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Titel_TypeClass.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Titel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ToolboxTemporaryIntegration.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ToolboxTemporaryIntegration.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ToolboxTemporaryIntegration.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Tragkopf_Verstellbar_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Tragkopf_Verstellbar_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Tragkopf_Verstellbar_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Traktion_Art_Elektrisch_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Traktion_Art_Elektrisch_TypeClass.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Traktion_Art_Elektrisch_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Kante.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Kante.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Kante.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Kante_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Kante_Art_TypeClass.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Kante_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Kante_child_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Kante_child_AttributeGroup.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Kante_child_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Knoten.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Knoten.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Knoten.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Knoten_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Knoten_Art_TypeClass.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Knoten_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Nutzer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Nutzer_TypeClass.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Trasse_Nutzer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Tueranschlag_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Tueranschlag_TypeClass.gif
new file mode 100644
index 0000000000..338fb8d9a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Tueranschlag_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Tunnelsignal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Tunnelsignal_TypeClass.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Tunnelsignal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Tv_GK_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Tv_GK_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Tv_GK_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberbrueckung_EV_Unterbrechung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberbrueckung_EV_Unterbrechung_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberbrueckung_EV_Unterbrechung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehung.gif
new file mode 100644
index 0000000000..498364f1c1
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehung_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehung_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehung_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehung_Datum_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehung_Datum_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehung_Datum_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehung_Hoehe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehung_Hoehe_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehung_Hoehe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehungslinie.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehungslinie.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehungslinie.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehungslinie_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehungslinie_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehungslinie_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehungslinie_Form_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehungslinie_Form_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehungslinie_Form_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehungslinie_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehungslinie_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberhoehungslinie_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Uebertragung_FMinfo_Richtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Uebertragung_FMinfo_Richtung_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Uebertragung_FMinfo_Richtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Uebertragung_FMinfo_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Uebertragung_FMinfo_Typ_TypeClass.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Uebertragung_FMinfo_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Uebertragungsweg.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Uebertragungsweg.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Uebertragungsweg.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Uebertragungsweg_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Uebertragungsweg_Art_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Uebertragungsweg_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Uebertragungsweg_Technik_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Uebertragungsweg_Technik_AttributeGroup.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Uebertragungsweg_Technik_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberwachung_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberwachung_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ueberwachung_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Umfahrstrasse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Umfahrstrasse_TypeClass.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Umfahrstrasse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterbringung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterbringung.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterbringung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterbringung_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterbringung_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterbringung_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterbringung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterbringung_Art_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterbringung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterbringung_Befestigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterbringung_Befestigung_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterbringung_Befestigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterbringung_Polygonzug_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterbringung_Polygonzug_TypeClass.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterbringung_Polygonzug_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Untergewerk_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Untergewerk_Art_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Untergewerk_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Untergruppen_ID_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Untergruppen_ID_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Untergruppen_ID_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterstation_Max_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterstation_Max_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterstation_Max_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterstation_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterstation_Nr_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Unterstation_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Untertitel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Untertitel_TypeClass.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Untertitel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VBC_Kennung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VBC_Kennung_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VBC_Kennung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VBC_NID_C_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VBC_NID_C_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VBC_NID_C_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VBC_Setzen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VBC_Setzen_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VBC_Setzen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VBC_Timer_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VBC_Timer_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VBC_Timer_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VGR_1_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VGR_1_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VGR_1_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VGR_2_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VGR_2_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VGR_2_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VGR_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VGR_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VGR_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VLA_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VLA_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VLA_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VZ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VZ_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/VZ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Befehl_R_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Befehl_R_TypeClass.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Befehl_R_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Befehl_Z_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Befehl_Z_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Befehl_Z_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Frei_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Frei_TypeClass.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Frei_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Max_Schiene_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Max_Schiene_TypeClass.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Max_Schiene_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Max_Strasse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Max_Strasse_TypeClass.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Max_Strasse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Min_Fussweg_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Min_Fussweg_TypeClass.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Min_Fussweg_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Min_Schiene_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Min_Schiene_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Min_Schiene_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Min_Strasse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Min_Strasse_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Min_Strasse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Profil_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Profil_Art_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Profil_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Start_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Start_TypeClass.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Start_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Ziel_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Ziel_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Ziel_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Zul_Strecke_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Zul_Strecke_TypeClass.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/V_Zul_Strecke_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verantwortliche_Stelle_DB_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verantwortliche_Stelle_DB_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verantwortliche_Stelle_DB_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verbot_Anhalten_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verbot_Anhalten_TypeClass.gif
new file mode 100644
index 0000000000..7c2aaac84e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verbot_Anhalten_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verbot_Regenerative_Bremse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verbot_Regenerative_Bremse_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verbot_Regenerative_Bremse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verbot_WB_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verbot_WB_Art_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verbot_WB_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vergleich_Ausgabestand_Basis_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vergleich_Ausgabestand_Basis_TypeClass.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vergleich_Ausgabestand_Basis_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vergleichstyp_Besonders_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vergleichstyp_Besonders_TypeClass.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vergleichstyp_Besonders_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkehrszeichen.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkehrszeichen.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkehrszeichen.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkehrszeichen_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkehrszeichen_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkehrszeichen_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkehrszeichen_Andreaskreuz_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkehrszeichen_Andreaskreuz_AttributeGroup.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkehrszeichen_Andreaskreuz_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkehrszeichen_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkehrszeichen_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..904159880b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkehrszeichen_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkehrszeichen_Lz_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkehrszeichen_Lz_AttributeGroup.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkehrszeichen_Lz_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkuerzter_Abstand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkuerzter_Abstand_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verkuerzter_Abstand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verschluss_Ort_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verschluss_Ort_TypeClass.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verschluss_Ort_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verseilart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verseilart_TypeClass.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verseilart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Version_Auslieferung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Version_Auslieferung_TypeClass.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Version_Auslieferung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verwendung_Als_Rueckfall_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verwendung_Als_Rueckfall_TypeClass.gif
new file mode 100644
index 0000000000..d92f34c8ae
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verwendung_Als_Rueckfall_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verwendung_Hilfe_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verwendung_Hilfe_TypeClass.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verwendung_Hilfe_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verwendung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verwendung_TypeClass.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verwendung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verzoegerung_Manuell_Loeschung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verzoegerung_Manuell_Loeschung_TypeClass.gif
new file mode 100644
index 0000000000..c414fe9f72
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Verzoegerung_Manuell_Loeschung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vmax_Annaeherung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vmax_Annaeherung_TypeClass.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vmax_Annaeherung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vorblockwecker_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vorblockwecker_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vorblockwecker_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vorgeschaltet_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vorgeschaltet_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vorgeschaltet_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vormeldestart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vormeldestart_TypeClass.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vormeldestart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vorschauzeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vorschauzeit_TypeClass.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vorschauzeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vorsignalabstand_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vorsignalabstand_TypeClass.gif
new file mode 100644
index 0000000000..338fb8d9a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vorsignalabstand_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vorzugslage_Automatik_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vorzugslage_Automatik_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vorzugslage_Automatik_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vz_Sperrstrecke_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vz_Sperrstrecke_AttributeGroup.gif
new file mode 100644
index 0000000000..c4fb30e968
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vz_Sperrstrecke_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vz_Sperrstrecke_Schranke_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vz_Sperrstrecke_Schranke_AttributeGroup.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vz_Sperrstrecke_Schranke_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vz_Sperrstrecke_Vorgeschaltet_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vz_Sperrstrecke_Vorgeschaltet_AttributeGroup.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Vz_Sperrstrecke_Vorgeschaltet_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/WHU_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/WHU_TypeClass.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/WHU_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/WUS_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/WUS_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/WUS_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Anbaulage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Anbaulage_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Anbaulage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Anschluss_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Anschluss_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Anschluss_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Gsp_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Gsp_Lage_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Gsp_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Anlage.gif
new file mode 100644
index 0000000000..1e5345fb32
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Anlage_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Anlage_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..a3908bcf7b
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Anlage_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Art_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Grundform_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Grundform_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Grundform_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Gsp_Element.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Gsp_Element.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Gsp_Element.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Gsp_Element_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Gsp_Element_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Gsp_Element_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Gsp_Komponente.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Gsp_Komponente.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Gsp_Komponente.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Gsp_Stellart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Gsp_Stellart_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Kr_Gsp_Stellart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Lage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Lage_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/W_Lage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weiche_Betriebsart_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weiche_Betriebsart_TypeClass.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weiche_Betriebsart_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weiche_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weiche_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weiche_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weiche_Vorzugslage_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weiche_Vorzugslage_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weiche_Vorzugslage_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weichenlaufkette.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weichenlaufkette.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weichenlaufkette.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weichenlaufkette_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weichenlaufkette_Zuordnung.gif
new file mode 100644
index 0000000000..98b351f1c4
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weichenlaufkette_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weichensignal_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weichensignal_TypeClass.gif
new file mode 100644
index 0000000000..a17dc7d88e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Weichensignal_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Werkzeug_Name_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Werkzeug_Name_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Werkzeug_Name_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Werkzeug_Version_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Werkzeug_Version_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Werkzeug_Version_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Winkel_Alpha_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Winkel_Alpha_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Winkel_Alpha_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Wirkrichtung_In_Datenpunkt_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Wirkrichtung_In_Datenpunkt_TypeClass.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Wirkrichtung_In_Datenpunkt_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Wirkrichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Wirkrichtung_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Wirkrichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Wirksam_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Wirksam_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Wirksam_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Wirksamkeit_Fstr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Wirksamkeit_Fstr_TypeClass.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Wirksamkeit_Fstr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Wirksamkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Wirksamkeit_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Wirksamkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/X_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/X_Wert_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/X_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/YY_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/YY_Wert_TypeClass.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/YY_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Y_Wert_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Y_Wert_TypeClass.gif
new file mode 100644
index 0000000000..c673a5200a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Y_Wert_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Adresse_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Adresse_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Adresse_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Anbindung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Anbindung_TypeClass.gif
new file mode 100644
index 0000000000..106881e5d9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Anbindung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_La_Bereich_Distanz_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_La_Bereich_Distanz_TypeClass.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_La_Bereich_Distanz_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_La_Bereich_Geschwindigkeit_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_La_Bereich_Geschwindigkeit_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_La_Bereich_Geschwindigkeit_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_La_Bereich_Laenge_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_La_Bereich_Laenge_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_La_Bereich_Laenge_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_La_Bereich_Neigung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_La_Bereich_Neigung_TypeClass.gif
new file mode 100644
index 0000000000..5915591825
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_La_Bereich_Neigung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Merkmale_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Merkmale_AttributeGroup.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Merkmale_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Reaktion_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Reaktion_TypeClass.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Reaktion_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Schnittstelle_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Schnittstelle_TypeClass.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Schnittstelle_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Schutzstrecke.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Schutzstrecke.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Schutzstrecke.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Schutzstrecke_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Schutzstrecke_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Schutzstrecke_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Signal.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Signal.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Signal.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Signal_Signalabstand_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Signal_Signalabstand_AttributeGroup.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZBS_Signal_Signalabstand_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLA_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLA_TypeClass.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLA_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus.gif
new file mode 100644
index 0000000000..c8d381f0b3
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Besondere_Anlage.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Besondere_Anlage.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Besondere_Anlage.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Besondere_Anlage_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Besondere_Anlage_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Besondere_Anlage_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..35ef84e20e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Nr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Nr_TypeClass.gif
new file mode 100644
index 0000000000..89ad5da38a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Nr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_US_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_US_Zuordnung.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_US_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Zuordnung_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Zuordnung_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZLV_Bus_Zuordnung_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_DLP_Abschnitt.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_DLP_Abschnitt.gif
new file mode 100644
index 0000000000..e4bc22dd17
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_DLP_Abschnitt.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_DLP_Fstr.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_DLP_Fstr.gif
new file mode 100644
index 0000000000..c00aedf413
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_DLP_Fstr.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..badaab0664
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr_Anstoss.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr_Anstoss.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr_Anstoss.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr_Anstoss_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr_Anstoss_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr_Anstoss_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr_Anstoss_GK_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr_Anstoss_GK_AttributeGroup.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr_Anstoss_GK_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr_Zuschlag_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr_Zuschlag_TypeClass.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Fstr_Zuschlag_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Signalgruppe.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Signalgruppe.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Signalgruppe.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Signalgruppe_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Signalgruppe_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Signalgruppe_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Signalgruppe_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Signalgruppe_Zuordnung.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_Signalgruppe_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_ZN_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_ZN_AttributeGroup.gif
new file mode 100644
index 0000000000..7bac4fd380
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZL_ZN_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN.gif
new file mode 100644
index 0000000000..48e3cf2268
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_A_Bedienbezeichner_Frei_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_A_Bedienbezeichner_Frei_TypeClass.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_A_Bedienbezeichner_Frei_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_A_Bezeichner_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_A_Bezeichner_TypeClass.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_A_Bezeichner_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Akustik.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Akustik.gif
new file mode 100644
index 0000000000..b3643da048
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Akustik.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Akustik_Anzeigefeld_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Akustik_Anzeigefeld_AttributeGroup.gif
new file mode 100644
index 0000000000..be22463d29
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Akustik_Anzeigefeld_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..420eee1775
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Anlagentyp_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Anlagentyp_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Anlagentyp_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Anzeigefeld.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Anzeigefeld.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Anzeigefeld.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Anzeigefeld_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Anzeigefeld_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Anzeigefeld_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Anzeigefeld_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Anzeigefeld_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..136e3b2726
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Anzeigefeld_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Anzeigefeld_Loeschkriterium_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Anzeigefeld_Loeschkriterium_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Anzeigefeld_Loeschkriterium_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Feld_Ohne_Anzeige_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Feld_Ohne_Anzeige_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Feld_Ohne_Anzeige_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Fortschalt_Krit_Druck_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Fortschalt_Krit_Druck_AttributeGroup.gif
new file mode 100644
index 0000000000..4365960a04
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Fortschalt_Krit_Druck_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Fortschalt_Krit_Schalt_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Fortschalt_Krit_Schalt_AttributeGroup.gif
new file mode 100644
index 0000000000..f8041d2255
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Fortschalt_Krit_Schalt_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Fortschalt_Kriterium.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Fortschalt_Kriterium.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Fortschalt_Kriterium.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Modem_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Modem_TypeClass.gif
new file mode 100644
index 0000000000..ed87474740
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Modem_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Schaltkriterium_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Schaltkriterium_TypeClass.gif
new file mode 100644
index 0000000000..caf2804510
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Schaltkriterium_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Stellen_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Stellen_TypeClass.gif
new file mode 100644
index 0000000000..c3370c7ddd
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Stellen_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Telegramm_84_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Telegramm_84_Zuordnung.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Telegramm_84_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Telegramm_85_Zuordnung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Telegramm_85_Zuordnung.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Telegramm_85_Zuordnung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Unterstation.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Unterstation.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Unterstation.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Unterstation_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Unterstation_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Unterstation_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Unterstation_Bf_Nr_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Unterstation_Bf_Nr_AttributeGroup.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_Unterstation_Bf_Nr_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_ZBS.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_ZBS.gif
new file mode 100644
index 0000000000..d3dc5a9ad8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZN_ZBS.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze.gif
new file mode 100644
index 0000000000..53500daf98
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_ESG_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_ESG_AttributeGroup.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_ESG_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_GNT_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_GNT_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_GNT_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_L2_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_L2_AttributeGroup.gif
new file mode 100644
index 0000000000..05dc74ad5d
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_L2_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup.gif
new file mode 100644
index 0000000000..5a9bc7514f
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_LZB_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_LZB_AttributeGroup.gif
new file mode 100644
index 0000000000..afb82ea48a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_LZB_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_Ohne_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_Ohne_AttributeGroup.gif
new file mode 100644
index 0000000000..ef56c14085
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_Ohne_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_PZB_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_PZB_AttributeGroup.gif
new file mode 100644
index 0000000000..2b69256029
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_PZB_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_Sonstige_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_Sonstige_AttributeGroup.gif
new file mode 100644
index 0000000000..338fb8d9a7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_Sonstige_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_ZBS_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_ZBS_AttributeGroup.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bereichsgrenze_Nach_ZBS_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bgrenze_RBC_Wechsel_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bgrenze_RBC_Wechsel_AttributeGroup.gif
new file mode 100644
index 0000000000..94c953e013
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Bgrenze_RBC_Wechsel_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_SE_Ausruestung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_SE_Ausruestung_AttributeGroup.gif
new file mode 100644
index 0000000000..2124f3e3ab
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_SE_Ausruestung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Streckeneigenschaft.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Streckeneigenschaft.gif
new file mode 100644
index 0000000000..30f0c48da8
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Streckeneigenschaft.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Streckeneigenschaft_Bezeichnung_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Streckeneigenschaft_Bezeichnung_AttributeGroup.gif
new file mode 100644
index 0000000000..45731fe28e
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/ZUB_Streckeneigenschaft_Bezeichnung_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zeiger_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zeiger_TypeClass.gif
new file mode 100644
index 0000000000..8a5c70cbd7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zeiger_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zeit_Bearbeitungsvermerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zeit_Bearbeitungsvermerk_TypeClass.gif
new file mode 100644
index 0000000000..83afb9b3c9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zeit_Bearbeitungsvermerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zeitsynchronisation_Funkuhr_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zeitsynchronisation_Funkuhr_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zeitsynchronisation_Funkuhr_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zeitueberschreitungsmeldung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zeitueberschreitungsmeldung_TypeClass.gif
new file mode 100644
index 0000000000..a26660ec28
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zeitueberschreitungsmeldung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ziel_DP_Ausrichtung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ziel_DP_Ausrichtung_TypeClass.gif
new file mode 100644
index 0000000000..c4a8af4184
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ziel_DP_Ausrichtung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ziel_Ist_Fahrwegende_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ziel_Ist_Fahrwegende_TypeClass.gif
new file mode 100644
index 0000000000..90d10f9470
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ziel_Ist_Fahrwegende_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ziel_W_Element_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ziel_W_Element_AttributeGroup.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Ziel_W_Element_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zs2_Ueberwacht_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zs2_Ueberwacht_TypeClass.gif
new file mode 100644
index 0000000000..10d222998a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zs2_Ueberwacht_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugbeeinflussung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugbeeinflussung_Art_TypeClass.gif
new file mode 100644
index 0000000000..14af8aaee9
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugbeeinflussung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugeinwirkung.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugeinwirkung.gif
new file mode 100644
index 0000000000..db7414e937
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugeinwirkung.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugeinwirkung_Allg_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugeinwirkung_Allg_AttributeGroup.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugeinwirkung_Allg_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugeinwirkung_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugeinwirkung_Art_TypeClass.gif
new file mode 100644
index 0000000000..134551bff7
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugeinwirkung_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugeinwirkung_Typ_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugeinwirkung_Typ_TypeClass.gif
new file mode 100644
index 0000000000..ea58a657dc
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugeinwirkung_Typ_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugvorbereitungsmeldung_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugvorbereitungsmeldung_TypeClass.gif
new file mode 100644
index 0000000000..9250fecbff
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zugvorbereitungsmeldung_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zungenpaar_AttributeGroup.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zungenpaar_AttributeGroup.gif
new file mode 100644
index 0000000000..7b7c428c71
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zungenpaar_AttributeGroup.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zungenpruefkontakt_Anzahl_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zungenpruefkontakt_Anzahl_TypeClass.gif
new file mode 100644
index 0000000000..cdd3b76e3c
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zungenpruefkontakt_Anzahl_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zusatzinformation_Stellwerk_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zusatzinformation_Stellwerk_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zusatzinformation_Stellwerk_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zusatzinformation_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zusatzinformation_TypeClass.gif
new file mode 100644
index 0000000000..b1f8afa476
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zusatzinformation_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zusatzschild_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zusatzschild_TypeClass.gif
new file mode 100644
index 0000000000..739ebbfa6a
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zusatzschild_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zwieschutz_Art_TypeClass.gif b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zwieschutz_Art_TypeClass.gif
new file mode 100644
index 0000000000..33854e98c2
Binary files /dev/null and b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/icons/full/obj16/Zwieschutz_Art_TypeClass.gif differ
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/plugin.properties b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/plugin.properties
new file mode 100644
index 0000000000..a333a5f552
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/plugin.properties
@@ -0,0 +1,6034 @@
+#
+
+pluginName = TemporaryIntegration Model Edit Support
+
+_UI_CreateChild_text = {0}
+_UI_CreateChild_text2 = {1} {0}
+_UI_CreateChild_text3 = {1}
+_UI_CreateChild_tooltip = Create New {0} Under {1} Feature
+_UI_CreateChild_description = Create a new child of type {0} for the {1} feature of the selected {2}.
+_UI_CreateSibling_description = Create a new sibling of type {0} for the selected {2}, under the {1} feature of their parent.
+
+_UI_PropertyDescriptor_description = The {0} of the {1}
+
+_UI_TemporaryIntegration_type = Temporary Integration
+_UI_Unknown_type = Object
+
+_UI_Unknown_datatype= Value
+
+_UI_TemporaryIntegration_primaryPlanning_feature = Primary Planning
+_UI_TemporaryIntegration_secondaryPlanning_feature = Secondary Planning
+_UI_TemporaryIntegration_compositePlanning_feature = Composite Planning
+_UI_TemporaryIntegration_comparisonInitialState_feature = Comparison Initial State
+_UI_TemporaryIntegration_comparisonFinalState_feature = Comparison Final State
+_UI_TemporaryIntegration_primaryPlanningFilename_feature = Primary Planning Filename
+_UI_TemporaryIntegration_seconaryPlanningFilename_feature = Seconary Planning Filename
+_UI_TemporaryIntegration_integrationDirectory_feature = Integration Directory
+_UI_Unknown_feature = Unspecified
+
+_UI_TemporaryIntegration_primaryPlanningWasValid_feature = Primary Planning Was Valid
+_UI_TemporaryIntegration_secondaryPlanningWasValid_feature = Secondary Planning Was Valid
+providerName = Eclipse Technology Project
+
+_UI_TemporaryIntegration_secondaryPlanningFilename_feature = Secondary Planning Filename
+_UI_ToolboxTemporaryIntegration_type = Toolbox Temporary Integration
+_UI_ToolboxTemporaryIntegration_primaryPlanning_feature = Primary Planning
+_UI_ToolboxTemporaryIntegration_primaryPlanningFilename_feature = Primary Planning Filename
+_UI_ToolboxTemporaryIntegration_primaryPlanningWasValid_feature = Primary Planning Was Valid
+_UI_ToolboxTemporaryIntegration_secondaryPlanning_feature = Secondary Planning
+_UI_ToolboxTemporaryIntegration_secondaryPlanningFilename_feature = Secondary Planning Filename
+_UI_ToolboxTemporaryIntegration_secondaryPlanningWasValid_feature = Secondary Planning Was Valid
+_UI_ToolboxTemporaryIntegration_compositePlanning_feature = Composite Planning
+_UI_ToolboxTemporaryIntegration_integrationDirectory_feature = Integration Directory
+_UI_ToolboxTemporaryIntegration_comparisonInitialState_feature = Comparison Initial State
+_UI_ToolboxTemporaryIntegration_comparisonFinalState_feature = Comparison Final State
+_UI_Adresse_PLZ_Ort_TypeClass_type = Adresse PLZ Ort Type Class
+_UI_Adresse_Strasse_Nr_TypeClass_type = Adresse Strasse Nr Type Class
+_UI_Akteur_type = Akteur
+_UI_Akteur_Allg_AttributeGroup_type = Akteur Allg Attribute Group
+_UI_Akteur_Zuordnung_type = Akteur Zuordnung
+_UI_Ausgabe_Fachdaten_type = Ausgabe Fachdaten
+_UI_Bauabschnitt_TypeClass_type = Bauabschnitt Type Class
+_UI_Bauphase_TypeClass_type = Bauphase Type Class
+_UI_Bauzustand_Kurzbezeichnung_TypeClass_type = Bauzustand Kurzbezeichnung Type Class
+_UI_Bauzustand_Langbezeichnung_TypeClass_type = Bauzustand Langbezeichnung Type Class
+_UI_Bemerkung_TypeClass_type = Bemerkung Type Class
+_UI_Bezeichnung_Anlage_TypeClass_type = Bezeichnung Anlage Type Class
+_UI_Bezeichnung_Planung_Gruppe_TypeClass_type = Bezeichnung Planung Gruppe Type Class
+_UI_Bezeichnung_Planung_Projekt_TypeClass_type = Bezeichnung Planung Projekt Type Class
+_UI_Bezeichnung_Unteranlage_TypeClass_type = Bezeichnung Unteranlage Type Class
+_UI_Container_AttributeGroup_type = Container Attribute Group
+_UI_Datum_Abschluss_Einzel_TypeClass_type = Datum Abschluss Einzel Type Class
+_UI_Datum_Abschluss_Gruppe_TypeClass_type = Datum Abschluss Gruppe Type Class
+_UI_Datum_Abschluss_Projekt_TypeClass_type = Datum Abschluss Projekt Type Class
+_UI_Datum_Regelwerksstand_TypeClass_type = Datum Regelwerksstand Type Class
+_UI_Datum_TypeClass_type = Datum Type Class
+_UI_Datum_Uebernahme_TypeClass_type = Datum Uebernahme Type Class
+_UI_DocumentRoot_type = Document Root
+_UI_E_Mail_Adresse_TypeClass_type = EMail Adresse Type Class
+_UI_Erzeugung_Zeitstempel_TypeClass_type = Erzeugung Zeitstempel Type Class
+_UI_Fachdaten_AttributeGroup_type = Fachdaten Attribute Group
+_UI_Fuehrende_Oertlichkeit_TypeClass_type = Fuehrende Oertlichkeit Type Class
+_UI_Ident_Rolle_TypeClass_type = Ident Rolle Type Class
+_UI_Index_Ausgabe_TypeClass_type = Index Ausgabe Type Class
+_UI_Informativ_TypeClass_type = Informativ Type Class
+_UI_Koordinatensystem_BB_TypeClass_type = Koordinatensystem BB Type Class
+_UI_Koordinatensystem_PB_TypeClass_type = Koordinatensystem PB Type Class
+_UI_Laufende_Nummer_Ausgabe_TypeClass_type = Laufende Nummer Ausgabe Type Class
+_UI_LST_Objekte_Planungsbereich_AttributeGroup_type = LST Objekte Planungsbereich Attribute Group
+_UI_LST_Planung_AttributeGroup_type = LST Planung Attribute Group
+_UI_LST_Zustand_type = LST Zustand
+_UI_Name_Akteur_10_TypeClass_type = Name Akteur 10 Type Class
+_UI_Name_Akteur_5_TypeClass_type = Name Akteur 5Type Class
+_UI_Name_Akteur_TypeClass_type = Name Akteur Type Class
+_UI_Name_Organisation_TypeClass_type = Name Organisation Type Class
+_UI_Objektmanagement_AttributeGroup_type = Objektmanagement Attribute Group
+_UI_Organisation_type = Organisation
+_UI_Organisationseinheit_TypeClass_type = Organisationseinheit Type Class
+_UI_PlanPro_Schnittstelle_type = Plan Pro Schnittstelle
+_UI_PlanPro_Schnittstelle_Allg_AttributeGroup_type = Plan Pro Schnittstelle Allg Attribute Group
+_UI_PlanPro_XSD_Version_TypeClass_type = Plan Pro XSD Version Type Class
+_UI_Planung_E_Allg_AttributeGroup_type = Planung EAllg Attribute Group
+_UI_Planung_E_Art_TypeClass_type = Planung EArt Type Class
+_UI_Planung_E_Ausgabe_Besonders_AttributeGroup_type = Planung EAusgabe Besonders Attribute Group
+_UI_Planung_E_Handlung_AttributeGroup_type = Planung EHandlung Attribute Group
+_UI_Planung_Einzel_type = Planung Einzel
+_UI_Planung_G_Allg_AttributeGroup_type = Planung GAllg Attribute Group
+_UI_Planung_G_Art_Besonders_TypeClass_type = Planung GArt Besonders Type Class
+_UI_Planung_G_Fuehrende_Strecke_AttributeGroup_type = Planung GFuehrende Strecke Attribute Group
+_UI_Planung_G_Schriftfeld_AttributeGroup_type = Planung GSchriftfeld Attribute Group
+_UI_Planung_Gruppe_type = Planung Gruppe
+_UI_Planung_P_Allg_AttributeGroup_type = Planung PAllg Attribute Group
+_UI_Planung_Phase_TypeClass_type = Planung Phase Type Class
+_UI_Planung_Projekt_type = Planung Projekt
+_UI_Polygone_Betrachtungsbereich_AttributeGroup_type = Polygone Betrachtungsbereich Attribute Group
+_UI_Polygone_Planungsbereich_AttributeGroup_type = Polygone Planungsbereich Attribute Group
+_UI_Polygonzug_Betrachtungsbereich_TypeClass_type = Polygonzug Betrachtungsbereich Type Class
+_UI_Polygonzug_Planungsbereich_TypeClass_type = Polygonzug Planungsbereich Type Class
+_UI_Projekt_Nummer_TypeClass_type = Projekt Nummer Type Class
+_UI_Referenz_Planung_Basis_TypeClass_type = Referenz Planung Basis Type Class
+_UI_Referenz_Vergleich_Besonders_TypeClass_type = Referenz Vergleich Besonders Type Class
+_UI_Strecke_Abschnitt_TypeClass_type = Strecke Abschnitt Type Class
+_UI_Strecke_Km_TypeClass_type = Strecke Km Type Class
+_UI_Strecke_Nummer_TypeClass_type = Strecke Nummer Type Class
+_UI_Telefonnummer_TypeClass_type = Telefonnummer Type Class
+_UI_Untergewerk_Art_TypeClass_type = Untergewerk Art Type Class
+_UI_Verantwortliche_Stelle_DB_TypeClass_type = Verantwortliche Stelle DB Type Class
+_UI_Vergleich_Ausgabestand_Basis_TypeClass_type = Vergleich Ausgabestand Basis Type Class
+_UI_Vergleichstyp_Besonders_TypeClass_type = Vergleichstyp Besonders Type Class
+_UI_Werkzeug_Name_TypeClass_type = Werkzeug Name Type Class
+_UI_Werkzeug_Version_TypeClass_type = Werkzeug Version Type Class
+_UI_Adresse_PLZ_Ort_TypeClass_wert_feature = Wert
+_UI_Adresse_Strasse_Nr_TypeClass_wert_feature = Wert
+_UI_Akteur_akteurAllg_feature = Akteur Allg
+_UI_Akteur_kontaktdaten_feature = Kontaktdaten
+_UI_Akteur_Allg_AttributeGroup_nameAkteur_feature = Name Akteur
+_UI_Akteur_Allg_AttributeGroup_nameAkteur10_feature = Name Akteur10
+_UI_Akteur_Allg_AttributeGroup_nameAkteur5_feature = Name Akteur5
+_UI_Akteur_Zuordnung_anhangDokumentation_feature = Anhang Dokumentation
+_UI_Akteur_Zuordnung_datum_feature = Datum
+_UI_Akteur_Zuordnung_handelnder_feature = Handelnder
+_UI_Akteur_Zuordnung_identRolle_feature = Ident Rolle
+_UI_Ausgabe_Fachdaten_lSTZustandStart_feature = LST Zustand Start
+_UI_Ausgabe_Fachdaten_lSTZustandZiel_feature = LST Zustand Ziel
+_UI_Ausgabe_Fachdaten_untergewerkArt_feature = Untergewerk Art
+_UI_Bauabschnitt_TypeClass_wert_feature = Wert
+_UI_Bauphase_TypeClass_wert_feature = Wert
+_UI_Bauzustand_Kurzbezeichnung_TypeClass_wert_feature = Wert
+_UI_Bauzustand_Langbezeichnung_TypeClass_wert_feature = Wert
+_UI_Bemerkung_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Anlage_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Planung_Gruppe_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Planung_Projekt_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Unteranlage_TypeClass_wert_feature = Wert
+_UI_Container_AttributeGroup_anhang_feature = Anhang
+_UI_Container_AttributeGroup_aussenelementansteuerung_feature = Aussenelementansteuerung
+_UI_Container_AttributeGroup_bahnsteigAnlage_feature = Bahnsteig Anlage
+_UI_Container_AttributeGroup_bahnsteigDach_feature = Bahnsteig Dach
+_UI_Container_AttributeGroup_bahnsteigKante_feature = Bahnsteig Kante
+_UI_Container_AttributeGroup_bahnsteigZugang_feature = Bahnsteig Zugang
+_UI_Container_AttributeGroup_balise_feature = Balise
+_UI_Container_AttributeGroup_bearbeitungsvermerk_feature = Bearbeitungsvermerk
+_UI_Container_AttributeGroup_bedienAnrueckabschnitt_feature = Bedien Anrueckabschnitt
+_UI_Container_AttributeGroup_bedienAnzeigeElement_feature = Bedien Anzeige Element
+_UI_Container_AttributeGroup_bedienBezirk_feature = Bedien Bezirk
+_UI_Container_AttributeGroup_bedienEinrichtungOertlich_feature = Bedien Einrichtung Oertlich
+_UI_Container_AttributeGroup_bedienGBT_feature = Bedien GBT
+_UI_Container_AttributeGroup_bedienOberflaeche_feature = Bedien Oberflaeche
+_UI_Container_AttributeGroup_bedienOberflaecheBild_feature = Bedien Oberflaeche Bild
+_UI_Container_AttributeGroup_bedienOertlichkeit_feature = Bedien Oertlichkeit
+_UI_Container_AttributeGroup_bedienPlatz_feature = Bedien Platz
+_UI_Container_AttributeGroup_bedienStandort_feature = Bedien Standort
+_UI_Container_AttributeGroup_bedienZentrale_feature = Bedien Zentrale
+_UI_Container_AttributeGroup_binaerdatei_feature = Binaerdatei
+_UI_Container_AttributeGroup_blockAnlage_feature = Block Anlage
+_UI_Container_AttributeGroup_blockElement_feature = Block Element
+_UI_Container_AttributeGroup_blockStrecke_feature = Block Strecke
+_UI_Container_AttributeGroup_bUEAnlage_feature = BUE Anlage
+_UI_Container_AttributeGroup_bUEAnlageStrasse_feature = BUE Anlage Strasse
+_UI_Container_AttributeGroup_bUEAnlageV_feature = BUE Anlage V
+_UI_Container_AttributeGroup_bUEAusschaltung_feature = BUE Ausschaltung
+_UI_Container_AttributeGroup_bUEBedienAnzeigeElement_feature = BUE Bedien Anzeige Element
+_UI_Container_AttributeGroup_bUEDeckendesSignalZuordnung_feature = BUE Deckendes Signal Zuordnung
+_UI_Container_AttributeGroup_bUEEinschaltung_feature = BUE Einschaltung
+_UI_Container_AttributeGroup_bUEEinschaltungZuordnung_feature = BUE Einschaltung Zuordnung
+_UI_Container_AttributeGroup_bUEGefahrraumEckpunkt_feature = BUE Gefahrraum Eckpunkt
+_UI_Container_AttributeGroup_bUEGleisbezogenerGefahrraum_feature = BUE Gleisbezogener Gefahrraum
+_UI_Container_AttributeGroup_bUEKante_feature = BUE Kante
+_UI_Container_AttributeGroup_bUEKreuzungsplan_feature = BUE Kreuzungsplan
+_UI_Container_AttributeGroup_bUESchnittstelle_feature = BUE Schnittstelle
+_UI_Container_AttributeGroup_bUESpezifischesSignal_feature = BUE Spezifisches Signal
+_UI_Container_AttributeGroup_bUEWSFstrZuordnung_feature = BUEWS Fstr Zuordnung
+_UI_Container_AttributeGroup_datenpunkt_feature = Datenpunkt
+_UI_Container_AttributeGroup_datenpunktLink_feature = Datenpunkt Link
+_UI_Container_AttributeGroup_eSTWZentraleinheit_feature = ESTW Zentraleinheit
+_UI_Container_AttributeGroup_eTCSKante_feature = ETCS Kante
+_UI_Container_AttributeGroup_eTCSKnoten_feature = ETCS Knoten
+_UI_Container_AttributeGroup_eTCSSignal_feature = ETCS Signal
+_UI_Container_AttributeGroup_eTCSWKr_feature = ETCSW Kr
+_UI_Container_AttributeGroup_eVModul_feature = EV Modul
+_UI_Container_AttributeGroup_fachtelegramm_feature = Fachtelegramm
+_UI_Container_AttributeGroup_flaFreimeldeZuordnung_feature = Fla Freimelde Zuordnung
+_UI_Container_AttributeGroup_flaSchutz_feature = Fla Schutz
+_UI_Container_AttributeGroup_flaZwieschutz_feature = Fla Zwieschutz
+_UI_Container_AttributeGroup_fMAAnlage_feature = FMA Anlage
+_UI_Container_AttributeGroup_fMAElement_feature = FMA Element
+_UI_Container_AttributeGroup_fMAKomponente_feature = FMA Komponente
+_UI_Container_AttributeGroup_fstrAbhaengigkeit_feature = Fstr Abhaengigkeit
+_UI_Container_AttributeGroup_fstrAneinander_feature = Fstr Aneinander
+_UI_Container_AttributeGroup_fstrAneinanderZuordnung_feature = Fstr Aneinander Zuordnung
+_UI_Container_AttributeGroup_fstrDWeg_feature = Fstr DWeg
+_UI_Container_AttributeGroup_fstrDWegWKr_feature = Fstr DWeg WKr
+_UI_Container_AttributeGroup_fstrFahrweg_feature = Fstr Fahrweg
+_UI_Container_AttributeGroup_fstrNichthaltfall_feature = Fstr Nichthaltfall
+_UI_Container_AttributeGroup_fstrRangierFlaZuordnung_feature = Fstr Rangier Fla Zuordnung
+_UI_Container_AttributeGroup_fstrSignalisierung_feature = Fstr Signalisierung
+_UI_Container_AttributeGroup_fstrUmfahrpunkt_feature = Fstr Umfahrpunkt
+_UI_Container_AttributeGroup_fstrZugRangier_feature = Fstr Zug Rangier
+_UI_Container_AttributeGroup_fTAnschaltbedingung_feature = FT Anschaltbedingung
+_UI_Container_AttributeGroup_fTFahrwegTeil_feature = FT Fahrweg Teil
+_UI_Container_AttributeGroup_gEOKante_feature = GEO Kante
+_UI_Container_AttributeGroup_gEOKnoten_feature = GEO Knoten
+_UI_Container_AttributeGroup_gEOPunkt_feature = GEO Punkt
+_UI_Container_AttributeGroup_geschwindigkeitsprofil_feature = Geschwindigkeitsprofil
+_UI_Container_AttributeGroup_gFRAnlage_feature = GFR Anlage
+_UI_Container_AttributeGroup_gFRElement_feature = GFR Element
+_UI_Container_AttributeGroup_gFRTripelspiegel_feature = GFR Tripelspiegel
+_UI_Container_AttributeGroup_gleisAbschluss_feature = Gleis Abschluss
+_UI_Container_AttributeGroup_gleisAbschnitt_feature = Gleis Abschnitt
+_UI_Container_AttributeGroup_gleisArt_feature = Gleis Art
+_UI_Container_AttributeGroup_gleisBaubereich_feature = Gleis Baubereich
+_UI_Container_AttributeGroup_gleisBezeichnung_feature = Gleis Bezeichnung
+_UI_Container_AttributeGroup_gleisFahrbahn_feature = Gleis Fahrbahn
+_UI_Container_AttributeGroup_gleisLichtraum_feature = Gleis Lichtraum
+_UI_Container_AttributeGroup_gleisSchaltgruppe_feature = Gleis Schaltgruppe
+_UI_Container_AttributeGroup_hoehenlinie_feature = Hoehenlinie
+_UI_Container_AttributeGroup_hoehenpunkt_feature = Hoehenpunkt
+_UI_Container_AttributeGroup_kabel_feature = Kabel
+_UI_Container_AttributeGroup_kabelVerteilpunkt_feature = Kabel Verteilpunkt
+_UI_Container_AttributeGroup_lEUAnlage_feature = LEU Anlage
+_UI_Container_AttributeGroup_lEUModul_feature = LEU Modul
+_UI_Container_AttributeGroup_lEUSchaltkasten_feature = LEU Schaltkasten
+_UI_Container_AttributeGroup_lieferobjekt_feature = Lieferobjekt
+_UI_Container_AttributeGroup_luftTelegramm_feature = Luft Telegramm
+_UI_Container_AttributeGroup_markanterPunkt_feature = Markanter Punkt
+_UI_Container_AttributeGroup_nB_feature = NB
+_UI_Container_AttributeGroup_nBBedienAnzeigeElement_feature = NB Bedien Anzeige Element
+_UI_Container_AttributeGroup_nBZone_feature = NB Zone
+_UI_Container_AttributeGroup_nBZoneElement_feature = NB Zone Element
+_UI_Container_AttributeGroup_nBZoneGrenze_feature = NB Zone Grenze
+_UI_Container_AttributeGroup_oertlichkeit_feature = Oertlichkeit
+_UI_Container_AttributeGroup_progDateiGruppe_feature = Prog Datei Gruppe
+_UI_Container_AttributeGroup_proxyObjekt_feature = Proxy Objekt
+_UI_Container_AttributeGroup_pZBElement_feature = PZB Element
+_UI_Container_AttributeGroup_pZBElementZuordnung_feature = PZB Element Zuordnung
+_UI_Container_AttributeGroup_pZBZuordnungSignal_feature = PZB Zuordnung Signal
+_UI_Container_AttributeGroup_rBC_feature = RBC
+_UI_Container_AttributeGroup_regelzeichnung_feature = Regelzeichnung
+_UI_Container_AttributeGroup_regelzeichnungParameter_feature = Regelzeichnung Parameter
+_UI_Container_AttributeGroup_schaltmittelFstrZuordnung_feature = Schaltmittel Fstr Zuordnung
+_UI_Container_AttributeGroup_schaltmittelZuordnung_feature = Schaltmittel Zuordnung
+_UI_Container_AttributeGroup_schloss_feature = Schloss
+_UI_Container_AttributeGroup_schlosskombination_feature = Schlosskombination
+_UI_Container_AttributeGroup_schluessel_feature = Schluessel
+_UI_Container_AttributeGroup_schluesselsperre_feature = Schluesselsperre
+_UI_Container_AttributeGroup_schrankenantrieb_feature = Schrankenantrieb
+_UI_Container_AttributeGroup_signal_feature = Signal
+_UI_Container_AttributeGroup_signalBefestigung_feature = Signal Befestigung
+_UI_Container_AttributeGroup_signalFankZuordnung_feature = Signal Fank Zuordnung
+_UI_Container_AttributeGroup_signalRahmen_feature = Signal Rahmen
+_UI_Container_AttributeGroup_signalSignalbegriff_feature = Signal Signalbegriff
+_UI_Container_AttributeGroup_sonstigerPunkt_feature = Sonstiger Punkt
+_UI_Container_AttributeGroup_stellBereich_feature = Stell Bereich
+_UI_Container_AttributeGroup_stellelement_feature = Stellelement
+_UI_Container_AttributeGroup_strecke_feature = Strecke
+_UI_Container_AttributeGroup_streckePunkt_feature = Strecke Punkt
+_UI_Container_AttributeGroup_technikStandort_feature = Technik Standort
+_UI_Container_AttributeGroup_technischerBereich_feature = Technischer Bereich
+_UI_Container_AttributeGroup_technischerPunkt_feature = Technischer Punkt
+_UI_Container_AttributeGroup_tOPKante_feature = TOP Kante
+_UI_Container_AttributeGroup_tOPKnoten_feature = TOP Knoten
+_UI_Container_AttributeGroup_trasseKante_feature = Trasse Kante
+_UI_Container_AttributeGroup_trasseKnoten_feature = Trasse Knoten
+_UI_Container_AttributeGroup_ueberhoehung_feature = Ueberhoehung
+_UI_Container_AttributeGroup_ueberhoehungslinie_feature = Ueberhoehungslinie
+_UI_Container_AttributeGroup_uebertragungsweg_feature = Uebertragungsweg
+_UI_Container_AttributeGroup_unterbringung_feature = Unterbringung
+_UI_Container_AttributeGroup_verkehrszeichen_feature = Verkehrszeichen
+_UI_Container_AttributeGroup_wKrAnlage_feature = WKr Anlage
+_UI_Container_AttributeGroup_wKrGspElement_feature = WKr Gsp Element
+_UI_Container_AttributeGroup_wKrGspKomponente_feature = WKr Gsp Komponente
+_UI_Container_AttributeGroup_weichenlaufkette_feature = Weichenlaufkette
+_UI_Container_AttributeGroup_weichenlaufketteZuordnung_feature = Weichenlaufkette Zuordnung
+_UI_Container_AttributeGroup_zL_feature = ZL
+_UI_Container_AttributeGroup_zLDLPAbschnitt_feature = ZLDLP Abschnitt
+_UI_Container_AttributeGroup_zLDLPFstr_feature = ZLDLP Fstr
+_UI_Container_AttributeGroup_zLFstr_feature = ZL Fstr
+_UI_Container_AttributeGroup_zLFstrAnstoss_feature = ZL Fstr Anstoss
+_UI_Container_AttributeGroup_zLSignalgruppe_feature = ZL Signalgruppe
+_UI_Container_AttributeGroup_zLSignalgruppeZuordnung_feature = ZL Signalgruppe Zuordnung
+_UI_Container_AttributeGroup_zLVBus_feature = ZLV Bus
+_UI_Container_AttributeGroup_zLVBusUSZuordnung_feature = ZLV Bus US Zuordnung
+_UI_Container_AttributeGroup_zN_feature = ZN
+_UI_Container_AttributeGroup_zNAkustik_feature = ZN Akustik
+_UI_Container_AttributeGroup_zNAnzeigefeld_feature = ZN Anzeigefeld
+_UI_Container_AttributeGroup_zNFortschaltKriterium_feature = ZN Fortschalt Kriterium
+_UI_Container_AttributeGroup_zNTelegramm84Zuordnung_feature = ZN Telegramm84 Zuordnung
+_UI_Container_AttributeGroup_zNTelegramm85Zuordnung_feature = ZN Telegramm85 Zuordnung
+_UI_Container_AttributeGroup_zNUnterstation_feature = ZN Unterstation
+_UI_Container_AttributeGroup_zNZBS_feature = ZNZBS
+_UI_Container_AttributeGroup_zUBBereichsgrenze_feature = ZUB Bereichsgrenze
+_UI_Container_AttributeGroup_zUBStreckeneigenschaft_feature = ZUB Streckeneigenschaft
+_UI_Container_AttributeGroup_zugeinwirkung_feature = Zugeinwirkung
+_UI_Datum_Abschluss_Einzel_TypeClass_wert_feature = Wert
+_UI_Datum_Abschluss_Gruppe_TypeClass_wert_feature = Wert
+_UI_Datum_Abschluss_Projekt_TypeClass_wert_feature = Wert
+_UI_Datum_Regelwerksstand_TypeClass_wert_feature = Wert
+_UI_Datum_TypeClass_wert_feature = Wert
+_UI_Datum_Uebernahme_TypeClass_wert_feature = Wert
+_UI_DocumentRoot_mixed_feature = Mixed
+_UI_DocumentRoot_xMLNSPrefixMap_feature = XMLNS Prefix Map
+_UI_DocumentRoot_xSISchemaLocation_feature = XSI Schema Location
+_UI_DocumentRoot_planProSchnittstelle_feature = Plan Pro Schnittstelle
+_UI_E_Mail_Adresse_TypeClass_wert_feature = Wert
+_UI_Erzeugung_Zeitstempel_TypeClass_wert_feature = Wert
+_UI_Fachdaten_AttributeGroup_ausgabeFachdaten_feature = Ausgabe Fachdaten
+_UI_Fuehrende_Oertlichkeit_TypeClass_wert_feature = Wert
+_UI_Ident_Rolle_TypeClass_wert_feature = Wert
+_UI_Index_Ausgabe_TypeClass_wert_feature = Wert
+_UI_Informativ_TypeClass_wert_feature = Wert
+_UI_Koordinatensystem_BB_TypeClass_wert_feature = Wert
+_UI_Koordinatensystem_PB_TypeClass_wert_feature = Wert
+_UI_Laufende_Nummer_Ausgabe_TypeClass_wert_feature = Wert
+_UI_LST_Objekte_Planungsbereich_AttributeGroup_iDLSTObjektPlanungsbereich_feature = IDLST Objekt Planungsbereich
+_UI_LST_Planung_AttributeGroup_fachdaten_feature = Fachdaten
+_UI_LST_Planung_AttributeGroup_objektmanagement_feature = Objektmanagement
+_UI_LST_Zustand_anhangLSTZustand_feature = Anhang LST Zustand
+_UI_LST_Zustand_container_feature = Container
+_UI_Name_Akteur_10_TypeClass_wert_feature = Wert
+_UI_Name_Akteur_5_TypeClass_wert_feature = Wert
+_UI_Name_Akteur_TypeClass_wert_feature = Wert
+_UI_Name_Organisation_TypeClass_wert_feature = Wert
+_UI_Objektmanagement_AttributeGroup_lSTPlanungProjekt_feature = LST Planung Projekt
+_UI_Organisation_adressePLZOrt_feature = Adresse PLZ Ort
+_UI_Organisation_adresseStrasseNr_feature = Adresse Strasse Nr
+_UI_Organisation_eMailAdresse_feature = EMail Adresse
+_UI_Organisation_nameOrganisation_feature = Name Organisation
+_UI_Organisation_organisationseinheit_feature = Organisationseinheit
+_UI_Organisation_telefonnummer_feature = Telefonnummer
+_UI_Organisationseinheit_TypeClass_wert_feature = Wert
+_UI_PlanPro_Schnittstelle_planProSchnittstelleAllg_feature = Plan Pro Schnittstelle Allg
+_UI_PlanPro_Schnittstelle_lSTPlanung_feature = LST Planung
+_UI_PlanPro_Schnittstelle_lSTZustand_feature = LST Zustand
+_UI_PlanPro_Schnittstelle_Allg_AttributeGroup_bemerkung_feature = Bemerkung
+_UI_PlanPro_Schnittstelle_Allg_AttributeGroup_erzeugungZeitstempel_feature = Erzeugung Zeitstempel
+_UI_PlanPro_Schnittstelle_Allg_AttributeGroup_werkzeugName_feature = Werkzeug Name
+_UI_PlanPro_Schnittstelle_Allg_AttributeGroup_werkzeugVersion_feature = Werkzeug Version
+_UI_PlanPro_XSD_Version_TypeClass_wert_feature = Wert
+_UI_Planung_E_Allg_AttributeGroup_bauphase_feature = Bauphase
+_UI_Planung_E_Allg_AttributeGroup_bauzustandKurzbezeichnung_feature = Bauzustand Kurzbezeichnung
+_UI_Planung_E_Allg_AttributeGroup_bauzustandLangbezeichnung_feature = Bauzustand Langbezeichnung
+_UI_Planung_E_Allg_AttributeGroup_datumAbschlussEinzel_feature = Datum Abschluss Einzel
+_UI_Planung_E_Allg_AttributeGroup_datumRegelwerksstand_feature = Datum Regelwerksstand
+_UI_Planung_E_Allg_AttributeGroup_indexAusgabe_feature = Index Ausgabe
+_UI_Planung_E_Allg_AttributeGroup_informativ_feature = Informativ
+_UI_Planung_E_Allg_AttributeGroup_laufendeNummerAusgabe_feature = Laufende Nummer Ausgabe
+_UI_Planung_E_Allg_AttributeGroup_planungEArt_feature = Planung EArt
+_UI_Planung_E_Allg_AttributeGroup_planungPhase_feature = Planung Phase
+_UI_Planung_E_Art_TypeClass_wert_feature = Wert
+_UI_Planung_E_Ausgabe_Besonders_AttributeGroup_referenzVergleichBesonders_feature = Referenz Vergleich Besonders
+_UI_Planung_E_Ausgabe_Besonders_AttributeGroup_vergleichAusgabestandBasis_feature = Vergleich Ausgabestand Basis
+_UI_Planung_E_Ausgabe_Besonders_AttributeGroup_vergleichstypBesonders_feature = Vergleichstyp Besonders
+_UI_Planung_E_Handlung_AttributeGroup_planungEAbnahme_feature = Planung EAbnahme
+_UI_Planung_E_Handlung_AttributeGroup_planungEErstellung_feature = Planung EErstellung
+_UI_Planung_E_Handlung_AttributeGroup_planungEFreigabe_feature = Planung EFreigabe
+_UI_Planung_E_Handlung_AttributeGroup_planungEGenehmigung_feature = Planung EGenehmigung
+_UI_Planung_E_Handlung_AttributeGroup_planungEGleichstellung_feature = Planung EGleichstellung
+_UI_Planung_E_Handlung_AttributeGroup_planungEPruefung_feature = Planung EPruefung
+_UI_Planung_E_Handlung_AttributeGroup_planungEQualitaetspruefung_feature = Planung EQualitaetspruefung
+_UI_Planung_E_Handlung_AttributeGroup_planungESonstige_feature = Planung ESonstige
+_UI_Planung_E_Handlung_AttributeGroup_planungEUebernahme_feature = Planung EUebernahme
+_UI_Planung_Einzel_anhangErlaeuterungsbericht_feature = Anhang Erlaeuterungsbericht
+_UI_Planung_Einzel_anhangMaterialBesonders_feature = Anhang Material Besonders
+_UI_Planung_Einzel_anhangVzG_feature = Anhang Vz G
+_UI_Planung_Einzel_iDAusgabeFachdaten_feature = ID Ausgabe Fachdaten
+_UI_Planung_Einzel_lSTObjektePlanungsbereich_feature = LST Objekte Planungsbereich
+_UI_Planung_Einzel_planungEAllg_feature = Planung EAllg
+_UI_Planung_Einzel_planungEAusgabeBesonders_feature = Planung EAusgabe Besonders
+_UI_Planung_Einzel_planungEHandlung_feature = Planung EHandlung
+_UI_Planung_Einzel_referenzPlanungBasis_feature = Referenz Planung Basis
+_UI_Planung_G_Allg_AttributeGroup_anhangBAST_feature = Anhang BAST
+_UI_Planung_G_Allg_AttributeGroup_datumAbschlussGruppe_feature = Datum Abschluss Gruppe
+_UI_Planung_G_Allg_AttributeGroup_planProXSDVersion_feature = Plan Pro XSD Version
+_UI_Planung_G_Allg_AttributeGroup_planungGArtBesonders_feature = Planung GArt Besonders
+_UI_Planung_G_Allg_AttributeGroup_untergewerkArt_feature = Untergewerk Art
+_UI_Planung_G_Allg_AttributeGroup_verantwortlicheStelleDB_feature = Verantwortliche Stelle DB
+_UI_Planung_G_Art_Besonders_TypeClass_wert_feature = Wert
+_UI_Planung_G_Fuehrende_Strecke_AttributeGroup_streckeAbschnitt_feature = Strecke Abschnitt
+_UI_Planung_G_Fuehrende_Strecke_AttributeGroup_streckeKm_feature = Strecke Km
+_UI_Planung_G_Fuehrende_Strecke_AttributeGroup_streckeNummer_feature = Strecke Nummer
+_UI_Planung_G_Schriftfeld_AttributeGroup_bauabschnitt_feature = Bauabschnitt
+_UI_Planung_G_Schriftfeld_AttributeGroup_bezeichnungAnlage_feature = Bezeichnung Anlage
+_UI_Planung_G_Schriftfeld_AttributeGroup_bezeichnungPlanungGruppe_feature = Bezeichnung Planung Gruppe
+_UI_Planung_G_Schriftfeld_AttributeGroup_bezeichnungUnteranlage_feature = Bezeichnung Unteranlage
+_UI_Planung_G_Schriftfeld_AttributeGroup_planungsbuero_feature = Planungsbuero
+_UI_Planung_Gruppe_fuehrendeOertlichkeit_feature = Fuehrende Oertlichkeit
+_UI_Planung_Gruppe_lSTPlanungEinzel_feature = LST Planung Einzel
+_UI_Planung_Gruppe_planungGAllg_feature = Planung GAllg
+_UI_Planung_Gruppe_planungGFuehrendeStrecke_feature = Planung GFuehrende Strecke
+_UI_Planung_Gruppe_planungGSchriftfeld_feature = Planung GSchriftfeld
+_UI_Planung_Gruppe_polygoneBetrachtungsbereich_feature = Polygone Betrachtungsbereich
+_UI_Planung_Gruppe_polygonePlanungsbereich_feature = Polygone Planungsbereich
+_UI_Planung_P_Allg_AttributeGroup_bezeichnungPlanungProjekt_feature = Bezeichnung Planung Projekt
+_UI_Planung_P_Allg_AttributeGroup_datumAbschlussProjekt_feature = Datum Abschluss Projekt
+_UI_Planung_P_Allg_AttributeGroup_projektNummer_feature = Projekt Nummer
+_UI_Planung_P_Allg_AttributeGroup_projektleiter_feature = Projektleiter
+_UI_Planung_Phase_TypeClass_wert_feature = Wert
+_UI_Planung_Projekt_lSTPlanungGruppe_feature = LST Planung Gruppe
+_UI_Planung_Projekt_planungPAllg_feature = Planung PAllg
+_UI_Planung_Projekt_lstPlanungErsteGruppe_feature = Lst Planung Erste Gruppe
+_UI_Polygone_Betrachtungsbereich_AttributeGroup_koordinatensystemBB_feature = Koordinatensystem BB
+_UI_Polygone_Betrachtungsbereich_AttributeGroup_polygonzugBetrachtungsbereich_feature = Polygonzug Betrachtungsbereich
+_UI_Polygone_Planungsbereich_AttributeGroup_koordinatensystemPB_feature = Koordinatensystem PB
+_UI_Polygone_Planungsbereich_AttributeGroup_polygonzugPlanungsbereich_feature = Polygonzug Planungsbereich
+_UI_Polygonzug_Betrachtungsbereich_TypeClass_wert_feature = Wert
+_UI_Polygonzug_Planungsbereich_TypeClass_wert_feature = Wert
+_UI_Projekt_Nummer_TypeClass_wert_feature = Wert
+_UI_Referenz_Planung_Basis_TypeClass_wert_feature = Wert
+_UI_Referenz_Vergleich_Besonders_TypeClass_wert_feature = Wert
+_UI_Strecke_Abschnitt_TypeClass_wert_feature = Wert
+_UI_Strecke_Km_TypeClass_wert_feature = Wert
+_UI_Strecke_Nummer_TypeClass_wert_feature = Wert
+_UI_Telefonnummer_TypeClass_wert_feature = Wert
+_UI_Untergewerk_Art_TypeClass_wert_feature = Wert
+_UI_Verantwortliche_Stelle_DB_TypeClass_wert_feature = Wert
+_UI_Vergleich_Ausgabestand_Basis_TypeClass_wert_feature = Wert
+_UI_Vergleichstyp_Besonders_TypeClass_wert_feature = Wert
+_UI_Werkzeug_Name_TypeClass_wert_feature = Wert
+_UI_Werkzeug_Version_TypeClass_wert_feature = Wert
+_UI_XMLTypeDocumentRoot_comment_feature = Comment
+_UI_XMLTypeDocumentRoot_text_feature = Text
+_UI_XMLTypeDocumentRoot_processingInstruction_feature = Processing Instruction
+_UI_ENUMKoordinatensystem_ENUMKoordinatensystem_DB_Ref_literal = DB_Ref
+_UI_ENUMKoordinatensystem_ENUMKoordinatensystem_sonstige_literal = sonstige
+_UI_ENUMKoordinatensystem_ENUMKoordinatensystem_WGS84_literal = WGS84
+_UI_ENUMPlanungEArt_ENUMPlanung_E_Art_Bauzustand_literal = Bauzustand
+_UI_ENUMPlanungEArt_ENUMPlanung_E_Art_Bestandsdigitalisierung_Geo_Topo_literal = Bestandsdigitalisierung_Geo_Topo
+_UI_ENUMPlanungEArt_ENUMPlanung_E_Art_Bestandsdigitalisierung_LST_literal = Bestandsdigitalisierung_LST
+_UI_ENUMPlanungEArt_ENUMPlanung_E_Art_Bestandskorrektur_literal = Bestandskorrektur
+_UI_ENUMPlanungEArt_ENUMPlanung_E_Art_Geodaten_literal = Geodaten
+_UI_ENUMPlanungEArt_ENUMPlanung_E_Art_Revision_literal = Revision
+_UI_ENUMPlanungEArt_ENUMPlanung_E_Art_Revision_letzte_Planung_E_literal = Revision_letzte_Planung_E
+_UI_ENUMPlanungEArt_ENUMPlanung_E_Art_sonstige_literal = sonstige
+_UI_ENUMPlanungEArt_ENUMPlanung_E_Art_Verbindungsknoten_literal = Verbindungsknoten
+_UI_ENUMPlanungEArt_ENUMPlanung_E_Art_Versionshebung_literal = Versionshebung
+_UI_ENUMPlanungEArt_ENUMPlanung_E_Art_Voraussichtlich_literal = Voraussichtlich
+_UI_ENUMPlanungGArtBesonders_ENUMPlanung_G_Art_Besonders_Bestandsdigitalisierung_Geo_Topo_literal = Bestandsdigitalisierung_Geo_Topo
+_UI_ENUMPlanungGArtBesonders_ENUMPlanung_G_Art_Besonders_Bestandsdigitalisierung_LST_literal = Bestandsdigitalisierung_LST
+_UI_ENUMPlanungGArtBesonders_ENUMPlanung_G_Art_Besonders_Geodaten_literal = Geodaten
+_UI_ENUMPlanungGArtBesonders_ENUMPlanung_G_Art_Besonders_sonstige_literal = sonstige
+_UI_ENUMPlanungGArtBesonders_ENUMPlanung_G_Art_Besonders_Verbindungsknoten_literal = Verbindungsknoten
+_UI_ENUMPlanungGArtBesonders_ENUMPlanung_G_Art_Besonders_Versionshebung_literal = Versionshebung
+_UI_ENUMPlanungPhase_ENUMPlanung_Phase_EP_literal = EP
+_UI_ENUMPlanungPhase_ENUMPlanung_Phase_PT_1_literal = PT_1
+_UI_ENUMPlanungPhase_ENUMPlanung_Phase_PT_2_literal = PT_2
+_UI_ENUMPlanungPhase_ENUMPlanung_Phase_sonstige_literal = sonstige
+_UI_ENUMPlanungPhase_ENUMPlanung_Phase_VP_literal = VP
+_UI_ENUMUntergewerkArt_ENUMUntergewerk_Art_Bedienung_ETCS_literal = Bedienung ETCS
+_UI_ENUMUntergewerkArt_ENUMUntergewerk_Art_Bedienung_Fdl_BZ_literal = Bedienung Fdl BZ
+_UI_ENUMUntergewerkArt_ENUMUntergewerk_Art_Bedienung_Fdl_ESTW_ZE_literal = Bedienung Fdl ESTW-ZE
+_UI_ENUMUntergewerkArt_ENUMUntergewerk_Art_BUE_literal = BUE
+_UI_ENUMUntergewerkArt_ENUMUntergewerk_Art_ESTW_literal = ESTW
+_UI_ENUMUntergewerkArt_ENUMUntergewerk_Art_ETCS_literal = ETCS
+_UI_ENUMUntergewerkArt_ENUMUntergewerk_Art_Geo_literal = Geo
+_UI_ENUMUntergewerkArt_ENUMUntergewerk_Art_sonstige_literal = sonstige
+_UI_ENUMUntergewerkArt_ENUMUntergewerk_Art_ZL_literal = ZL
+_UI_ENUMUntergewerkArt_ENUMUntergewerk_Art_ZLV_Bus_literal = ZLV-Bus
+_UI_ENUMUntergewerkArt_ENUMUntergewerk_Art_ZN_literal = ZN
+_UI_ENUMVergleichstypBesonders_ENUMVergleichstyp_Besonders_AeM_literal = AeM
+_UI_ENUMVergleichstypBesonders_ENUMVergleichstyp_Besonders_AeP_literal = AeP
+_UI_ENUMVergleichstypBesonders_ENUMVergleichstyp_Besonders_sonstige_literal = sonstige
+_UI_ToolboxTemporaryIntegration_primaryPlanningIDReferences_feature = Primary Planning ID References
+_UI_ToolboxTemporaryIntegration_secondaryPlanningIDReferences_feature = Secondary Planning ID References
+_UI_ToolboxTemporaryIntegration_compositePlanningIDReferences_feature = Composite Planning ID References
+_UI_BasisAttribut_AttributeGroup_type = Basis Attribut Attribute Group
+_UI_Bezeichnung_Aussenanlage_TypeClass_type = Bezeichnung Aussenanlage Type Class
+_UI_Bezeichnung_Element_AttributeGroup_type = Bezeichnung Element Attribute Group
+_UI_Bezeichnung_Lageplan_Kurz_TypeClass_type = Bezeichnung Lageplan Kurz Type Class
+_UI_Bezeichnung_Lageplan_Lang_TypeClass_type = Bezeichnung Lageplan Lang Type Class
+_UI_Bezeichnung_Tabelle_TypeClass_type = Bezeichnung Tabelle Type Class
+_UI_Datum_Auslieferung_TypeClass_type = Datum Auslieferung Type Class
+_UI_ID_Bearbeitungsvermerk_TypeClass_type = ID Bearbeitungsvermerk Type Class
+_UI_Kennzahl_TypeClass_type = Kennzahl Type Class
+_UI_Oertlicher_Elementname_TypeClass_type = Oertlicher Elementname Type Class
+_UI_Pruefmerkmale_Daten_AttributeGroup_type = Pruefmerkmale Daten Attribute Group
+_UI_Pruefsumme_Art_TypeClass_type = Pruefsumme Art Type Class
+_UI_Pruefsumme_TypeClass_type = Pruefsumme Type Class
+_UI_Version_Auslieferung_TypeClass_type = Version Auslieferung Type Class
+_UI_Zeiger_TypeClass_type = Zeiger Type Class
+_UI_Abstand_TypeClass_type = Abstand Type Class
+_UI_Anhang_type = Anhang
+_UI_Anhang_Allg_AttributeGroup_type = Anhang Allg Attribute Group
+_UI_Anhang_Art_TypeClass_type = Anhang Art Type Class
+_UI_Basis_Objekt_type = Basis Objekt
+_UI_Basis_Objekt_Allg_AttributeGroup_type = Basis Objekt Allg Attribute Group
+_UI_Bearbeitungsvermerk_type = Bearbeitungsvermerk
+_UI_Bearbeitungsvermerk_Allg_AttributeGroup_type = Bearbeitungsvermerk Allg Attribute Group
+_UI_Bearbeitungsvermerk_Rolle_TypeClass_type = Bearbeitungsvermerk Rolle Type Class
+_UI_Begrenzung_A_TypeClass_type = Begrenzung AType Class
+_UI_Begrenzung_B_TypeClass_type = Begrenzung BType Class
+_UI_Bereich_Objekt_type = Bereich Objekt
+_UI_Bereich_Objekt_Teilbereich_AttributeGroup_type = Bereich Objekt Teilbereich Attribute Group
+_UI_Beschreibung_TypeClass_type = Beschreibung Type Class
+_UI_Bestandsrelevanz_TypeClass_type = Bestandsrelevanz Type Class
+_UI_Bestandsschutz_TypeClass_type = Bestandsschutz Type Class
+_UI_BV_Darstellung_In_Plan_TypeClass_type = BV Darstellung In Plan Type Class
+_UI_BV_Kategorie_TypeClass_type = BV Kategorie Type Class
+_UI_Dateiname_TypeClass_type = Dateiname Type Class
+_UI_Dateityp_TypeClass_type = Dateityp Type Class
+_UI_Datum_Regelwerk_TypeClass_type = Datum Regelwerk Type Class
+_UI_DB_GDI_Referenz_TypeClass_type = DB GDI Referenz Type Class
+_UI_Identitaet_TypeClass_type = Identitaet Type Class
+_UI_Km_Massgebend_TypeClass_type = Km Massgebend Type Class
+_UI_Kommentar_TypeClass_type = Kommentar Type Class
+_UI_Kurztext_TypeClass_type = Kurztext Type Class
+_UI_Lieferobjekt_type = Lieferobjekt
+_UI_LO_Ausgabestand_TypeClass_type = LO Ausgabestand Type Class
+_UI_LO_Datum_Herstellung_TypeClass_type = LO Datum Herstellung Type Class
+_UI_LO_DB_Freigabe_TypeClass_type = LO DB Freigabe Type Class
+_UI_LO_EMA_Nr_TypeClass_type = LO EMA Nr Type Class
+_UI_LO_Ersatz_TypeClass_type = LO Ersatz Type Class
+_UI_LO_Firmensachnummer_TypeClass_type = LO Firmensachnummer Type Class
+_UI_LO_Material_AttributeGroup_type = LO Material Attribute Group
+_UI_LO_Seriennummer_TypeClass_type = LO Seriennummer Type Class
+_UI_LST_Objekt_Art_TypeClass_type = LST Objekt Art Type Class
+_UI_Objektreferenzen_AttributeGroup_type = Objektreferenzen Attribute Group
+_UI_Objektzustand_Besonders_TypeClass_type = Objektzustand Besonders Type Class
+_UI_Proxy_Objekt_type = Proxy Objekt
+_UI_Punkt_Objekt_type = Punkt Objekt
+_UI_Punkt_Objekt_Strecke_AttributeGroup_type = Punkt Objekt Strecke Attribute Group
+_UI_Punkt_Objekt_TOP_Kante_AttributeGroup_type = Punkt Objekt TOP Kante Attribute Group
+_UI_Richtungsbezug_TypeClass_type = Richtungsbezug Type Class
+_UI_Seitliche_Lage_TypeClass_type = Seitliche Lage Type Class
+_UI_Seitlicher_Abstand_TypeClass_type = Seitlicher Abstand Type Class
+_UI_Technischer_Platz_TypeClass_type = Technischer Platz Type Class
+_UI_Ur_Objekt_type = Ur Objekt
+_UI_Wirkrichtung_TypeClass_type = Wirkrichtung Type Class
+_UI_Zeit_Bearbeitungsvermerk_TypeClass_type = Zeit Bearbeitungsvermerk Type Class
+_UI_Abstand_ATO_Halt_Vor_EoA_TypeClass_type = Abstand ATO Halt Vor Eo AType Class
+_UI_ATO_Segment_Profile_type = ATO Segment Profile
+_UI_ATO_Segment_Profile_Bezeichnung_AttributeGroup_type = ATO Segment Profile Bezeichnung Attribute Group
+_UI_ATO_Timing_Point_type = ATO Timing Point
+_UI_ATO_Timing_Point_Allg_AttributeGroup_type = ATO Timing Point Allg Attribute Group
+_UI_ATO_Timing_Point_Bezeichnung_AttributeGroup_type = ATO Timing Point Bezeichnung Attribute Group
+_UI_ATO_TS_Instanz_type = ATO TS Instanz
+_UI_ATO_TS_Instanz_Adresse_AttributeGroup_type = ATO TS Instanz Adresse Attribute Group
+_UI_Bezeichnung_ATO_TP_TypeClass_type = Bezeichnung ATO TP Type Class
+_UI_Erreichungstoleranz_TypeClass_type = Erreichungstoleranz Type Class
+_UI_Haltetoleranz_TypeClass_type = Haltetoleranz Type Class
+_UI_NID_ATOTS_TypeClass_type = NID ATOTS Type Class
+_UI_NID_C_ATOTS_TypeClass_type = NID CATOTS Type Class
+_UI_NID_SP_TypeClass_type = NID SP Type Class
+_UI_NID_TP_TypeClass_type = NID TP Type Class
+_UI_AEA_Allg_AttributeGroup_type = AEA Allg Attribute Group
+_UI_AEA_Energieversorgung_AttributeGroup_type = AEA Energieversorgung Attribute Group
+_UI_AEA_GFK_IP_Adressblock_AttributeGroup_type = AEA GFK IP Adressblock Attribute Group
+_UI_Aussenelementansteuerung_type = Aussenelementansteuerung
+_UI_Aussenelementansteuerung_Art_TypeClass_type = Aussenelementansteuerung Art Type Class
+_UI_Aussenelementansteuerung_Bezeichnung_AttributeGroup_type = Aussenelementansteuerung Bezeichnung Attribute Group
+_UI_Bandbreite_TypeClass_type = Bandbreite Type Class
+_UI_Bauart_TypeClass_type = Bauart Type Class
+_UI_Bezeichnung_AEA_TypeClass_type = Bezeichnung AEA Type Class
+_UI_Bezeichnung_ESTW_ZE_TypeClass_type = Bezeichnung ESTW ZE Type Class
+_UI_Bezeichnung_Stellwerk_TypeClass_type = Bezeichnung Stellwerk Type Class
+_UI_Bezeichnung_TSO_TypeClass_type = Bezeichnung TSO Type Class
+_UI_Energieversorgung_Art_Ersatz_TypeClass_type = Energieversorgung Art Ersatz Type Class
+_UI_Energieversorgung_Art_TypeClass_type = Energieversorgung Art Type Class
+_UI_ESTW_ZE_Energieversorgung_AttributeGroup_type = ESTW ZE Energieversorgung Attribute Group
+_UI_ESTW_Zentraleinheit_type = ESTW Zentraleinheit
+_UI_ESTW_Zentraleinheit_Allg_AttributeGroup_type = ESTW Zentraleinheit Allg Attribute Group
+_UI_ESTW_Zentraleinheit_Bezeichnung_AttributeGroup_type = ESTW Zentraleinheit Bezeichnung Attribute Group
+_UI_GFK_Kategorie_TypeClass_type = GFK Kategorie Type Class
+_UI_Hersteller_TypeClass_type = Hersteller Type Class
+_UI_IP_Adressblock_Blau_TypeClass_type = IP Adressblock Blau Type Class
+_UI_IP_Adressblock_Blau_V4_TypeClass_type = IP Adressblock Blau V4 Type Class
+_UI_IP_Adressblock_Blau_V6_TypeClass_type = IP Adressblock Blau V6 Type Class
+_UI_IP_Adressblock_Grau_TypeClass_type = IP Adressblock Grau Type Class
+_UI_IP_Adressblock_Grau_V4_TypeClass_type = IP Adressblock Grau V4 Type Class
+_UI_IP_Adressblock_Grau_V6_TypeClass_type = IP Adressblock Grau V6 Type Class
+_UI_Medium_Art_TypeClass_type = Medium Art Type Class
+_UI_Netz_Art_TypeClass_type = Netz Art Type Class
+_UI_Regionalbereich_TypeClass_type = Regionalbereich Type Class
+_UI_Standort_Beschreibung_TypeClass_type = Standort Beschreibung Type Class
+_UI_Stell_Bereich_type = Stell Bereich
+_UI_Stellelement_type = Stellelement
+_UI_Technik_Art_TypeClass_type = Technik Art Type Class
+_UI_Technik_Beschreibung_TypeClass_type = Technik Beschreibung Type Class
+_UI_Technik_Standort_type = Technik Standort
+_UI_Technik_Standort_Bezeichnung_AttributeGroup_type = Technik Standort Bezeichnung Attribute Group
+_UI_TSO_IP_AB_Teilsystem_AttributeGroup_type = TSO IP AB Teilsystem Attribute Group
+_UI_TSO_IP_Adressblock_AttributeGroup_type = TSO IP Adressblock Attribute Group
+_UI_TSO_Teilsystem_Art_TypeClass_type = TSO Teilsystem Art Type Class
+_UI_Tueranschlag_TypeClass_type = Tueranschlag Type Class
+_UI_Uebertragungsweg_type = Uebertragungsweg
+_UI_Uebertragungsweg_Art_TypeClass_type = Uebertragungsweg Art Type Class
+_UI_Uebertragungsweg_Technik_AttributeGroup_type = Uebertragungsweg Technik Attribute Group
+_UI_Unterbringung_type = Unterbringung
+_UI_Unterbringung_Allg_AttributeGroup_type = Unterbringung Allg Attribute Group
+_UI_Unterbringung_Art_TypeClass_type = Unterbringung Art Type Class
+_UI_Unterbringung_Befestigung_TypeClass_type = Unterbringung Befestigung Type Class
+_UI_Unterbringung_Polygonzug_TypeClass_type = Unterbringung Polygonzug Type Class
+_UI_Zusatzinformation_Stellwerk_TypeClass_type = Zusatzinformation Stellwerk Type Class
+_UI_Bahnsteig_Anlage_type = Bahnsteig Anlage
+_UI_Bahnsteig_Anlage_Bezeichnung_AttributeGroup_type = Bahnsteig Anlage Bezeichnung Attribute Group
+_UI_Bahnsteig_Dach_type = Bahnsteig Dach
+_UI_Bahnsteig_Kante_type = Bahnsteig Kante
+_UI_Bahnsteig_Kante_Allg_AttributeGroup_type = Bahnsteig Kante Allg Attribute Group
+_UI_Bahnsteig_Kante_Bezeichnung_AttributeGroup_type = Bahnsteig Kante Bezeichnung Attribute Group
+_UI_Bahnsteig_Zugang_type = Bahnsteig Zugang
+_UI_Bahnsteig_Zugang_Allg_AttributeGroup_type = Bahnsteig Zugang Allg Attribute Group
+_UI_Bahnsteig_Zugang_Art_TypeClass_type = Bahnsteig Zugang Art Type Class
+_UI_Bezeichnung_Bahnsteig_Anlage_TypeClass_type = Bezeichnung Bahnsteig Anlage Type Class
+_UI_Bezeichnung_Bahnsteig_Kante_TypeClass_type = Bezeichnung Bahnsteig Kante Type Class
+_UI_Hauptzugang_TypeClass_type = Hauptzugang Type Class
+_UI_Lage_Zum_Gleis_TypeClass_type = Lage Zum Gleis Type Class
+_UI_Systemhoehe_TypeClass_type = Systemhoehe Type Class
+_UI_Abstand_Bes_Langer_Einfahrweg_TypeClass_type = Abstand Bes Langer Einfahrweg Type Class
+_UI_Abstand_Datenpunkt_EH_EM_Folgesignal_TypeClass_type = Abstand Datenpunkt EH EM Folgesignal Type Class
+_UI_Abstand_Datenpunkt_EP_TPI_TypeClass_type = Abstand Datenpunkt EP TPI Type Class
+_UI_Abstand_Datenpunkt_TPI_Folgesignal_TypeClass_type = Abstand Datenpunkt TPI Folgesignal Type Class
+_UI_Abstand_Einmesspunkt_TypeClass_type = Abstand Einmesspunkt Type Class
+_UI_Abstand_Grenze_Bereich_C_TypeClass_type = Abstand Grenze Bereich CType Class
+_UI_Abstand_Reduziert_TypeClass_type = Abstand Reduziert Type Class
+_UI_Anlagenteil_Sonstige_TypeClass_type = Anlagenteil Sonstige Type Class
+_UI_Anordnung_Im_DP_TypeClass_type = Anordnung Im DP Type Class
+_UI_Anwendung_ESG_TypeClass_type = Anwendung ESG Type Class
+_UI_Anwendung_GNT_TypeClass_type = Anwendung GNT Type Class
+_UI_Anwendung_Sonst_TypeClass_type = Anwendung Sonst Type Class
+_UI_Anwendungssystem_TypeClass_type = Anwendungssystem Type Class
+_UI_Anzahl_Voll_LEU_Kalkuliert_TypeClass_type = Anzahl Voll LEU Kalkuliert Type Class
+_UI_Anzeigetext_TypeClass_type = Anzeigetext Type Class
+_UI_Art_Bedingung_TypeClass_type = Art Bedingung Type Class
+_UI_Ausgang_Nr_TypeClass_type = Ausgang Nr Type Class
+_UI_Ausrichtung_TypeClass_type = Ausrichtung Type Class
+_UI_Ausstieg_ETCS_Sperre_TypeClass_type = Ausstieg ETCS Sperre Type Class
+_UI_Balise_type = Balise
+_UI_Balise_Allg_AttributeGroup_type = Balise Allg Attribute Group
+_UI_Balise_Geraetestand_TypeClass_type = Balise Geraetestand Type Class
+_UI_Balisenhalter_TypeClass_type = Balisenhalter Type Class
+_UI_Baseline_System_Version_TypeClass_type = Baseline System Version Type Class
+_UI_Bedingung_Besondere_AttributeGroup_type = Bedingung Besondere Attribute Group
+_UI_Bedingung_PZB_AttributeGroup_type = Bedingung PZB Attribute Group
+_UI_Bedingung_Signal_AttributeGroup_type = Bedingung Signal Attribute Group
+_UI_Bedingung_Sonstige_AttributeGroup_type = Bedingung Sonstige Attribute Group
+_UI_Bedingung_Weiche_AttributeGroup_type = Bedingung Weiche Attribute Group
+_UI_Bedingung_Weichenlage_TypeClass_type = Bedingung Weichenlage Type Class
+_UI_Bez_Strecke_BTS_1_TypeClass_type = Bez Strecke BTS 1Type Class
+_UI_Bez_Strecke_BTS_2_TypeClass_type = Bez Strecke BTS 2Type Class
+_UI_Bez_Strecke_BTS_3_TypeClass_type = Bez Strecke BTS 3Type Class
+_UI_Bez_ZUB_Bereichsgrenze_TypeClass_type = Bez ZUB Bereichsgrenze Type Class
+_UI_Bezeichnung_ETCS_Kante_TypeClass_type = Bezeichnung ETCS Kante Type Class
+_UI_Bezeichnung_LEU_Anlage_TypeClass_type = Bezeichnung LEU Anlage Type Class
+_UI_Bezeichnung_RBC_TypeClass_type = Bezeichnung RBC Type Class
+_UI_Bezeichnung_ZUB_SE_TypeClass_type = Bezeichnung ZUB SE Type Class
+_UI_Bezeichnung_ZUB_TypeClass_type = Bezeichnung ZUB Type Class
+_UI_Bgrenze_Nach_ESG_Bed_Ausstieg_AttributeGroup_type = Bgrenze Nach ESG Bed Ausstieg Attribute Group
+_UI_Bgrenze_Nach_L2_Bed_Einstieg_AttributeGroup_type = Bgrenze Nach L2 Bed Einstieg Attribute Group
+_UI_Bgrenze_Nach_LZB_Bed_Einstieg_AttributeGroup_type = Bgrenze Nach LZB Bed Einstieg Attribute Group
+_UI_Bgrenze_Nach_Ohne_Bed_Einstieg_AttributeGroup_type = Bgrenze Nach Ohne Bed Einstieg Attribute Group
+_UI_Bgrenze_Nach_PZB_Bed_Einstieg_AttributeGroup_type = Bgrenze Nach PZB Bed Einstieg Attribute Group
+_UI_Bgrenze_Nach_ZBS_Bed_Einstieg_AttributeGroup_type = Bgrenze Nach ZBS Bed Einstieg Attribute Group
+_UI_Bgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_type = Bgrenze RBC Wechsel BTS Kette Attribute Group
+_UI_Binaerdaten_type = Binaerdaten
+_UI_Binaerdaten_Datei_AttributeGroup_type = Binaerdaten Datei Attribute Group
+_UI_D_LEVELTR_TypeClass_type = DLEVELTR Type Class
+_UI_Dateityp_Binaerdatei_TypeClass_type = Dateityp Binaerdatei Type Class
+_UI_Daten_TypeClass_type = Daten Type Class
+_UI_Datenpunkt_type = Datenpunkt
+_UI_Datenpunkt_Allg_AttributeGroup_type = Datenpunkt Allg Attribute Group
+_UI_Datenpunkt_Beschreibung_TypeClass_type = Datenpunkt Beschreibung Type Class
+_UI_Datenpunkt_Einmesspunkt_AttributeGroup_type = Datenpunkt Einmesspunkt Attribute Group
+_UI_Datenpunkt_Laenge_TypeClass_type = Datenpunkt Laenge Type Class
+_UI_Datenpunkt_Link_type = Datenpunkt Link
+_UI_Delta_VGES_TypeClass_type = Delta VGES Type Class
+_UI_Delta_VLES_TypeClass_type = Delta VLES Type Class
+_UI_Delta_VZES_TypeClass_type = Delta VZES Type Class
+_UI_DP_ATO_TypeClass_type = DP ATO Type Class
+_UI_DP_Bezug_Funktional_Art_TypeClass_type = DP Bezug Funktional Art Type Class
+_UI_DP_Bezug_Funktional_AttributeGroup_type = DP Bezug Funktional Attribute Group
+_UI_DP_ETCS_Adresse_AttributeGroup_type = DP ETCS Adresse Attribute Group
+_UI_DP_Link_Art_TypeClass_type = DP Link Art Type Class
+_UI_DP_Telegramm_AttributeGroup_type = DP Telegramm Attribute Group
+_UI_DP_Telegramm_ESG_AttributeGroup_type = DP Telegramm ESG Attribute Group
+_UI_DP_Typ_Art_TypeClass_type = DP Typ Art Type Class
+_UI_DP_Typ_AttributeGroup_type = DP Typ Attribute Group
+_UI_DP_Typ_ESG_TypeClass_type = DP Typ ESG Type Class
+_UI_DP_Typ_ETCS_TypeClass_type = DP Typ ETCS Type Class
+_UI_DP_Typ_GESG_AttributeGroup_type = DP Typ GESG Attribute Group
+_UI_DP_Typ_GETCS_AttributeGroup_type = DP Typ GETCS Attribute Group
+_UI_DP_Typ_GGNT_AttributeGroup_type = DP Typ GGNT Attribute Group
+_UI_DP_Typ_GNT_TypeClass_type = DP Typ GNT Type Class
+_UI_DP_Typ_GSonst_AttributeGroup_type = DP Typ GSonst Attribute Group
+_UI_DP_Typ_GTrans_AttributeGroup_type = DP Typ GTrans Attribute Group
+_UI_DP_Typ_GZBS_AttributeGroup_type = DP Typ GZBS Attribute Group
+_UI_DP_Typ_Sonst_TypeClass_type = DP Typ Sonst Type Class
+_UI_DP_Typ_Trans_TypeClass_type = DP Typ Trans Type Class
+_UI_DP_Typ_V_La_TypeClass_type = DP Typ VLa Type Class
+_UI_DP_Typ_ZBS_TypeClass_type = DP Typ ZBS Type Class
+_UI_DP_Verlinkt_TypeClass_type = DP Verlinkt Type Class
+_UI_Dunkelschaltanstoss_TypeClass_type = Dunkelschaltanstoss Type Class
+_UI_DWeg_Intervall_200_TypeClass_type = DWeg Intervall 200 Type Class
+_UI_DWeg_Intervall_50_200_TypeClass_type = DWeg Intervall 50 200 Type Class
+_UI_DWeg_Intervall_50_TypeClass_type = DWeg Intervall 50 Type Class
+_UI_Eingang_Gepuffert_TypeClass_type = Eingang Gepuffert Type Class
+_UI_Einstieg_Erlaubt_TypeClass_type = Einstieg Erlaubt Type Class
+_UI_Einstieg_Ohne_Rueckw_Sig_TypeClass_type = Einstieg Ohne Rueckw Sig Type Class
+_UI_Einzeldatei_Art_TypeClass_type = Einzeldatei Art Type Class
+_UI_Energie_Eingang_Art_TypeClass_type = Energie Eingang Art Type Class
+_UI_ESG_Ind_Erlaeuterung_TypeClass_type = ESG Ind Erlaeuterung Type Class
+_UI_ESG_Ind_Parameter_TypeClass_type = ESG Ind Parameter Type Class
+_UI_ESG_Ind_Parameterwert_TypeClass_type = ESG Ind Parameterwert Type Class
+_UI_ESG_Individuelle_Merkmale_AttributeGroup_type = ESG Individuelle Merkmale Attribute Group
+_UI_ESG_Spezifische_Merkmale_AttributeGroup_type = ESG Spezifische Merkmale Attribute Group
+_UI_ETCS_Adresse_AttributeGroup_type = ETCS Adresse Attribute Group
+_UI_ETCS_Gefahrpunktabstand_Abweichend_TypeClass_type = ETCS Gefahrpunktabstand Abweichend Type Class
+_UI_ETCS_Kante_type = ETCS Kante
+_UI_ETCS_Kante_Bezeichnung_AttributeGroup_type = ETCS Kante Bezeichnung Attribute Group
+_UI_ETCS_Knoten_type = ETCS Knoten
+_UI_ETCS_Knoten_Art_Sonstige_TypeClass_type = ETCS Knoten Art Sonstige Type Class
+_UI_ETCS_Paketnummer_TypeClass_type = ETCS Paketnummer Type Class
+_UI_ETCS_Par_Erlaeuterung_TypeClass_type = ETCS Par Erlaeuterung Type Class
+_UI_ETCS_Parametername_TypeClass_type = ETCS Parametername Type Class
+_UI_ETCS_Parameterwert_TypeClass_type = ETCS Parameterwert Type Class
+_UI_ETCS_Richtungsanzeige_type = ETCS Richtungsanzeige
+_UI_ETCS_Signal_type = ETCS Signal
+_UI_ETCS_Signal_Allg_AttributeGroup_type = ETCS Signal Allg Attribute Group
+_UI_ETCS_Signal_DWeg_AttributeGroup_type = ETCS Signal DWeg Attribute Group
+_UI_ETCS_Signal_TBV_AttributeGroup_type = ETCS Signal TBV Attribute Group
+_UI_ETCS_System_Version_TypeClass_type = ETCS System Version Type Class
+_UI_ETCS_W_Kr_type = ETCS WKr
+_UI_ETCS_W_Kr_MUKA_AttributeGroup_type = ETCS WKr MUKA Attribute Group
+_UI_EV_Modul_type = EV Modul
+_UI_EV_Modul_Art_TypeClass_type = EV Modul Art Type Class
+_UI_EV_Modul_Ausgang_AttributeGroup_type = EV Modul Ausgang Attribute Group
+_UI_EV_Modul_Eingang_AttributeGroup_type = EV Modul Eingang Attribute Group
+_UI_EV_Modul_Physisch_AttributeGroup_type = EV Modul Physisch Attribute Group
+_UI_EV_Modul_Typ_TypeClass_type = EV Modul Typ Type Class
+_UI_EV_Modul_Virtuell_AttributeGroup_type = EV Modul Virtuell Attribute Group
+_UI_Fabrikat_TypeClass_type = Fabrikat Type Class
+_UI_Fachtelegramm_type = Fachtelegramm
+_UI_FT_Anschaltbedingung_type = FT Anschaltbedingung
+_UI_FT_ESG_Merkmale_AttributeGroup_type = FT ESG Merkmale Attribute Group
+_UI_FT_ESG_Subtyp_TypeClass_type = FT ESG Subtyp Type Class
+_UI_FT_ESG_Typ_TypeClass_type = FT ESG Typ Type Class
+_UI_FT_ETCS_L2_Merkmale_AttributeGroup_type = FT ETCS L2 Merkmale Attribute Group
+_UI_FT_ETCS_L2_Typ_TypeClass_type = FT ETCS L2 Typ Type Class
+_UI_FT_ETCS_Trans_Merkmale_AttributeGroup_type = FT ETCS Trans Merkmale Attribute Group
+_UI_FT_ETCS_Trans_Paket_41_AttributeGroup_type = FT ETCS Trans Paket 41 Attribute Group
+_UI_FT_ETCS_Trans_Paket_N_AttributeGroup_type = FT ETCS Trans Paket NAttribute Group
+_UI_FT_Fahrweg_Teil_type = FT Fahrweg Teil
+_UI_FT_Fahrweg_Teil_Allg_AttributeGroup_type = FT Fahrweg Teil Allg Attribute Group
+_UI_FT_Fahrweg_Teile_AttributeGroup_type = FT Fahrweg Teile Attribute Group
+_UI_FT_GNT_Merkmale_AttributeGroup_type = FT GNT Merkmale Attribute Group
+_UI_FT_GNT_Punktart_TypeClass_type = FT GNT Punktart Type Class
+_UI_FT_Hinweis_Funktion_TypeClass_type = FT Hinweis Funktion Type Class
+_UI_FT_ZBS_Merkmale_AttributeGroup_type = FT ZBS Merkmale Attribute Group
+_UI_FT_ZBS_Merkmale_La_AttributeGroup_type = FT ZBS Merkmale La Attribute Group
+_UI_FT_ZBS_Typ_TypeClass_type = FT ZBS Typ Type Class
+_UI_FW_Teil_Nummer_TypeClass_type = FW Teil Nummer Type Class
+_UI_Gruppen_ID_TypeClass_type = Gruppen ID Type Class
+_UI_Harter_Ausstieg_Aus_L2_TypeClass_type = Harter Ausstieg Aus L2 Type Class
+_UI_Hinweis_Balisenbefestigung_TypeClass_type = Hinweis Balisenbefestigung Type Class
+_UI_Individualisierung_Weitere_TypeClass_type = Individualisierung Weitere Type Class
+_UI_Ist_Befahren_TypeClass_type = Ist Befahren Type Class
+_UI_Km_BTS_1_TypeClass_type = Km BTS 1Type Class
+_UI_Km_BTS_2_TypeClass_type = Km BTS 2Type Class
+_UI_Km_BTS_3_TypeClass_type = Km BTS 3Type Class
+_UI_Knoten_Auf_TOP_Kante_AttributeGroup_type = Knoten Auf TOP Kante Attribute Group
+_UI_Konfigurationskennung_TypeClass_type = Konfigurationskennung Type Class
+_UI_L_ACKLEVELTR_TypeClass_type = LACKLEVELTR Type Class
+_UI_Laenge_1_TypeClass_type = Laenge 1Type Class
+_UI_Laenge_Ausfuehrungsbereich_TypeClass_type = Laenge Ausfuehrungsbereich Type Class
+_UI_Laenge_Gestufte_V_Signalisierung_TypeClass_type = Laenge Gestufte VSignalisierung Type Class
+_UI_Laenge_Soll_Mind_150_TypeClass_type = Laenge Soll Mind 150 Type Class
+_UI_Leistungsbedarf_TypeClass_type = Leistungsbedarf Type Class
+_UI_LEU_Anlage_type = LEU Anlage
+_UI_LEU_Anlage_Allg_AttributeGroup_type = LEU Anlage Allg Attribute Group
+_UI_LEU_Anlage_Art_TypeClass_type = LEU Anlage Art Type Class
+_UI_LEU_Anlage_Bezeichnung_AttributeGroup_type = LEU Anlage Bezeichnung Attribute Group
+_UI_LEU_Ausgang_Nr_TypeClass_type = LEU Ausgang Nr Type Class
+_UI_LEU_Modul_type = LEU Modul
+_UI_LEU_Modul_Allg_AttributeGroup_type = LEU Modul Allg Attribute Group
+_UI_LEU_Modul_Art_TypeClass_type = LEU Modul Art Type Class
+_UI_LEU_Modul_Ausgang_AttributeGroup_type = LEU Modul Ausgang Attribute Group
+_UI_LEU_Modul_Bezeichnung_AttributeGroup_type = LEU Modul Bezeichnung Attribute Group
+_UI_LEU_Modul_Geraetestand_TypeClass_type = LEU Modul Geraetestand Type Class
+_UI_LEU_Modul_Typ_TypeClass_type = LEU Modul Typ Type Class
+_UI_LEU_Schaltkasten_type = LEU Schaltkasten
+_UI_LEU_Schaltkasten_Bezeichnung_AttributeGroup_type = LEU Schaltkasten Bezeichnung Attribute Group
+_UI_LEU_Schaltkasten_Energie_AttributeGroup_type = LEU Schaltkasten Energie Attribute Group
+_UI_LEU_Schaltkasten_Position_AttributeGroup_type = LEU Schaltkasten Position Attribute Group
+_UI_LEU_Schaltkasten_Typ_TypeClass_type = LEU Schaltkasten Typ Type Class
+_UI_LEU_Steuernde_AttributeGroup_type = LEU Steuernde Attribute Group
+_UI_Lfd_Nr_Am_Bezugspunkt_TypeClass_type = Lfd Nr Am Bezugspunkt Type Class
+_UI_Link_Distanz_TypeClass_type = Link Distanz Type Class
+_UI_LLA_TypeClass_type = LLA Type Class
+_UI_LM_G_TypeClass_type = LM GType Class
+_UI_LT_Binaerdatei_Hilfe_AttributeGroup_type = LT Binaerdatei Hilfe Attribute Group
+_UI_LT_Binaerdaten_AttributeGroup_type = LT Binaerdaten Attribute Group
+_UI_Luft_Telegramm_type = Luft Telegramm
+_UI_M_LEVELTR_TypeClass_type = MLEVELTR Type Class
+_UI_Massgebende_Neig_1_TypeClass_type = Massgebende Neig 1Type Class
+_UI_Massgebende_Neig_Schutzstrecke_TypeClass_type = Massgebende Neig Schutzstrecke Type Class
+_UI_Massgebende_Neigung_Mind_150_TypeClass_type = Massgebende Neigung Mind 150 Type Class
+_UI_Massgebende_Neigung_Mind_Sig_150_TypeClass_type = Massgebende Neigung Mind Sig 150 Type Class
+_UI_Massgebende_Neigung_Mind_Sig_TypeClass_type = Massgebende Neigung Mind Sig Type Class
+_UI_Mastschild_TypeClass_type = Mastschild Type Class
+_UI_Max_Leistung_TypeClass_type = Max Leistung Type Class
+_UI_Max_Unterbrechungszeit_TypeClass_type = Max Unterbrechungszeit Type Class
+_UI_Metallteil_AttributeGroup_type = Metallteil Attribute Group
+_UI_Metallteil_Kategorie_TypeClass_type = Metallteil Kategorie Type Class
+_UI_Metallteil_Laenge_TypeClass_type = Metallteil Laenge Type Class
+_UI_Modulnummer_TypeClass_type = Modulnummer Type Class
+_UI_Montageabweichung_TypeClass_type = Montageabweichung Type Class
+_UI_Neigung_TypeClass_type = Neigung Type Class
+_UI_Nennleistung_TypeClass_type = Nennleistung Type Class
+_UI_NID_BG_TypeClass_type = NID BG Type Class
+_UI_NID_C_TypeClass_type = NID CType Class
+_UI_NID_RBC_TypeClass_type = NID RBC Type Class
+_UI_NID_STM_TypeClass_type = NID STM Type Class
+_UI_NID_TSR_TypeClass_type = NID TSR Type Class
+_UI_Nummer_Schaltkasten_TypeClass_type = Nummer Schaltkasten Type Class
+_UI_Oberstrombegrenzung_Gueterzug_TypeClass_type = Oberstrombegrenzung Gueterzug Type Class
+_UI_Oberstrombegrenzung_Reisezug_TypeClass_type = Oberstrombegrenzung Reisezug Type Class
+_UI_Port_Nr_Ausg_Physisch_TypeClass_type = Port Nr Ausg Physisch Type Class
+_UI_Position_Sonstige_TypeClass_type = Position Sonstige Type Class
+_UI_Position_TypeClass_type = Position Type Class
+_UI_Primaerquelle_TypeClass_type = Primaerquelle Type Class
+_UI_Prioritaet_TypeClass_type = Prioritaet Type Class
+_UI_Prog_Datei_Einzel_AttributeGroup_type = Prog Datei Einzel Attribute Group
+_UI_Prog_Datei_Gruppe_type = Prog Datei Gruppe
+_UI_Projektierungsfall_TypeClass_type = Projektierungsfall Type Class
+_UI_RBC_type = RBC
+_UI_RBC_Allg_AttributeGroup_type = RBC Allg Attribute Group
+_UI_RBC_Bezeichnung_AttributeGroup_type = RBC Bezeichnung Attribute Group
+_UI_RBC_ETCS_System_Version_TypeClass_type = RBC ETCS System Version Type Class
+_UI_RBC_SRS_Version_TypeClass_type = RBC SRS Version Type Class
+_UI_Rekursion_2_Nr_TypeClass_type = Rekursion 2Nr Type Class
+_UI_Rekursion_Nr_TypeClass_type = Rekursion Nr Type Class
+_UI_Rufnummer_TypeClass_type = Rufnummer Type Class
+_UI_SBE_TypeClass_type = SBE Type Class
+_UI_Schutzstrecke_Erforderlich_TypeClass_type = Schutzstrecke Erforderlich Type Class
+_UI_Schutzstrecke_Vorhanden_TypeClass_type = Schutzstrecke Vorhanden Type Class
+_UI_Solllaenge_Mind_Sig_150_TypeClass_type = Solllaenge Mind Sig 150 Type Class
+_UI_Solllaenge_Mind_Sig_TypeClass_type = Solllaenge Mind Sig Type Class
+_UI_Sonstige_Standortangabe_TypeClass_type = Sonstige Standortangabe Type Class
+_UI_Spannung_Art_TypeClass_type = Spannung Art Type Class
+_UI_Spannung_Toleranz_Obere_TypeClass_type = Spannung Toleranz Obere Type Class
+_UI_Spannung_Toleranz_Untere_TypeClass_type = Spannung Toleranz Untere Type Class
+_UI_SRS_Version_TypeClass_type = SRS Version Type Class
+_UI_Standortangabe_Balisenschild_TypeClass_type = Standortangabe Balisenschild Type Class
+_UI_Start_W_Element_AttributeGroup_type = Start WElement Attribute Group
+_UI_STZ_TypeClass_type = STZ Type Class
+_UI_System_Vor_Grenze_Besonders_TypeClass_type = System Vor Grenze Besonders Type Class
+_UI_System_Vor_Grenze_TypeClass_type = System Vor Grenze Type Class
+_UI_TBV_Meldepunkt_TypeClass_type = TBV Meldepunkt Type Class
+_UI_TBV_Tunnelbereich_Laenge_TypeClass_type = TBV Tunnelbereich Laenge Type Class
+_UI_TBV_Tunnelsignal_TypeClass_type = TBV Tunnelsignal Type Class
+_UI_Telegramm_Index_TypeClass_type = Telegramm Index Type Class
+_UI_Telegrammnummer_TypeClass_type = Telegrammnummer Type Class
+_UI_Text_Bedingung_TypeClass_type = Text Bedingung Type Class
+_UI_Textmeldung_TypeClass_type = Textmeldung Type Class
+_UI_Ueberbrueckung_EV_Unterbrechung_TypeClass_type = Ueberbrueckung EV Unterbrechung Type Class
+_UI_Ueberwachung_Laenge_TypeClass_type = Ueberwachung Laenge Type Class
+_UI_Umfahrstrasse_TypeClass_type = Umfahrstrasse Type Class
+_UI_Untergruppen_ID_TypeClass_type = Untergruppen ID Type Class
+_UI_V_Befehl_R_TypeClass_type = VBefehl RType Class
+_UI_V_Befehl_Z_TypeClass_type = VBefehl ZType Class
+_UI_V_Frei_TypeClass_type = VFrei Type Class
+_UI_V_Start_TypeClass_type = VStart Type Class
+_UI_V_Ziel_TypeClass_type = VZiel Type Class
+_UI_V_Zul_Strecke_TypeClass_type = VZul Strecke Type Class
+_UI_VBC_Kennung_TypeClass_type = VBC Kennung Type Class
+_UI_VBC_NID_C_TypeClass_type = VBC NID CType Class
+_UI_VBC_Setzen_TypeClass_type = VBC Setzen Type Class
+_UI_VBC_Timer_TypeClass_type = VBC Timer Type Class
+_UI_Verbot_Anhalten_TypeClass_type = Verbot Anhalten Type Class
+_UI_Verbot_Regenerative_Bremse_TypeClass_type = Verbot Regenerative Bremse Type Class
+_UI_Verbot_WB_Art_TypeClass_type = Verbot WB Art Type Class
+_UI_Verkuerzter_Abstand_TypeClass_type = Verkuerzter Abstand Type Class
+_UI_Verwendung_Als_Rueckfall_TypeClass_type = Verwendung Als Rueckfall Type Class
+_UI_Verwendung_Hilfe_TypeClass_type = Verwendung Hilfe Type Class
+_UI_Verwendung_TypeClass_type = Verwendung Type Class
+_UI_VGR_1_TypeClass_type = VGR 1Type Class
+_UI_VGR_2_TypeClass_type = VGR 2Type Class
+_UI_VGR_TypeClass_type = VGR Type Class
+_UI_VLA_TypeClass_type = VLA Type Class
+_UI_Vorsignalabstand_TypeClass_type = Vorsignalabstand Type Class
+_UI_VZ_TypeClass_type = VZ Type Class
+_UI_W_Anschluss_TypeClass_type = WAnschluss Type Class
+_UI_W_Lage_TypeClass_type = WLage Type Class
+_UI_Wirkrichtung_In_Datenpunkt_TypeClass_type = Wirkrichtung In Datenpunkt Type Class
+_UI_Wirksam_TypeClass_type = Wirksam Type Class
+_UI_ZBS_La_Bereich_Distanz_TypeClass_type = ZBS La Bereich Distanz Type Class
+_UI_ZBS_La_Bereich_Geschwindigkeit_TypeClass_type = ZBS La Bereich Geschwindigkeit Type Class
+_UI_ZBS_La_Bereich_Laenge_TypeClass_type = ZBS La Bereich Laenge Type Class
+_UI_ZBS_La_Bereich_Neigung_TypeClass_type = ZBS La Bereich Neigung Type Class
+_UI_ZBS_Merkmale_AttributeGroup_type = ZBS Merkmale Attribute Group
+_UI_ZBS_Reaktion_TypeClass_type = ZBS Reaktion Type Class
+_UI_ZBS_Schutzstrecke_type = ZBS Schutzstrecke
+_UI_ZBS_Schutzstrecke_Allg_AttributeGroup_type = ZBS Schutzstrecke Allg Attribute Group
+_UI_ZBS_Signal_type = ZBS Signal
+_UI_ZBS_Signal_Signalabstand_AttributeGroup_type = ZBS Signal Signalabstand Attribute Group
+_UI_Ziel_DP_Ausrichtung_TypeClass_type = Ziel DP Ausrichtung Type Class
+_UI_Ziel_Ist_Fahrwegende_TypeClass_type = Ziel Ist Fahrwegende Type Class
+_UI_Ziel_W_Element_AttributeGroup_type = Ziel WElement Attribute Group
+_UI_ZLA_TypeClass_type = ZLA Type Class
+_UI_ZUB_Bereichsgrenze_type = ZUB Bereichsgrenze
+_UI_ZUB_Bereichsgrenze_Allg_AttributeGroup_type = ZUB Bereichsgrenze Allg Attribute Group
+_UI_ZUB_Bereichsgrenze_Bezeichnung_AttributeGroup_type = ZUB Bereichsgrenze Bezeichnung Attribute Group
+_UI_ZUB_Bereichsgrenze_Nach_ESG_AttributeGroup_type = ZUB Bereichsgrenze Nach ESG Attribute Group
+_UI_ZUB_Bereichsgrenze_Nach_GNT_TypeClass_type = ZUB Bereichsgrenze Nach GNT Type Class
+_UI_ZUB_Bereichsgrenze_Nach_L2_AttributeGroup_type = ZUB Bereichsgrenze Nach L2 Attribute Group
+_UI_ZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_type = ZUB Bereichsgrenze Nach L2 Von ESG Attribute Group
+_UI_ZUB_Bereichsgrenze_Nach_LZB_AttributeGroup_type = ZUB Bereichsgrenze Nach LZB Attribute Group
+_UI_ZUB_Bereichsgrenze_Nach_Ohne_AttributeGroup_type = ZUB Bereichsgrenze Nach Ohne Attribute Group
+_UI_ZUB_Bereichsgrenze_Nach_PZB_AttributeGroup_type = ZUB Bereichsgrenze Nach PZB Attribute Group
+_UI_ZUB_Bereichsgrenze_Nach_Sonstige_AttributeGroup_type = ZUB Bereichsgrenze Nach Sonstige Attribute Group
+_UI_ZUB_Bereichsgrenze_Nach_ZBS_AttributeGroup_type = ZUB Bereichsgrenze Nach ZBS Attribute Group
+_UI_ZUB_Bgrenze_RBC_Wechsel_AttributeGroup_type = ZUB Bgrenze RBC Wechsel Attribute Group
+_UI_ZUB_SE_Ausruestung_AttributeGroup_type = ZUB SE Ausruestung Attribute Group
+_UI_ZUB_Streckeneigenschaft_type = ZUB Streckeneigenschaft
+_UI_ZUB_Streckeneigenschaft_Bezeichnung_AttributeGroup_type = ZUB Streckeneigenschaft Bezeichnung Attribute Group
+_UI_A_Wert_TypeClass_type = AWert Type Class
+_UI_Anbindung_IB2_TypeClass_type = Anbindung IB2 Type Class
+_UI_Anbindung_IB3_TypeClass_type = Anbindung IB3 Type Class
+_UI_B_Wert_TypeClass_type = BWert Type Class
+_UI_Bedien_Anrueckabschnitt_type = Bedien Anrueckabschnitt
+_UI_Bedien_Anrueckabschnitt_Bezeichnung_AttributeGroup_type = Bedien Anrueckabschnitt Bezeichnung Attribute Group
+_UI_Bedien_Anzeige_Element_type = Bedien Anzeige Element
+_UI_Bedien_Anzeige_Element_Allg_AttributeGroup_type = Bedien Anzeige Element Allg Attribute Group
+_UI_Bedien_Anzeige_Element_Bezeichnung_AttributeGroup_type = Bedien Anzeige Element Bezeichnung Attribute Group
+_UI_Bedien_Bezirk_type = Bedien Bezirk
+_UI_Bedien_Bezirk_Adressformel_AttributeGroup_type = Bedien Bezirk Adressformel Attribute Group
+_UI_Bedien_Bezirk_Allg_AttributeGroup_type = Bedien Bezirk Allg Attribute Group
+_UI_Bedien_Bezirk_Anhaenge_AttributeGroup_type = Bedien Bezirk Anhaenge Attribute Group
+_UI_Bedien_Einricht_Bauart_TypeClass_type = Bedien Einricht Bauart Type Class
+_UI_Bedien_Einricht_Oertl_Bez_TypeClass_type = Bedien Einricht Oertl Bez Type Class
+_UI_Bedien_Einricht_Oertlich_Allg_AttributeGroup_type = Bedien Einricht Oertlich Allg Attribute Group
+_UI_Bedien_Einrichtung_Oertlich_type = Bedien Einrichtung Oertlich
+_UI_Bedien_Einrichtung_Oertlich_Bezeichnung_AttributeGroup_type = Bedien Einrichtung Oertlich Bezeichnung Attribute Group
+_UI_Bedien_GBT_type = Bedien GBT
+_UI_Bedien_GBT_Allg_AttributeGroup_type = Bedien GBT Allg Attribute Group
+_UI_Bedien_Oberflaeche_type = Bedien Oberflaeche
+_UI_Bedien_Oberflaeche_Anhaenge_AttributeGroup_type = Bedien Oberflaeche Anhaenge Attribute Group
+_UI_Bedien_Oberflaeche_Bild_type = Bedien Oberflaeche Bild
+_UI_Bedien_Oberflaeche_Bild_Allg_AttributeGroup_type = Bedien Oberflaeche Bild Allg Attribute Group
+_UI_Bedien_Oertlichkeit_type = Bedien Oertlichkeit
+_UI_Bedien_Oertlichkeit_Kennzahlen_AttributeGroup_type = Bedien Oertlichkeit Kennzahlen Attribute Group
+_UI_Bedien_Platz_type = Bedien Platz
+_UI_Bedien_Platz_Allg_AttributeGroup_type = Bedien Platz Allg Attribute Group
+_UI_Bedien_Platz_Art_TypeClass_type = Bedien Platz Art Type Class
+_UI_Bedien_Standort_type = Bedien Standort
+_UI_Bedien_Standort_Bezeichnung_AttributeGroup_type = Bedien Standort Bezeichnung Attribute Group
+_UI_Bedien_Zentrale_type = Bedien Zentrale
+_UI_Bedien_Zentrale_Bezeichnung_AttributeGroup_type = Bedien Zentrale Bezeichnung Attribute Group
+_UI_Bedienplatzbezeichnung_TypeClass_type = Bedienplatzbezeichnung Type Class
+_UI_Bedienplatznummer_TypeClass_type = Bedienplatznummer Type Class
+_UI_Bedienraumnummer_TypeClass_type = Bedienraumnummer Type Class
+_UI_Betriebsstellenbezeichner_TypeClass_type = Betriebsstellenbezeichner Type Class
+_UI_Bez_Bed_Anrueckabschnitt_TypeClass_type = Bez Bed Anrueckabschnitt Type Class
+_UI_Bez_Bed_Anzeige_Element_TypeClass_type = Bez Bed Anzeige Element Type Class
+_UI_Bez_Bed_Zentrale_TypeClass_type = Bez Bed Zentrale Type Class
+_UI_Bezeichnung_BSO_TypeClass_type = Bezeichnung BSO Type Class
+_UI_BSO_IP_AB_Teilsystem_AttributeGroup_type = BSO IP AB Teilsystem Attribute Group
+_UI_BSO_IP_Adressblock_AttributeGroup_type = BSO IP Adressblock Attribute Group
+_UI_BSO_Teilsystem_Art_TypeClass_type = BSO Teilsystem Art Type Class
+_UI_C_Wert_TypeClass_type = CWert Type Class
+_UI_DD_Wert_TypeClass_type = DD Wert Type Class
+_UI_Hupe_Anschaltzeit_TypeClass_type = Hupe Anschaltzeit Type Class
+_UI_Melder_TypeClass_type = Melder Type Class
+_UI_Oberflaeche_Bildart_TypeClass_type = Oberflaeche Bildart Type Class
+_UI_Oberflaeche_Zustaendigkeit_TypeClass_type = Oberflaeche Zustaendigkeit Type Class
+_UI_Rueckschauzeit_TypeClass_type = Rueckschauzeit Type Class
+_UI_Schalter_TypeClass_type = Schalter Type Class
+_UI_Schrankreihe_TypeClass_type = Schrankreihe Type Class
+_UI_Steuerbezirksname_TypeClass_type = Steuerbezirksname Type Class
+_UI_Steuerbezirksnummer_TypeClass_type = Steuerbezirksnummer Type Class
+_UI_Taste_TypeClass_type = Taste Type Class
+_UI_Vorschauzeit_TypeClass_type = Vorschauzeit Type Class
+_UI_X_Wert_TypeClass_type = XWert Type Class
+_UI_Y_Wert_TypeClass_type = YWert Type Class
+_UI_YY_Wert_TypeClass_type = YY Wert Type Class
+_UI_Auto_Erlaubnisholen_TypeClass_type = Auto Erlaubnisholen Type Class
+_UI_Auto_Erlaubnisruecklauf_TypeClass_type = Auto Erlaubnisruecklauf Type Class
+_UI_Betriebsfuehrung_TypeClass_type = Betriebsfuehrung Type Class
+_UI_Block_Anlage_type = Block Anlage
+_UI_Block_Anlage_Allg_AttributeGroup_type = Block Anlage Allg Attribute Group
+_UI_Block_Bauform_TypeClass_type = Block Bauform Type Class
+_UI_Block_Element_type = Block Element
+_UI_Block_Element_Allg_AttributeGroup_type = Block Element Allg Attribute Group
+_UI_Block_Element_Erlaubnis_AttributeGroup_type = Block Element Erlaubnis Attribute Group
+_UI_Block_Strecke_type = Block Strecke
+_UI_Block_Strecke_Allg_AttributeGroup_type = Block Strecke Allg Attribute Group
+_UI_Bremsweg_TypeClass_type = Bremsweg Type Class
+_UI_Erlaubnis_Staendig_Vorhanden_TypeClass_type = Erlaubnis Staendig Vorhanden Type Class
+_UI_Erlaubnisabgabespeicherung_TypeClass_type = Erlaubnisabgabespeicherung Type Class
+_UI_Erlaubnisholen_TypeClass_type = Erlaubnisholen Type Class
+_UI_Rueckblockwecker_TypeClass_type = Rueckblockwecker Type Class
+_UI_Schaltung_TypeClass_type = Schaltung Type Class
+_UI_Schutzuebertrager_TypeClass_type = Schutzuebertrager Type Class
+_UI_Strecke_Art_TypeClass_type = Strecke Art Type Class
+_UI_Streckengeschwindigkeit_TypeClass_type = Streckengeschwindigkeit Type Class
+_UI_Traktion_Art_Elektrisch_TypeClass_type = Traktion Art Elektrisch Type Class
+_UI_Vorblockwecker_TypeClass_type = Vorblockwecker Type Class
+_UI_Zugbeeinflussung_Art_TypeClass_type = Zugbeeinflussung Art Type Class
+_UI_Zusatzinformation_TypeClass_type = Zusatzinformation Type Class
+_UI_Abstand_Gehweg_Fahrbahn_TypeClass_type = Abstand Gehweg Fahrbahn Type Class
+_UI_Akustik_Fussgaenger_TypeClass_type = Akustik Fussgaenger Type Class
+_UI_Ausrichtung_Winkel_TypeClass_type = Ausrichtung Winkel Type Class
+_UI_Auto_Het_TypeClass_type = Auto Het Type Class
+_UI_Baulast_TypeClass_type = Baulast Type Class
+_UI_Baumprofil_TypeClass_type = Baumprofil Type Class
+_UI_Beeinflussung_Strassenverkehr_TypeClass_type = Beeinflussung Strassenverkehr Type Class
+_UI_Bez_Schrankenantrieb_TypeClass_type = Bez Schrankenantrieb Type Class
+_UI_Bezeichnung_BUE_GFR_Eckpunkt_TypeClass_type = Bezeichnung BUE GFR Eckpunkt Type Class
+_UI_Bezeichnung_GFR_Element_TypeClass_type = Bezeichnung GFR Element Type Class
+_UI_Bezeichnung_GFR_Tripelspiegel_TypeClass_type = Bezeichnung GFR Tripelspiegel Type Class
+_UI_Bezeichnung_Verkehrszeichen_TypeClass_type = Bezeichnung Verkehrszeichen Type Class
+_UI_Blitzpfeil_TypeClass_type = Blitzpfeil Type Class
+_UI_BUE_Abhaengigkeit_Fue_AttributeGroup_type = BUE Abhaengigkeit Fue Attribute Group
+_UI_BUE_Anlage_type = BUE Anlage
+_UI_BUE_Anlage_Allg_AttributeGroup_type = BUE Anlage Allg Attribute Group
+_UI_BUE_Anlage_Fuss_Rad_AttributeGroup_type = BUE Anlage Fuss Rad Attribute Group
+_UI_BUE_Anlage_Strasse_type = BUE Anlage Strasse
+_UI_BUE_Anlage_Strasse_Allg_AttributeGroup_type = BUE Anlage Strasse Allg Attribute Group
+_UI_BUE_Anlage_V_type = BUE Anlage V
+_UI_BUE_Anlage_V_Allg_AttributeGroup_type = BUE Anlage VAllg Attribute Group
+_UI_BUE_Ausschaltung_type = BUE Ausschaltung
+_UI_BUE_Bauart_TypeClass_type = BUE Bauart Type Class
+_UI_BUE_Bedien_Anz_Element_Allg_AttributeGroup_type = BUE Bedien Anz Element Allg Attribute Group
+_UI_BUE_Bedien_Anzeige_Element_type = BUE Bedien Anzeige Element
+_UI_BUE_Buestra_TypeClass_type = BUE Buestra Type Class
+_UI_BUE_Deckendes_Signal_Zuordnung_type = BUE Deckendes Signal Zuordnung
+_UI_BUE_Einschaltung_type = BUE Einschaltung
+_UI_BUE_Einschaltung_Hp_AttributeGroup_type = BUE Einschaltung Hp Attribute Group
+_UI_BUE_Einschaltung_Zuordnung_type = BUE Einschaltung Zuordnung
+_UI_BUE_Funktionsueberwachung_TypeClass_type = BUE Funktionsueberwachung Type Class
+_UI_BUE_Gefahrraum_Eckpunkt_type = BUE Gefahrraum Eckpunkt
+_UI_BUE_Gefahrraum_Eckpunkt_Bezeichnung_AttributeGroup_type = BUE Gefahrraum Eckpunkt Bezeichnung Attribute Group
+_UI_BUE_Gleisbezogener_Gefahrraum_type = BUE Gleisbezogener Gefahrraum
+_UI_BUE_Handschalteinrichtung_TypeClass_type = BUE Handschalteinrichtung Type Class
+_UI_BUE_Kante_type = BUE Kante
+_UI_BUE_Kreuzungsplan_type = BUE Kreuzungsplan
+_UI_BUE_Kreuzungsplan_Koordinaten_AttributeGroup_type = BUE Kreuzungsplan Koordinaten Attribute Group
+_UI_BUE_Mit_GFR_TypeClass_type = BUE Mit GFR Type Class
+_UI_BUE_Nachlaufzeit_TypeClass_type = BUE Nachlaufzeit Type Class
+_UI_BUE_Neigung_TypeClass_type = BUE Neigung Type Class
+_UI_BUE_Schnittstelle_type = BUE Schnittstelle
+_UI_BUE_Schnittstelle_Allg_AttributeGroup_type = BUE Schnittstelle Allg Attribute Group
+_UI_BUE_Sicherungsart_TypeClass_type = BUE Sicherungsart Type Class
+_UI_BUE_Sicherungszeit_TypeClass_type = BUE Sicherungszeit Type Class
+_UI_BUE_Spezifisches_Signal_type = BUE Spezifisches Signal
+_UI_BUE_Strasse_TypeClass_type = BUE Strasse Type Class
+_UI_BUE_Technik_TypeClass_type = BUE Technik Type Class
+_UI_BUE_Vorlaufzeit_TypeClass_type = BUE Vorlaufzeit Type Class
+_UI_BUE_WS_Fstr_Zuordnung_type = BUE WS Fstr Zuordnung
+_UI_Einschaltverz_Errechnet_TypeClass_type = Einschaltverz Errechnet Type Class
+_UI_Einschaltverz_Gewaehlt_TypeClass_type = Einschaltverz Gewaehlt Type Class
+_UI_Ersatzstecker_Gleisbezogen_TypeClass_type = Ersatzstecker Gleisbezogen Type Class
+_UI_Fahrbahn_Befestigung_Gleis_TypeClass_type = Fahrbahn Befestigung Gleis Type Class
+_UI_Fahrbahn_Befestigung_TypeClass_type = Fahrbahn Befestigung Type Class
+_UI_Fahrbahn_Breite_TypeClass_type = Fahrbahn Breite Type Class
+_UI_Fue_Schaltfall_TypeClass_type = Fue Schaltfall Type Class
+_UI_Fuss_Radweg_Art_TypeClass_type = Fuss Radweg Art Type Class
+_UI_Fuss_Radweg_Seite_TypeClass_type = Fuss Radweg Seite Type Class
+_UI_GFR_Anlage_type = GFR Anlage
+_UI_GFR_Anlage_Allg_AttributeGroup_type = GFR Anlage Allg Attribute Group
+_UI_GFR_Art_TypeClass_type = GFR Art Type Class
+_UI_GFR_Element_type = GFR Element
+_UI_GFR_Element_Bezeichnung_AttributeGroup_type = GFR Element Bezeichnung Attribute Group
+_UI_GFR_Neigung_TypeClass_type = GFR Neigung Type Class
+_UI_GFR_Tripelspiegel_type = GFR Tripelspiegel
+_UI_GFR_Tripelspiegel_Allg_AttributeGroup_type = GFR Tripelspiegel Allg Attribute Group
+_UI_GFR_Tripelspiegel_Bezeichnung_AttributeGroup_type = GFR Tripelspiegel Bezeichnung Attribute Group
+_UI_GFR_Typ_TypeClass_type = GFR Typ Type Class
+_UI_Gitterbehang_TypeClass_type = Gitterbehang Type Class
+_UI_Gleis_Am_Bue_TypeClass_type = Gleis Am Bue Type Class
+_UI_Haltezeit_TypeClass_type = Haltezeit Type Class
+_UI_Hp_Ersatzstecker_TypeClass_type = Hp Ersatzstecker Type Class
+_UI_Klassifizierung_TypeClass_type = Klassifizierung Type Class
+_UI_Kontrastblende_TypeClass_type = Kontrastblende Type Class
+_UI_Kreuzungswinkel_TypeClass_type = Kreuzungswinkel Type Class
+_UI_Kurzzugschaltung_TypeClass_type = Kurzzugschaltung Type Class
+_UI_Lagerung_Art_TypeClass_type = Lagerung Art Type Class
+_UI_LFUE_Impuls_TypeClass_type = LFUE Impuls Type Class
+_UI_Lieferlaenge_TypeClass_type = Lieferlaenge Type Class
+_UI_Montage_Ausgleichsgewichte_TypeClass_type = Montage Ausgleichsgewichte Type Class
+_UI_Montage_Besonders_TypeClass_type = Montage Besonders Type Class
+_UI_Montagehoehe_TypeClass_type = Montagehoehe Type Class
+_UI_Optik_Durchmesser_TypeClass_type = Optik Durchmesser Type Class
+_UI_Optik_Symbolmaske_TypeClass_type = Optik Symbolmaske Type Class
+_UI_Pegel_TypeClass_type = Pegel Type Class
+_UI_Pixel_Koordinate_X_TypeClass_type = Pixel Koordinate XType Class
+_UI_Pixel_Koordinate_Y_TypeClass_type = Pixel Koordinate YType Class
+_UI_Raeumstrecke_DAB_TypeClass_type = Raeumstrecke DAB Type Class
+_UI_Raeumstrecke_DBK_TypeClass_type = Raeumstrecke DBK Type Class
+_UI_Raeumstrecke_DCK_TypeClass_type = Raeumstrecke DCK Type Class
+_UI_Raeumstrecke_DSK_Strich_TypeClass_type = Raeumstrecke DSK Strich Type Class
+_UI_Raeumstrecke_TypeClass_type = Raeumstrecke Type Class
+_UI_Richtungspfeil_TypeClass_type = Richtungspfeil Type Class
+_UI_SA_Schrankenbaum_AttributeGroup_type = SA Schrankenbaum Attribute Group
+_UI_Schaltgruppe_TypeClass_type = Schaltgruppe Type Class
+_UI_Schaltmittel_Fstr_Zuordnung_type = Schaltmittel Fstr Zuordnung
+_UI_Schrankenantrieb_type = Schrankenantrieb
+_UI_Schrankenantrieb_Allg_AttributeGroup_type = Schrankenantrieb Allg Attribute Group
+_UI_Schrankenantrieb_Bezeichnung_AttributeGroup_type = Schrankenantrieb Bezeichnung Attribute Group
+_UI_Schutzbuegel_TypeClass_type = Schutzbuegel Type Class
+_UI_Sicherheitsabstand_TypeClass_type = Sicherheitsabstand Type Class
+_UI_Signalverz_Errechnet_TypeClass_type = Signalverz Errechnet Type Class
+_UI_Signalverz_Gewaehlt_TypeClass_type = Signalverz Gewaehlt Type Class
+_UI_Sperrlaenge_TypeClass_type = Sperrlaenge Type Class
+_UI_Sperrstrecke_Fussgaenger_TypeClass_type = Sperrstrecke Fussgaenger Type Class
+_UI_Sperrstrecke_TypeClass_type = Sperrstrecke Type Class
+_UI_Stoerhalt_Haltfall_TypeClass_type = Stoerhalt Haltfall Type Class
+_UI_Stoerhalt_Merkhinweis_TypeClass_type = Stoerhalt Merkhinweis Type Class
+_UI_Teilsperrstrecke_TypeClass_type = Teilsperrstrecke Type Class
+_UI_Teilvorgabezeit_TypeClass_type = Teilvorgabezeit Type Class
+_UI_Tragkopf_Verstellbar_TypeClass_type = Tragkopf Verstellbar Type Class
+_UI_V_Max_Schiene_TypeClass_type = VMax Schiene Type Class
+_UI_V_Max_Strasse_TypeClass_type = VMax Strasse Type Class
+_UI_V_Min_Fussweg_TypeClass_type = VMin Fussweg Type Class
+_UI_V_Min_Schiene_TypeClass_type = VMin Schiene Type Class
+_UI_V_Min_Strasse_TypeClass_type = VMin Strasse Type Class
+_UI_Verkehrszeichen_type = Verkehrszeichen
+_UI_Verkehrszeichen_Allg_AttributeGroup_type = Verkehrszeichen Allg Attribute Group
+_UI_Verkehrszeichen_Andreaskreuz_AttributeGroup_type = Verkehrszeichen Andreaskreuz Attribute Group
+_UI_Verkehrszeichen_Bezeichnung_AttributeGroup_type = Verkehrszeichen Bezeichnung Attribute Group
+_UI_Verkehrszeichen_Lz_AttributeGroup_type = Verkehrszeichen Lz Attribute Group
+_UI_Vorgeschaltet_TypeClass_type = Vorgeschaltet Type Class
+_UI_Vz_Sperrstrecke_AttributeGroup_type = Vz Sperrstrecke Attribute Group
+_UI_Vz_Sperrstrecke_Schranke_AttributeGroup_type = Vz Sperrstrecke Schranke Attribute Group
+_UI_Vz_Sperrstrecke_Vorgeschaltet_AttributeGroup_type = Vz Sperrstrecke Vorgeschaltet Attribute Group
+_UI_Winkel_Alpha_TypeClass_type = Winkel Alpha Type Class
+_UI_Zeitueberschreitungsmeldung_TypeClass_type = Zeitueberschreitungsmeldung Type Class
+_UI_Zusatzschild_TypeClass_type = Zusatzschild Type Class
+_UI_EKW_Kr_Anteil_TypeClass_type = EKW Kr Anteil Type Class
+_UI_Fahrt_Ueber_TypeClass_type = Fahrt Ueber Type Class
+_UI_Fla_Freimelde_Zuordnung_type = Fla Freimelde Zuordnung
+_UI_Fla_Raum_Freimeldung_TypeClass_type = Fla Raum Freimeldung Type Class
+_UI_Fla_Schutz_type = Fla Schutz
+_UI_Fla_Schutz_Anforderer_AttributeGroup_type = Fla Schutz Anforderer Attribute Group
+_UI_Fla_Schutz_Signal_AttributeGroup_type = Fla Schutz Signal Attribute Group
+_UI_Fla_Schutz_W_Gsp_AttributeGroup_type = Fla Schutz WGsp Attribute Group
+_UI_Fla_Schutz_Weitergabe_AttributeGroup_type = Fla Schutz Weitergabe Attribute Group
+_UI_Fla_Signal_Zielsperrung_TypeClass_type = Fla Signal Zielsperrung Type Class
+_UI_Fla_Verzicht_TypeClass_type = Fla Verzicht Type Class
+_UI_Fla_W_Lage_TypeClass_type = Fla WLage Type Class
+_UI_Fla_Zwieschutz_type = Fla Zwieschutz
+_UI_Fla_Zwieschutz_Element_AttributeGroup_type = Fla Zwieschutz Element Attribute Group
+_UI_Massnahme_TypeClass_type = Massnahme Type Class
+_UI_Nachlaufverhinderung_TypeClass_type = Nachlaufverhinderung Type Class
+_UI_Zwieschutz_Art_TypeClass_type = Zwieschutz Art Type Class
+_UI_Bettungswiderstand_TypeClass_type = Bettungswiderstand Type Class
+_UI_Bezeichnung_Kennbuchstabe_TypeClass_type = Bezeichnung Kennbuchstabe Type Class
+_UI_FMA_Anlage_type = FMA Anlage
+_UI_FMA_Anlage_Allg_AttributeGroup_type = FMA Anlage Allg Attribute Group
+_UI_FMA_Anlage_Bezeichnung_AttributeGroup_type = FMA Anlage Bezeichnung Attribute Group
+_UI_FMA_Anlage_Elektr_Merkmale_AttributeGroup_type = FMA Anlage Elektr Merkmale Attribute Group
+_UI_FMA_Anlage_Kaskade_AttributeGroup_type = FMA Anlage Kaskade Attribute Group
+_UI_FMA_Anlage_Uebertragung_FMinfo_AttributeGroup_type = FMA Anlage Uebertragung FMinfo Attribute Group
+_UI_FMA_Anschluss_Bezeichnung_TypeClass_type = FMA Anschluss Bezeichnung Type Class
+_UI_FMA_Anschluss_Speiserichtung_TypeClass_type = FMA Anschluss Speiserichtung Type Class
+_UI_FMA_Art_TypeClass_type = FMA Art Type Class
+_UI_FMA_Element_type = FMA Element
+_UI_FMA_Element_Allg_AttributeGroup_type = FMA Element Allg Attribute Group
+_UI_FMA_Element_Anschluss_AttributeGroup_type = FMA Element Anschluss Attribute Group
+_UI_FMA_Element_Art_TypeClass_type = FMA Element Art Type Class
+_UI_FMA_Element_Seilanzahl_TypeClass_type = FMA Element Seilanzahl Type Class
+_UI_FMA_Element_Seiltyp_TypeClass_type = FMA Element Seiltyp Type Class
+_UI_FMA_Hilffreimeldung_TypeClass_type = FMA Hilffreimeldung Type Class
+_UI_FMA_Isolierung_TypeClass_type = FMA Isolierung Type Class
+_UI_FMA_Kaskade_Bezeichnung_TypeClass_type = FMA Kaskade Bezeichnung Type Class
+_UI_FMA_Kaskade_Einzelauswertung_TypeClass_type = FMA Kaskade Einzelauswertung Type Class
+_UI_FMA_Komponente_type = FMA Komponente
+_UI_FMA_Komponente_Achszaehlpunkt_AttributeGroup_type = FMA Komponente Achszaehlpunkt Attribute Group
+_UI_FMA_Komponente_Art_TypeClass_type = FMA Komponente Art Type Class
+_UI_FMA_Komponente_Schienenprofil_TypeClass_type = FMA Komponente Schienenprofil Type Class
+_UI_FMA_Komponente_Stromversorgung_TypeClass_type = FMA Komponente Stromversorgung Type Class
+_UI_FMA_Komponente_Typ_TypeClass_type = FMA Komponente Typ Type Class
+_UI_FMA_Laenge_Beeinflusst_TypeClass_type = FMA Laenge Beeinflusst Type Class
+_UI_FMA_Laenge_E1_TypeClass_type = FMA Laenge E1 Type Class
+_UI_FMA_Laenge_E2_TypeClass_type = FMA Laenge E2 Type Class
+_UI_FMA_Laenge_E3_TypeClass_type = FMA Laenge E3 Type Class
+_UI_FMA_Laenge_S_TypeClass_type = FMA Laenge SType Class
+_UI_FMA_Laenge_TypeClass_type = FMA Laenge Type Class
+_UI_FMA_Typ_TypeClass_type = FMA Typ Type Class
+_UI_Schaltmittel_Funktion_TypeClass_type = Schaltmittel Funktion Type Class
+_UI_Schaltmittel_Zuordnung_type = Schaltmittel Zuordnung
+_UI_Uebertragung_FMinfo_Richtung_TypeClass_type = Uebertragung FMinfo Richtung Type Class
+_UI_Uebertragung_FMinfo_Typ_TypeClass_type = Uebertragung FMinfo Typ Type Class
+_UI_Zugeinwirkung_type = Zugeinwirkung
+_UI_Zugeinwirkung_Allg_AttributeGroup_type = Zugeinwirkung Allg Attribute Group
+_UI_Zugeinwirkung_Art_TypeClass_type = Zugeinwirkung Art Type Class
+_UI_Zugeinwirkung_Typ_TypeClass_type = Zugeinwirkung Typ Type Class
+_UI_Aufloesung_Ssp_Zielgleis_TypeClass_type = Aufloesung Ssp Zielgleis Type Class
+_UI_Aufloesung_Verzoegerung_TypeClass_type = Aufloesung Verzoegerung Type Class
+_UI_Automatische_Einstellung_TypeClass_type = Automatische Einstellung Type Class
+_UI_Bezeichnung_Fstr_DWeg_TypeClass_type = Bezeichnung Fstr DWeg Type Class
+_UI_Bezeichnung_Markanter_Punkt_TypeClass_type = Bezeichnung Markanter Punkt Type Class
+_UI_DWeg_Reihenfolge_TypeClass_type = DWeg Reihenfolge Type Class
+_UI_DWeg_V_Aufwertung_Verzicht_TypeClass_type = DWeg VAufwertung Verzicht Type Class
+_UI_DWeg_V_TypeClass_type = DWeg VType Class
+_UI_DWeg_Vorzug_TypeClass_type = DWeg Vorzug Type Class
+_UI_Element_Verschluss_TypeClass_type = Element Verschluss Type Class
+_UI_F_Bedienung_TypeClass_type = FBedienung Type Class
+_UI_Fstr_Abhaengigkeit_type = Fstr Abhaengigkeit
+_UI_Fstr_Abhaengigkeit_Ssp_AttributeGroup_type = Fstr Abhaengigkeit Ssp Attribute Group
+_UI_Fstr_Aneinander_type = Fstr Aneinander
+_UI_Fstr_Aneinander_Bedienstring_TypeClass_type = Fstr Aneinander Bedienstring Type Class
+_UI_Fstr_Aneinander_Zuordnung_type = Fstr Aneinander Zuordnung
+_UI_Fstr_Bedienstring_TypeClass_type = Fstr Bedienstring Type Class
+_UI_Fstr_DWeg_type = Fstr DWeg
+_UI_Fstr_DWeg_Allg_AttributeGroup_type = Fstr DWeg Allg Attribute Group
+_UI_Fstr_DWeg_Bezeichnung_AttributeGroup_type = Fstr DWeg Bezeichnung Attribute Group
+_UI_Fstr_DWeg_Spezifisch_AttributeGroup_type = Fstr DWeg Spezifisch Attribute Group
+_UI_Fstr_DWeg_W_Kr_type = Fstr DWeg WKr
+_UI_Fstr_Fahrweg_type = Fstr Fahrweg
+_UI_Fstr_Mittel_Art_TypeClass_type = Fstr Mittel Art Type Class
+_UI_Fstr_Mittel_AttributeGroup_type = Fstr Mittel Attribute Group
+_UI_Fstr_Mittel_V_Aufwertung_TypeClass_type = Fstr Mittel VAufwertung Type Class
+_UI_Fstr_Nichthaltfall_type = Fstr Nichthaltfall
+_UI_Fstr_Rangier_Art_TypeClass_type = Fstr Rangier Art Type Class
+_UI_Fstr_Rangier_AttributeGroup_type = Fstr Rangier Attribute Group
+_UI_Fstr_Rangier_Fla_Zuordnung_type = Fstr Rangier Fla Zuordnung
+_UI_Fstr_Reihenfolge_TypeClass_type = Fstr Reihenfolge Type Class
+_UI_Fstr_Signalisierung_type = Fstr Signalisierung
+_UI_Fstr_Umfahrpunkt_type = Fstr Umfahrpunkt
+_UI_Fstr_V_Hg_TypeClass_type = Fstr VHg Type Class
+_UI_Fstr_V_TypeClass_type = Fstr VType Class
+_UI_Fstr_Vsigabstand_Verkuerzt_TypeClass_type = Fstr Vsigabstand Verkuerzt Type Class
+_UI_Fstr_Zug_Art_TypeClass_type = Fstr Zug Art Type Class
+_UI_Fstr_Zug_AttributeGroup_type = Fstr Zug Attribute Group
+_UI_Fstr_Zug_DWeg_AttributeGroup_type = Fstr Zug DWeg Attribute Group
+_UI_Fstr_Zug_Rangier_type = Fstr Zug Rangier
+_UI_Fstr_Zug_Rangier_Allg_AttributeGroup_type = Fstr Zug Rangier Allg Attribute Group
+_UI_Laenge_Soll_TypeClass_type = Laenge Soll Type Class
+_UI_Markanter_Punkt_type = Markanter Punkt
+_UI_Markanter_Punkt_Bezeichnung_AttributeGroup_type = Markanter Punkt Bezeichnung Attribute Group
+_UI_Massgebende_Neigung_TypeClass_type = Massgebende Neigung Type Class
+_UI_Rangier_Gegenfahrtausschluss_TypeClass_type = Rangier Gegenfahrtausschluss Type Class
+_UI_Sonstiger_Punkt_type = Sonstiger Punkt
+_UI_Start_Signal_Charakter_TypeClass_type = Start Signal Charakter Type Class
+_UI_Anzeigegefuehrt_ES_Kategorie_TypeClass_type = Anzeigegefuehrt ES Kategorie Type Class
+_UI_Bezeichnung_Strecke_TypeClass_type = Bezeichnung Strecke Type Class
+_UI_GEO_Form_TypeClass_type = GEO Form Type Class
+_UI_GEO_KAD_TypeClass_type = GEO KAD Type Class
+_UI_GEO_Kante_type = GEO Kante
+_UI_GEO_Kante_Allg_AttributeGroup_type = GEO Kante Allg Attribute Group
+_UI_GEO_Knoten_type = GEO Knoten
+_UI_GEO_Koordinatensystem_TypeClass_type = GEO Koordinatensystem Type Class
+_UI_GEO_Laenge_TypeClass_type = GEO Laenge Type Class
+_UI_GEO_PAD_TypeClass_type = GEO PAD Type Class
+_UI_GEO_Punkt_type = GEO Punkt
+_UI_GEO_Punkt_Allg_AttributeGroup_type = GEO Punkt Allg Attribute Group
+_UI_GEO_Radius_A_TypeClass_type = GEO Radius AType Class
+_UI_GEO_Radius_B_TypeClass_type = GEO Radius BType Class
+_UI_GEO_Richtungswinkel_TypeClass_type = GEO Richtungswinkel Type Class
+_UI_Geschwindigkeit_TypeClass_type = Geschwindigkeit Type Class
+_UI_Geschwindigkeitsprofil_type = Geschwindigkeitsprofil
+_UI_Geschwindigkeitsprofil_Allg_AttributeGroup_type = Geschwindigkeitsprofil Allg Attribute Group
+_UI_GK_X_TypeClass_type = GK XType Class
+_UI_GK_Y_TypeClass_type = GK YType Class
+_UI_GK_Z_TypeClass_type = GK ZType Class
+_UI_Hoehenlinie_type = Hoehenlinie
+_UI_Hoehenlinie_Allg_AttributeGroup_type = Hoehenlinie Allg Attribute Group
+_UI_Hoehenlinie_Form_TypeClass_type = Hoehenlinie Form Type Class
+_UI_Hoehenlinie_Laenge_TypeClass_type = Hoehenlinie Laenge Type Class
+_UI_Hoehenpunkt_type = Hoehenpunkt
+_UI_Hoehenpunkt_Allg_AttributeGroup_type = Hoehenpunkt Allg Attribute Group
+_UI_Hoehenpunkt_Datum_TypeClass_type = Hoehenpunkt Datum Type Class
+_UI_Hoehenpunkt_Hoehe_TypeClass_type = Hoehenpunkt Hoehe Type Class
+_UI_HSystem_TypeClass_type = HSystem Type Class
+_UI_Kantenname_TypeClass_type = Kantenname Type Class
+_UI_Knotenname_TypeClass_type = Knotenname Type Class
+_UI_Oertlichkeit_type = Oertlichkeit
+_UI_Oertlichkeit_Abkuerzung_TypeClass_type = Oertlichkeit Abkuerzung Type Class
+_UI_Oertlichkeit_Allg_AttributeGroup_type = Oertlichkeit Allg Attribute Group
+_UI_Oertlichkeit_Art_TypeClass_type = Oertlichkeit Art Type Class
+_UI_Oertlichkeit_Bezeichnung_AttributeGroup_type = Oertlichkeit Bezeichnung Attribute Group
+_UI_Oertlichkeit_Gueltig_Ab_TypeClass_type = Oertlichkeit Gueltig Ab Type Class
+_UI_Oertlichkeit_Gueltig_Bis_TypeClass_type = Oertlichkeit Gueltig Bis Type Class
+_UI_Oertlichkeit_Kurzname_TypeClass_type = Oertlichkeit Kurzname Type Class
+_UI_Oertlichkeit_Langname_TypeClass_type = Oertlichkeit Langname Type Class
+_UI_Plan_Quelle_TypeClass_type = Plan Quelle Type Class
+_UI_Strecke_type = Strecke
+_UI_Strecke_Bezeichnung_AttributeGroup_type = Strecke Bezeichnung Attribute Group
+_UI_Strecke_Bremsweg_type = Strecke Bremsweg
+_UI_Strecke_Meter_TypeClass_type = Strecke Meter Type Class
+_UI_Strecke_Punkt_type = Strecke Punkt
+_UI_Strecke_Richtung_TypeClass_type = Strecke Richtung Type Class
+_UI_TB_Art_TypeClass_type = TB Art Type Class
+_UI_TB_Beschreibung_TypeClass_type = TB Beschreibung Type Class
+_UI_Technischer_Bereich_type = Technischer Bereich
+_UI_Technischer_Punkt_type = Technischer Punkt
+_UI_TOP_Anschluss_A_TypeClass_type = TOP Anschluss AType Class
+_UI_TOP_Anschluss_B_TypeClass_type = TOP Anschluss BType Class
+_UI_TOP_Kante_type = TOP Kante
+_UI_TOP_Kante_Allg_AttributeGroup_type = TOP Kante Allg Attribute Group
+_UI_TOP_Knoten_type = TOP Knoten
+_UI_TOP_Laenge_TypeClass_type = TOP Laenge Type Class
+_UI_TP_Art_TypeClass_type = TP Art Type Class
+_UI_TP_Beschreibung_TypeClass_type = TP Beschreibung Type Class
+_UI_Trasse_Kante_child_AttributeGroup_type = Trasse Kante child Attribute Group
+_UI_Ueberhoehung_type = Ueberhoehung
+_UI_Ueberhoehung_Allg_AttributeGroup_type = Ueberhoehung Allg Attribute Group
+_UI_Ueberhoehung_Datum_TypeClass_type = Ueberhoehung Datum Type Class
+_UI_Ueberhoehung_Hoehe_TypeClass_type = Ueberhoehung Hoehe Type Class
+_UI_Ueberhoehungslinie_type = Ueberhoehungslinie
+_UI_Ueberhoehungslinie_Allg_AttributeGroup_type = Ueberhoehungslinie Allg Attribute Group
+_UI_Ueberhoehungslinie_Form_TypeClass_type = Ueberhoehungslinie Form Type Class
+_UI_Ueberhoehungslinie_Laenge_TypeClass_type = Ueberhoehungslinie Laenge Type Class
+_UI_V_Profil_Art_TypeClass_type = VProfil Art Type Class
+_UI_Auffahrortung_TypeClass_type = Auffahrortung Type Class
+_UI_Austausch_Antriebe_TypeClass_type = Austausch Antriebe Type Class
+_UI_Auswurfrichtung_TypeClass_type = Auswurfrichtung Type Class
+_UI_Besonderes_Fahrwegelement_TypeClass_type = Besonderes Fahrwegelement Type Class
+_UI_Elektrischer_Antrieb_Anzahl_TypeClass_type = Elektrischer Antrieb Anzahl Type Class
+_UI_Elektrischer_Antrieb_Lage_TypeClass_type = Elektrischer Antrieb Lage Type Class
+_UI_Element_Lage_TypeClass_type = Element Lage Type Class
+_UI_Entgleisungsschuh_AttributeGroup_type = Entgleisungsschuh Attribute Group
+_UI_Geschwindigkeit_L_TypeClass_type = Geschwindigkeit LType Class
+_UI_Geschwindigkeit_R_TypeClass_type = Geschwindigkeit RType Class
+_UI_Gleis_Abschluss_type = Gleis Abschluss
+_UI_Gleis_Abschluss_Art_TypeClass_type = Gleis Abschluss Art Type Class
+_UI_Gleissperre_Betriebsart_TypeClass_type = Gleissperre Betriebsart Type Class
+_UI_Gleissperre_Element_AttributeGroup_type = Gleissperre Element Attribute Group
+_UI_Gleissperre_Vorzugslage_TypeClass_type = Gleissperre Vorzugslage Type Class
+_UI_Gleissperrensignal_TypeClass_type = Gleissperrensignal Type Class
+_UI_GZ_Freimeldung_L_AttributeGroup_type = GZ Freimeldung LAttribute Group
+_UI_GZ_Freimeldung_R_AttributeGroup_type = GZ Freimeldung RAttribute Group
+_UI_Herzstueck_Antriebe_TypeClass_type = Herzstueck Antriebe Type Class
+_UI_Isolierfall_TypeClass_type = Isolierfall Type Class
+_UI_Kr_KrW_Seitenzuordnung_TypeClass_type = Kr Kr WSeitenzuordnung Type Class
+_UI_Kreuzung_AttributeGroup_type = Kreuzung Attribute Group
+_UI_Kreuzungsgleis_TypeClass_type = Kreuzungsgleis Type Class
+_UI_Schutzschiene_TypeClass_type = Schutzschiene Type Class
+_UI_Stammgleis_TypeClass_type = Stammgleis Type Class
+_UI_Vorzugslage_Automatik_TypeClass_type = Vorzugslage Automatik Type Class
+_UI_W_Kr_Anlage_type = WKr Anlage
+_UI_W_Kr_Anlage_Allg_AttributeGroup_type = WKr Anlage Allg Attribute Group
+_UI_W_Kr_Art_TypeClass_type = WKr Art Type Class
+_UI_W_Kr_Grundform_TypeClass_type = WKr Grundform Type Class
+_UI_W_Kr_Gsp_Element_type = WKr Gsp Element
+_UI_W_Kr_Gsp_Element_Allg_AttributeGroup_type = WKr Gsp Element Allg Attribute Group
+_UI_W_Kr_Gsp_Komponente_type = WKr Gsp Komponente
+_UI_W_Kr_Gsp_Stellart_TypeClass_type = WKr Gsp Stellart Type Class
+_UI_Weiche_Betriebsart_TypeClass_type = Weiche Betriebsart Type Class
+_UI_Weiche_Element_AttributeGroup_type = Weiche Element Attribute Group
+_UI_Weiche_Vorzugslage_TypeClass_type = Weiche Vorzugslage Type Class
+_UI_Weichenlaufkette_type = Weichenlaufkette
+_UI_Weichenlaufkette_Zuordnung_type = Weichenlaufkette Zuordnung
+_UI_Weichensignal_TypeClass_type = Weichensignal Type Class
+_UI_Zungenpaar_AttributeGroup_type = Zungenpaar Attribute Group
+_UI_Zungenpruefkontakt_Anzahl_TypeClass_type = Zungenpruefkontakt Anzahl Type Class
+_UI_Baubereich_Art_TypeClass_type = Baubereich Art Type Class
+_UI_Bez_Gleis_Bezeichnung_TypeClass_type = Bez Gleis Bezeichnung Type Class
+_UI_Fahrstrom_TypeClass_type = Fahrstrom Type Class
+_UI_Gleis_Abschnitt_type = Gleis Abschnitt
+_UI_Gleis_Art_type = Gleis Art
+_UI_Gleis_Baubereich_type = Gleis Baubereich
+_UI_Gleis_Bezeichnung_type = Gleis Bezeichnung
+_UI_Gleis_Bezeichnung_Bezeichnung_AttributeGroup_type = Gleis Bezeichnung Bezeichnung Attribute Group
+_UI_Gleis_Fahrbahn_type = Gleis Fahrbahn
+_UI_Gleis_Lichtraum_type = Gleis Lichtraum
+_UI_Gleis_Schaltgruppe_type = Gleis Schaltgruppe
+_UI_Gleisart_TypeClass_type = Gleisart Type Class
+_UI_Konstruktion_TypeClass_type = Konstruktion Type Class
+_UI_Lichtraumprofil_TypeClass_type = Lichtraumprofil Type Class
+_UI_Ader_Durchmesser_TypeClass_type = Ader Durchmesser Type Class
+_UI_Ader_Querschnitt_TypeClass_type = Ader Querschnitt Type Class
+_UI_Ader_Reserve_TypeClass_type = Ader Reserve Type Class
+_UI_Anzahl_Verseilelemente_TypeClass_type = Anzahl Verseilelemente Type Class
+_UI_Bezeichnung_Kabel_TypeClass_type = Bezeichnung Kabel Type Class
+_UI_Bezeichnung_Kabel_Verteilpunkt_TypeClass_type = Bezeichnung Kabel Verteilpunkt Type Class
+_UI_Induktionsschutz_TypeClass_type = Induktionsschutz Type Class
+_UI_Kabel_type = Kabel
+_UI_Kabel_Allg_AttributeGroup_type = Kabel Allg Attribute Group
+_UI_Kabel_Art_TypeClass_type = Kabel Art Type Class
+_UI_Kabel_Bezeichnung_AttributeGroup_type = Kabel Bezeichnung Attribute Group
+_UI_Kabel_Element_AttributeGroup_type = Kabel Element Attribute Group
+_UI_Kabel_Laenge_TypeClass_type = Kabel Laenge Type Class
+_UI_Kabel_Typ_TypeClass_type = Kabel Typ Type Class
+_UI_Kabel_Verteilpunkt_type = Kabel Verteilpunkt
+_UI_Kabel_Verteilpunkt_Art_TypeClass_type = Kabel Verteilpunkt Art Type Class
+_UI_Kabel_Verteilpunkt_Bezeichnung_AttributeGroup_type = Kabel Verteilpunkt Bezeichnung Attribute Group
+_UI_Nagetierschutz_TypeClass_type = Nagetierschutz Type Class
+_UI_Trasse_Kante_type = Trasse Kante
+_UI_Trasse_Kante_Art_TypeClass_type = Trasse Kante Art Type Class
+_UI_Trasse_Knoten_type = Trasse Knoten
+_UI_Trasse_Knoten_Art_TypeClass_type = Trasse Knoten Art Type Class
+_UI_Trasse_Nutzer_TypeClass_type = Trasse Nutzer Type Class
+_UI_Verseilart_TypeClass_type = Verseilart Type Class
+_UI_AWU_TypeClass_type = AWU Type Class
+_UI_Bezeichnung_NB_TypeClass_type = Bezeichnung NB Type Class
+_UI_Bezeichnung_NB_Zone_TypeClass_type = Bezeichnung NB Zone Type Class
+_UI_F_ST_Z_TypeClass_type = FST ZType Class
+_UI_FA_FAE_TypeClass_type = FA FAE Type Class
+_UI_Freie_Stellbarkeit_TypeClass_type = Freie Stellbarkeit Type Class
+_UI_NB_type = NB
+_UI_NB_Art_TypeClass_type = NB Art Type Class
+_UI_NB_Bedien_Anzeige_Element_type = NB Bedien Anzeige Element
+_UI_NB_Bedien_Anzeige_Funktionen_AttributeGroup_type = NB Bedien Anzeige Funktionen Attribute Group
+_UI_NB_Bezeichnung_AttributeGroup_type = NB Bezeichnung Attribute Group
+_UI_NB_Funktionalitaet_NB_R_AttributeGroup_type = NB Funktionalitaet NB RAttribute Group
+_UI_NB_Grenze_Art_TypeClass_type = NB Grenze Art Type Class
+_UI_NB_Rueckgabevoraussetzung_TypeClass_type = NB Rueckgabevoraussetzung Type Class
+_UI_NB_Verhaeltnis_Besonders_TypeClass_type = NB Verhaeltnis Besonders Type Class
+_UI_NB_Zone_type = NB Zone
+_UI_NB_Zone_Allg_AttributeGroup_type = NB Zone Allg Attribute Group
+_UI_NB_Zone_Allg_TypeClass_type = NB Zone Allg Type Class
+_UI_NB_Zone_Bezeichnung_AttributeGroup_type = NB Zone Bezeichnung Attribute Group
+_UI_NB_Zone_Element_type = NB Zone Element
+_UI_NB_Zone_Element_Allg_AttributeGroup_type = NB Zone Element Allg Attribute Group
+_UI_NB_Zone_Grenze_type = NB Zone Grenze
+_UI_NB_Zone_Reihenfolgezwang_AttributeGroup_type = NB Zone Reihenfolgezwang Attribute Group
+_UI_Rang_TypeClass_type = Rang Type Class
+_UI_SBUE_TypeClass_type = SBUE Type Class
+_UI_SLE_SLS_TypeClass_type = SLE SLS Type Class
+_UI_Taste_ANF_TypeClass_type = Taste ANF Type Class
+_UI_Taste_FGT_TypeClass_type = Taste FGT Type Class
+_UI_Taste_WGT_TypeClass_type = Taste WGT Type Class
+_UI_W_Gsp_Lage_TypeClass_type = WGsp Lage Type Class
+_UI_WHU_TypeClass_type = WHU Type Class
+_UI_WUS_TypeClass_type = WUS Type Class
+_UI_GUE_Abstand_Abweichend_TypeClass_type = GUE Abstand Abweichend Type Class
+_UI_GUE_Anordnung_TypeClass_type = GUE Anordnung Type Class
+_UI_GUE_Bauart_TypeClass_type = GUE Bauart Type Class
+_UI_GUE_Energieversorgung_TypeClass_type = GUE Energieversorgung Type Class
+_UI_GUE_Messstrecke_TypeClass_type = GUE Messstrecke Type Class
+_UI_INA_Gefahrstelle_AttributeGroup_type = INA Gefahrstelle Attribute Group
+_UI_Messfehler_TypeClass_type = Messfehler Type Class
+_UI_Prioritaet_Gefahrstelle_TypeClass_type = Prioritaet Gefahrstelle Type Class
+_UI_Pruefgeschwindigkeit_TypeClass_type = Pruefgeschwindigkeit Type Class
+_UI_Pruefzeit_TypeClass_type = Pruefzeit Type Class
+_UI_PZB_Abstand_GM_TypeClass_type = PZB Abstand GM Type Class
+_UI_PZB_Art_TypeClass_type = PZB Art Type Class
+_UI_PZB_Element_type = PZB Element
+_UI_PZB_Element_GM_AttributeGroup_type = PZB Element GM Attribute Group
+_UI_PZB_Element_GUE_AttributeGroup_type = PZB Element GUE Attribute Group
+_UI_PZB_Element_Zuordnung_type = PZB Element Zuordnung
+_UI_PZB_Element_Zuordnung_BP_AttributeGroup_type = PZB Element Zuordnung BP Attribute Group
+_UI_PZB_Element_Zuordnung_Fstr_AttributeGroup_type = PZB Element Zuordnung Fstr Attribute Group
+_UI_PZB_Element_Zuordnung_INA_AttributeGroup_type = PZB Element Zuordnung INA Attribute Group
+_UI_PZB_INA_TypeClass_type = PZB INA Type Class
+_UI_PZB_Zuordnung_Signal_type = PZB Zuordnung Signal
+_UI_Wirksamkeit_Fstr_TypeClass_type = Wirksamkeit Fstr Type Class
+_UI_Wirksamkeit_TypeClass_type = Wirksamkeit Type Class
+_UI_Bild_TypeClass_type = Bild Type Class
+_UI_Regelzeichnung_type = Regelzeichnung
+_UI_Regelzeichnung_Allg_AttributeGroup_type = Regelzeichnung Allg Attribute Group
+_UI_Regelzeichnung_Parameter_type = Regelzeichnung Parameter
+_UI_Regelzeichnung_Parameter_Allg_AttributeGroup_type = Regelzeichnung Parameter Allg Attribute Group
+_UI_RZ_Nummer_TypeClass_type = RZ Nummer Type Class
+_UI_RZ_Parameter_Name_TypeClass_type = RZ Parameter Name Type Class
+_UI_RZ_Parameter_Wert_TypeClass_type = RZ Parameter Wert Type Class
+_UI_Titel_TypeClass_type = Titel Type Class
+_UI_Untertitel_TypeClass_type = Untertitel Type Class
+_UI_Bedienung_Art_TypeClass_type = Bedienung Art Type Class
+_UI_Beschreibung_Sonderanlage_TypeClass_type = Beschreibung Sonderanlage Type Class
+_UI_Bezeichnung_Schloss_TypeClass_type = Bezeichnung Schloss Type Class
+_UI_Bezeichnung_Schluessel_TypeClass_type = Bezeichnung Schluessel Type Class
+_UI_Bezeichnung_Sk_TypeClass_type = Bezeichnung Sk Type Class
+_UI_BUE_Lage_TypeClass_type = BUE Lage Type Class
+_UI_Gsp_Lage_TypeClass_type = Gsp Lage Type Class
+_UI_Hauptschloss_TypeClass_type = Hauptschloss Type Class
+_UI_Schloss_type = Schloss
+_UI_Schloss_Art_TypeClass_type = Schloss Art Type Class
+_UI_Schloss_Bezeichnung_AttributeGroup_type = Schloss Bezeichnung Attribute Group
+_UI_Schloss_BUE_AttributeGroup_type = Schloss BUE Attribute Group
+_UI_Schloss_Gsp_AttributeGroup_type = Schloss Gsp Attribute Group
+_UI_Schloss_Sk_AttributeGroup_type = Schloss Sk Attribute Group
+_UI_Schloss_Sonderanlage_AttributeGroup_type = Schloss Sonderanlage Attribute Group
+_UI_Schloss_Ssp_AttributeGroup_type = Schloss Ssp Attribute Group
+_UI_Schloss_W_AttributeGroup_type = Schloss WAttribute Group
+_UI_Schlosskombination_type = Schlosskombination
+_UI_Schlosskombination_Bezeichnung_AttributeGroup_type = Schlosskombination Bezeichnung Attribute Group
+_UI_Schluessel_type = Schluessel
+_UI_Schluessel_Allg_AttributeGroup_type = Schluessel Allg Attribute Group
+_UI_Schluessel_Bartform_TypeClass_type = Schluessel Bartform Type Class
+_UI_Schluessel_Bezeichnung_AttributeGroup_type = Schluessel Bezeichnung Attribute Group
+_UI_Schluessel_Gruppe_TypeClass_type = Schluessel Gruppe Type Class
+_UI_Schluessel_In_Grdst_Eingeschl_TypeClass_type = Schluessel In Grdst Eingeschl Type Class
+_UI_Schluesselsperre_type = Schluesselsperre
+_UI_Sonderanlage_Lage_TypeClass_type = Sonderanlage Lage Type Class
+_UI_Technisch_Berechtigter_TypeClass_type = Technisch Berechtigter Type Class
+_UI_Verschluss_Ort_TypeClass_type = Verschluss Ort Type Class
+_UI_W_Anbaulage_TypeClass_type = WAnbaulage Type Class
+_UI_Anschaltdauer_TypeClass_type = Anschaltdauer Type Class
+_UI_Auto_Einstellung_TypeClass_type = Auto Einstellung Type Class
+_UI_Befestigung_Art_TypeClass_type = Befestigung Art Type Class
+_UI_Beleuchtet_TypeClass_type = Beleuchtet Type Class
+_UI_Besetzte_Ausfahrt_TypeClass_type = Besetzte Ausfahrt Type Class
+_UI_DA_Manuell_TypeClass_type = DA Manuell Type Class
+_UI_Dunkelschaltung_TypeClass_type = Dunkelschaltung Type Class
+_UI_Durchfahrt_TypeClass_type = Durchfahrt Type Class
+_UI_Fiktives_Signal_Funktion_TypeClass_type = Fiktives Signal Funktion Type Class
+_UI_Fundament_Art_TypeClass_type = Fundament Art Type Class
+_UI_Funktion_Ohne_Signal_TypeClass_type = Funktion Ohne Signal Type Class
+_UI_Gegengleis_TypeClass_type = Gegengleis Type Class
+_UI_Geltungsbereich_TypeClass_type = Geltungsbereich Type Class
+_UI_Geschaltet_TypeClass_type = Geschaltet Type Class
+_UI_Hoehe_Fundamentoberkante_TypeClass_type = Hoehe Fundamentoberkante Type Class
+_UI_Obere_Lichtpunkthoehe_TypeClass_type = Obere Lichtpunkthoehe Type Class
+_UI_PZB_Schutzstrecke_Soll_TypeClass_type = PZB Schutzstrecke Soll Type Class
+_UI_Rahmen_Art_TypeClass_type = Rahmen Art Type Class
+_UI_Rahmen_Hoehe_TypeClass_type = Rahmen Hoehe Type Class
+_UI_Rangierstrasse_Restaufloesung_TypeClass_type = Rangierstrasse Restaufloesung Type Class
+_UI_Richtpunkt_TypeClass_type = Richtpunkt Type Class
+_UI_Richtpunktentfernung_TypeClass_type = Richtpunktentfernung Type Class
+_UI_Signal_type = Signal
+_UI_Signal_Art_TypeClass_type = Signal Art Type Class
+_UI_Signal_Befestigung_type = Signal Befestigung
+_UI_Signal_Befestigung_Allg_AttributeGroup_type = Signal Befestigung Allg Attribute Group
+_UI_Signal_Befestigungsart_TypeClass_type = Signal Befestigungsart Type Class
+_UI_Signal_Fank_Zuordnung_type = Signal Fank Zuordnung
+_UI_Signal_Fiktiv_AttributeGroup_type = Signal Fiktiv Attribute Group
+_UI_Signal_Fstr_AttributeGroup_type = Signal Fstr Attribute Group
+_UI_Signal_Fstr_Aus_Inselgleis_AttributeGroup_type = Signal Fstr Aus Inselgleis Attribute Group
+_UI_Signal_Fstr_S_AttributeGroup_type = Signal Fstr SAttribute Group
+_UI_Signal_Funktion_TypeClass_type = Signal Funktion Type Class
+_UI_Signal_Rahmen_type = Signal Rahmen
+_UI_Signal_Real_Aktiv_AttributeGroup_type = Signal Real Aktiv Attribute Group
+_UI_Signal_Real_Aktiv_Schirm_AttributeGroup_type = Signal Real Aktiv Schirm Attribute Group
+_UI_Signal_Real_AttributeGroup_type = Signal Real Attribute Group
+_UI_Signal_Signalbegriff_type = Signal Signalbegriff
+_UI_Signal_Signalbegriff_Allg_AttributeGroup_type = Signal Signalbegriff Allg Attribute Group
+_UI_Signalsicht_Erreichbar_TypeClass_type = Signalsicht Erreichbar Type Class
+_UI_Signalsicht_Mindest_TypeClass_type = Signalsicht Mindest Type Class
+_UI_Signalsicht_Soll_TypeClass_type = Signalsicht Soll Type Class
+_UI_Signalsystem_TypeClass_type = Signalsystem Type Class
+_UI_Sonstige_Zulaessige_Anordnung_TypeClass_type = Sonstige Zulaessige Anordnung Type Class
+_UI_Streuscheibe_Art_TypeClass_type = Streuscheibe Art Type Class
+_UI_Streuscheibe_Betriebsstellung_TypeClass_type = Streuscheibe Betriebsstellung Type Class
+_UI_Tunnelsignal_TypeClass_type = Tunnelsignal Type Class
+_UI_Zs2_Ueberwacht_TypeClass_type = Zs2 Ueberwacht Type Class
+_UI_Annaeherungsgeschwindigkeit_TypeClass_type = Annaeherungsgeschwindigkeit Type Class
+_UI_Anzahl_Wiederhol_ZL_Anstoesse_TypeClass_type = Anzahl Wiederhol ZL Anstoesse Type Class
+_UI_Deadlockpruefung_TypeClass_type = Deadlockpruefung Type Class
+_UI_DWeg_Prio_TypeClass_type = DWeg Prio Type Class
+_UI_Einstellkontrollzeit_TypeClass_type = Einstellkontrollzeit Type Class
+_UI_Fstr_Bildezeit_TypeClass_type = Fstr Bildezeit Type Class
+_UI_FUEM_Auswertung_TypeClass_type = FUEM Auswertung Type Class
+_UI_GK_TypeClass_type = GK Type Class
+_UI_GKZSS_TypeClass_type = GKZSS Type Class
+_UI_Lenkabbruchzeit_TypeClass_type = Lenkabbruchzeit Type Class
+_UI_Lenkziffernstellen_TypeClass_type = Lenkziffernstellen Type Class
+_UI_Personal_Reaktionszeit_TypeClass_type = Personal Reaktionszeit Type Class
+_UI_Sichtzeit_Vorsignal_TypeClass_type = Sichtzeit Vorsignal Type Class
+_UI_Signalgruppe_Bezeichner_TypeClass_type = Signalgruppe Bezeichner Type Class
+_UI_Tv_GK_TypeClass_type = Tv GK Type Class
+_UI_Vmax_Annaeherung_TypeClass_type = Vmax Annaeherung Type Class
+_UI_ZL_type = ZL
+_UI_ZL_Allg_AttributeGroup_type = ZL Allg Attribute Group
+_UI_ZL_DLP_Abschnitt_type = ZL DLP Abschnitt
+_UI_ZL_DLP_Fstr_type = ZL DLP Fstr
+_UI_ZL_Fstr_type = ZL Fstr
+_UI_ZL_Fstr_Allg_AttributeGroup_type = ZL Fstr Allg Attribute Group
+_UI_ZL_Fstr_Anstoss_type = ZL Fstr Anstoss
+_UI_ZL_Fstr_Anstoss_Allg_AttributeGroup_type = ZL Fstr Anstoss Allg Attribute Group
+_UI_ZL_Fstr_Anstoss_GK_AttributeGroup_type = ZL Fstr Anstoss GK Attribute Group
+_UI_ZL_Fstr_Zuschlag_TypeClass_type = ZL Fstr Zuschlag Type Class
+_UI_ZL_Signalgruppe_type = ZL Signalgruppe
+_UI_ZL_Signalgruppe_Allg_AttributeGroup_type = ZL Signalgruppe Allg Attribute Group
+_UI_ZL_Signalgruppe_Zuordnung_type = ZL Signalgruppe Zuordnung
+_UI_ZL_ZN_AttributeGroup_type = ZL ZN Attribute Group
+_UI_ZN_Stellen_TypeClass_type = ZN Stellen Type Class
+_UI_Akustikdauer_Anb_Ann_TypeClass_type = Akustikdauer Anb Ann Type Class
+_UI_Akustikdauer_Sonst_TypeClass_type = Akustikdauer Sonst Type Class
+_UI_Akustikdauer_Voranz_TypeClass_type = Akustikdauer Voranz Type Class
+_UI_Anschlussnummer_TypeClass_type = Anschlussnummer Type Class
+_UI_Ausfahrdruck_Gegengleis_TypeClass_type = Ausfahrdruck Gegengleis Type Class
+_UI_Ausfahrdruck_TypeClass_type = Ausfahrdruck Type Class
+_UI_Bedienbarkeit_Anzeigefeld_TypeClass_type = Bedienbarkeit Anzeigefeld Type Class
+_UI_Besonderes_Schaltkriterium_TypeClass_type = Besonderes Schaltkriterium Type Class
+_UI_Bezeichnung_Besondere_Anlage_TypeClass_type = Bezeichnung Besondere Anlage Type Class
+_UI_Bf_Kennung_TypeClass_type = Bf Kennung Type Class
+_UI_Bf_Nr_ANB_TypeClass_type = Bf Nr ANB Type Class
+_UI_Bf_Nr_TypeClass_type = Bf Nr Type Class
+_UI_Bf_Nr_ZN_A_TypeClass_type = Bf Nr ZN AType Class
+_UI_Durchfahrdruck_TypeClass_type = Durchfahrdruck Type Class
+_UI_Einfahrdruck_Gegengleis_TypeClass_type = Einfahrdruck Gegengleis Type Class
+_UI_Einfahrdruck_TypeClass_type = Einfahrdruck Type Class
+_UI_Einwahlstelle_TypeClass_type = Einwahlstelle Type Class
+_UI_Funktionalitaet_Anzeigefeld_TypeClass_type = Funktionalitaet Anzeigefeld Type Class
+_UI_HOA_TypeClass_type = HOA Type Class
+_UI_IP_Adresse_TypeClass_type = IP Adresse Type Class
+_UI_Koppelunterstation_TypeClass_type = Koppelunterstation Type Class
+_UI_KUs_Zeittelegramm_TypeClass_type = KUs Zeittelegramm Type Class
+_UI_Meldedruck_TypeClass_type = Meldedruck Type Class
+_UI_Reaktivierungsfunktion_TypeClass_type = Reaktivierungsfunktion Type Class
+_UI_Sichtbarkeit_Anzeigefeld_TypeClass_type = Sichtbarkeit Anzeigefeld Type Class
+_UI_Telegramm_02_TypeClass_type = Telegramm 02 Type Class
+_UI_Telegramm_03_TypeClass_type = Telegramm 03 Type Class
+_UI_Telegramm_04_TypeClass_type = Telegramm 04 Type Class
+_UI_Telegramm_10_TypeClass_type = Telegramm 10 Type Class
+_UI_Telegramm_21_TypeClass_type = Telegramm 21 Type Class
+_UI_Telegramm_30_TypeClass_type = Telegramm 30 Type Class
+_UI_Telegramm_84_Alle_Fstr_AttributeGroup_type = Telegramm 84 Alle Fstr Attribute Group
+_UI_Telegramm_84_Einzelne_Fstr_AttributeGroup_type = Telegramm 84 Einzelne Fstr Attribute Group
+_UI_Telegramm_84_Fuer_Alle_Fstr_TypeClass_type = Telegramm 84 Fuer Alle Fstr Type Class
+_UI_Telegramm_84_Verzicht_TypeClass_type = Telegramm 84 Verzicht Type Class
+_UI_Telegramm_85_Alle_Fstr_AttributeGroup_type = Telegramm 85 Alle Fstr Attribute Group
+_UI_Telegramm_85_Einzelne_Fstr_AttributeGroup_type = Telegramm 85 Einzelne Fstr Attribute Group
+_UI_Telegramm_85_Fuer_Alle_Fstr_TypeClass_type = Telegramm 85 Fuer Alle Fstr Type Class
+_UI_Telegrammwiederholung_TypeClass_type = Telegrammwiederholung Type Class
+_UI_Unterstation_Max_TypeClass_type = Unterstation Max Type Class
+_UI_Unterstation_Nr_TypeClass_type = Unterstation Nr Type Class
+_UI_Verzoegerung_Manuell_Loeschung_TypeClass_type = Verzoegerung Manuell Loeschung Type Class
+_UI_Vormeldestart_TypeClass_type = Vormeldestart Type Class
+_UI_ZBS_Adresse_TypeClass_type = ZBS Adresse Type Class
+_UI_ZBS_Anbindung_TypeClass_type = ZBS Anbindung Type Class
+_UI_ZBS_Schnittstelle_TypeClass_type = ZBS Schnittstelle Type Class
+_UI_Zeitsynchronisation_Funkuhr_TypeClass_type = Zeitsynchronisation Funkuhr Type Class
+_UI_ZLV_Bus_type = ZLV Bus
+_UI_ZLV_Bus_Allg_AttributeGroup_type = ZLV Bus Allg Attribute Group
+_UI_ZLV_Bus_Besondere_Anlage_type = ZLV Bus Besondere Anlage
+_UI_ZLV_Bus_Besondere_Anlage_Bezeichnung_AttributeGroup_type = ZLV Bus Besondere Anlage Bezeichnung Attribute Group
+_UI_ZLV_Bus_Bezeichnung_AttributeGroup_type = ZLV Bus Bezeichnung Attribute Group
+_UI_ZLV_Bus_Nr_TypeClass_type = ZLV Bus Nr Type Class
+_UI_ZLV_Bus_US_Zuordnung_type = ZLV Bus US Zuordnung
+_UI_ZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_type = ZLV Bus US Zuordnung Telegramm Attribute Group
+_UI_ZLV_Bus_Zuordnung_Allg_AttributeGroup_type = ZLV Bus Zuordnung Allg Attribute Group
+_UI_ZN_type = ZN
+_UI_ZN_A_Bedienbezeichner_Frei_TypeClass_type = ZN ABedienbezeichner Frei Type Class
+_UI_ZN_A_Bezeichner_TypeClass_type = ZN ABezeichner Type Class
+_UI_ZN_Akustik_type = ZN Akustik
+_UI_ZN_Akustik_Anzeigefeld_AttributeGroup_type = ZN Akustik Anzeigefeld Attribute Group
+_UI_ZN_Allg_AttributeGroup_type = ZN Allg Attribute Group
+_UI_ZN_Anlagentyp_TypeClass_type = ZN Anlagentyp Type Class
+_UI_ZN_Anzeigefeld_type = ZN Anzeigefeld
+_UI_ZN_Anzeigefeld_Allg_AttributeGroup_type = ZN Anzeigefeld Allg Attribute Group
+_UI_ZN_Anzeigefeld_Bezeichnung_AttributeGroup_type = ZN Anzeigefeld Bezeichnung Attribute Group
+_UI_ZN_Anzeigefeld_Loeschkriterium_TypeClass_type = ZN Anzeigefeld Loeschkriterium Type Class
+_UI_ZN_Feld_Ohne_Anzeige_TypeClass_type = ZN Feld Ohne Anzeige Type Class
+_UI_ZN_Fortschalt_Krit_Druck_AttributeGroup_type = ZN Fortschalt Krit Druck Attribute Group
+_UI_ZN_Fortschalt_Krit_Schalt_AttributeGroup_type = ZN Fortschalt Krit Schalt Attribute Group
+_UI_ZN_Fortschalt_Kriterium_type = ZN Fortschalt Kriterium
+_UI_ZN_Modem_TypeClass_type = ZN Modem Type Class
+_UI_ZN_Schaltkriterium_TypeClass_type = ZN Schaltkriterium Type Class
+_UI_ZN_Telegramm_84_Zuordnung_type = ZN Telegramm 84 Zuordnung
+_UI_ZN_Telegramm_85_Zuordnung_type = ZN Telegramm 85 Zuordnung
+_UI_ZN_Unterstation_type = ZN Unterstation
+_UI_ZN_Unterstation_Allg_AttributeGroup_type = ZN Unterstation Allg Attribute Group
+_UI_ZN_Unterstation_Bf_Nr_AttributeGroup_type = ZN Unterstation Bf Nr Attribute Group
+_UI_ZN_ZBS_type = ZN ZBS
+_UI_Zugvorbereitungsmeldung_TypeClass_type = Zugvorbereitungsmeldung Type Class
+_UI_ID_Anforderer_Element_TypeClass_type = ID Anforderer Element Type Class
+_UI_ID_Anforderung_TypeClass_type = ID Anforderung Type Class
+_UI_ID_Anhang_ohne_Proxy_TypeClass_type = ID Anhang ohne Proxy Type Class
+_UI_ID_Anhang_TypeClass_type = ID Anhang Type Class
+_UI_ID_AnhangBearbeitungsvermerk_TypeClass_type = ID Anhang Bearbeitungsvermerk Type Class
+_UI_ID_Anschluss_Element_TypeClass_type = ID Anschluss Element Type Class
+_UI_ID_ATO_TS_Instanz_ohne_Proxy_TypeClass_type = ID ATO TS Instanz ohne Proxy Type Class
+_UI_ID_ATO_TS_Instanz_TypeClass_type = ID ATO TS Instanz Type Class
+_UI_ID_Ausgabe_Fachdaten_ohne_Proxy_TypeClass_type = ID Ausgabe Fachdaten ohne Proxy Type Class
+_UI_ID_Aussenelementansteuerung_ohne_Proxy_TypeClass_type = ID Aussenelementansteuerung ohne Proxy Type Class
+_UI_ID_Aussenelementansteuerung_TypeClass_type = ID Aussenelementansteuerung Type Class
+_UI_ID_Bahnsteig_Anlage_TypeClass_type = ID Bahnsteig Anlage Type Class
+_UI_ID_Bahnsteig_Kante_ohne_Proxy_TypeClass_type = ID Bahnsteig Kante ohne Proxy Type Class
+_UI_ID_Bahnsteig_Kante_TypeClass_type = ID Bahnsteig Kante Type Class
+_UI_ID_Balise_ohne_Proxy_TypeClass_type = ID Balise ohne Proxy Type Class
+_UI_ID_Balise_TypeClass_type = ID Balise Type Class
+_UI_ID_Basis_Objekt_TypeClass_type = ID Basis Objekt Type Class
+_UI_ID_Bedien_Anzeige_Element_TypeClass_type = ID Bedien Anzeige Element Type Class
+_UI_ID_Bedien_Bezirk_TypeClass_type = ID Bedien Bezirk Type Class
+_UI_ID_Bedien_Einrichtung_Oertlich_TypeClass_type = ID Bedien Einrichtung Oertlich Type Class
+_UI_ID_Bedien_Oberflaeche_TypeClass_type = ID Bedien Oberflaeche Type Class
+_UI_ID_Bedien_Standort_TypeClass_type = ID Bedien Standort Type Class
+_UI_ID_Bedien_Zentrale_TypeClass_type = ID Bedien Zentrale Type Class
+_UI_ID_Befestigung_Bauwerk_TypeClass_type = ID Befestigung Bauwerk Type Class
+_UI_ID_Beginn_Bereich_TypeClass_type = ID Beginn Bereich Type Class
+_UI_ID_Bezugspunkt_Positionierung_TypeClass_type = ID Bezugspunkt Positionierung Type Class
+_UI_ID_Bezugspunkt_TypeClass_type = ID Bezugspunkt Type Class
+_UI_ID_Binaerdaten_ohne_Proxy_TypeClass_type = ID Binaerdaten ohne Proxy Type Class
+_UI_ID_Block_Anlage_TypeClass_type = ID Block Anlage Type Class
+_UI_ID_Block_Element_TypeClass_type = ID Block Element Type Class
+_UI_ID_Block_Strecke_TypeClass_type = ID Block Strecke Type Class
+_UI_ID_BUE_Anlage_ohne_Proxy_TypeClass_type = ID BUE Anlage ohne Proxy Type Class
+_UI_ID_BUE_Anlage_TypeClass_type = ID BUE Anlage Type Class
+_UI_ID_BUE_Bedien_Anzeige_Element_TypeClass_type = ID BUE Bedien Anzeige Element Type Class
+_UI_ID_BUE_Einschaltung_TypeClass_type = ID BUE Einschaltung Type Class
+_UI_ID_BUE_Gleisbezogener_Gefahrraum_TypeClass_type = ID BUE Gleisbezogener Gefahrraum Type Class
+_UI_ID_BUE_Schnittstelle_TypeClass_type = ID BUE Schnittstelle Type Class
+_UI_ID_BUE_WS_Fstr_Zuordnung_TypeClass_type = ID BUE WS Fstr Zuordnung Type Class
+_UI_ID_Datenpunkt_ohne_Proxy_TypeClass_type = ID Datenpunkt ohne Proxy Type Class
+_UI_ID_Datenpunkt_TypeClass_type = ID Datenpunkt Type Class
+_UI_ID_DP_Bezug_Funktional_TypeClass_type = ID DP Bezug Funktional Type Class
+_UI_ID_Einschaltpunkt_TypeClass_type = ID Einschaltpunkt Type Class
+_UI_ID_Element_Grenze_TypeClass_type = ID Element Grenze Type Class
+_UI_ID_Element_TypeClass_type = ID Element Type Class
+_UI_ID_Element_Unterbringung_TypeClass_type = ID Element Unterbringung Type Class
+_UI_ID_Energie_Eingang_TypeClass_type = ID Energie Eingang Type Class
+_UI_ID_Energie_TypeClass_type = ID Energie Type Class
+_UI_ID_ESTW_Zentraleinheit_TypeClass_type = ID ESTW Zentraleinheit Type Class
+_UI_ID_ETCS_Kante_TypeClass_type = ID ETCS Kante Type Class
+_UI_ID_ETCS_Knoten_ohne_Proxy_TypeClass_type = ID ETCS Knoten ohne Proxy Type Class
+_UI_ID_ETCS_Knoten_TypeClass_type = ID ETCS Knoten Type Class
+_UI_ID_EV_Modul_TypeClass_type = ID EV Modul Type Class
+_UI_ID_Fachtelegramm_ohne_Proxy_TypeClass_type = ID Fachtelegramm ohne Proxy Type Class
+_UI_ID_Fachtelegramm_TypeClass_type = ID Fachtelegramm Type Class
+_UI_ID_Fla_Schutz_TypeClass_type = ID Fla Schutz Type Class
+_UI_ID_FMA_Anlage_Rangier_Frei_TypeClass_type = ID FMA Anlage Rangier Frei Type Class
+_UI_ID_FMA_Anlage_TypeClass_type = ID FMA Anlage Type Class
+_UI_ID_FMA_Element_TypeClass_type = ID FMA Element Type Class
+_UI_ID_FMA_Komponente_TypeClass_type = ID FMA Komponente Type Class
+_UI_ID_Fortschaltung_Start_TypeClass_type = ID Fortschaltung Start Type Class
+_UI_ID_Fstr_Aneinander_TypeClass_type = ID Fstr Aneinander Type Class
+_UI_ID_Fstr_Ausschluss_Besonders_TypeClass_type = ID Fstr Ausschluss Besonders Type Class
+_UI_ID_Fstr_DWeg_ohne_Proxy_TypeClass_type = ID Fstr DWeg ohne Proxy Type Class
+_UI_ID_Fstr_DWeg_TypeClass_type = ID Fstr DWeg Type Class
+_UI_ID_Fstr_Fahrweg_ohne_Proxy_TypeClass_type = ID Fstr Fahrweg ohne Proxy Type Class
+_UI_ID_Fstr_Fahrweg_TypeClass_type = ID Fstr Fahrweg Type Class
+_UI_ID_Fstr_Zug_Rangier_TypeClass_type = ID Fstr Zug Rangier Type Class
+_UI_ID_FT_Anschaltbedingung_TypeClass_type = ID FT Anschaltbedingung Type Class
+_UI_ID_FT_Fahrweg_Teil_TypeClass_type = ID FT Fahrweg Teil Type Class
+_UI_ID_GEO_Art_TypeClass_type = ID GEO Art Type Class
+_UI_ID_GEO_Kante_TypeClass_type = ID GEO Kante Type Class
+_UI_ID_GEO_Knoten_TypeClass_type = ID GEO Knoten Type Class
+_UI_ID_GEO_Punkt_ohne_Proxy_TypeClass_type = ID GEO Punkt ohne Proxy Type Class
+_UI_ID_GEO_Punkt_TypeClass_type = ID GEO Punkt Type Class
+_UI_ID_GFR_Anlage_ohne_Proxy_TypeClass_type = ID GFR Anlage ohne Proxy Type Class
+_UI_ID_Gleis_Abschnitt_TypeClass_type = ID Gleis Abschnitt Type Class
+_UI_ID_Gleis_Bezeichnung_TypeClass_type = ID Gleis Bezeichnung Type Class
+_UI_ID_Grenzzeichen_TypeClass_type = ID Grenzzeichen Type Class
+_UI_ID_Handschalt_Wirkfunktion_TypeClass_type = ID Handschalt Wirkfunktion Type Class
+_UI_ID_Hoehenpunkt_TypeClass_type = ID Hoehenpunkt Type Class
+_UI_ID_Information_Eingang_TypeClass_type = ID Information Eingang Type Class
+_UI_ID_Information_Primaer_TypeClass_type = ID Information Primaer Type Class
+_UI_ID_Komponente_Programmiert_TypeClass_type = ID Komponente Programmiert Type Class
+_UI_ID_Lageplan_Blattschnitt_TypeClass_type = ID Lageplan Blattschnitt Type Class
+_UI_ID_Lageplan_TypeClass_type = ID Lageplan Type Class
+_UI_ID_Lageplan_Zustand_TypeClass_type = ID Lageplan Zustand Type Class
+_UI_ID_LEU_Anlage_ohne_Proxy_TypeClass_type = ID LEU Anlage ohne Proxy Type Class
+_UI_ID_LEU_Anlage_TypeClass_type = ID LEU Anlage Type Class
+_UI_ID_LEU_Bezug_Funktional_TypeClass_type = ID LEU Bezug Funktional Type Class
+_UI_ID_LEU_Schaltkasten_ohne_Proxy_TypeClass_type = ID LEU Schaltkasten ohne Proxy Type Class
+_UI_ID_LO_Einbau_TypeClass_type = ID LO Einbau Type Class
+_UI_ID_Markante_Stelle_TypeClass_type = ID Markante Stelle Type Class
+_UI_ID_Markanter_Punkt_Gleis_Abschluss_TypeClass_type = ID Markanter Punkt Gleis Abschluss Type Class
+_UI_ID_Markanter_Punkt_TypeClass_type = ID Markanter Punkt Type Class
+_UI_ID_NB_Element_TypeClass_type = ID NB Element Type Class
+_UI_ID_NB_TypeClass_type = ID NB Type Class
+_UI_ID_NB_Zone_TypeClass_type = ID NB Zone Type Class
+_UI_ID_Oertlichkeit_Ausgabe_TypeClass_type = ID Oertlichkeit Ausgabe Type Class
+_UI_ID_Oertlichkeit_Proxy_TypeClass_type = ID Oertlichkeit Proxy Type Class
+_UI_ID_Oertlichkeit_TypeClass_type = ID Oertlichkeit Type Class
+_UI_ID_PlanPro_Schnittstelle_TypeClass_type = ID Plan Pro Schnittstelle Type Class
+_UI_ID_Planung_Einzel_TypeClass_type = ID Planung Einzel Type Class
+_UI_ID_Planungsgrundlage_TypeClass_type = ID Planungsgrundlage Type Class
+_UI_ID_PZB_Element_Bezugspunkt_TypeClass_type = ID PZB Element Bezugspunkt Type Class
+_UI_ID_PZB_Element_Mitnutzung_TypeClass_type = ID PZB Element Mitnutzung Type Class
+_UI_ID_PZB_Element_TypeClass_type = ID PZB Element Type Class
+_UI_ID_PZB_Element_Zuordnung_TypeClass_type = ID PZB Element Zuordnung Type Class
+_UI_ID_Quellelement_TypeClass_type = ID Quellelement Type Class
+_UI_ID_RBC_TypeClass_type = ID RBC Type Class
+_UI_ID_Regelzeichnung_ohne_Proxy_TypeClass_type = ID Regelzeichnung ohne Proxy Type Class
+_UI_ID_Regelzeichnung_TypeClass_type = ID Regelzeichnung Type Class
+_UI_ID_Schalter_TypeClass_type = ID Schalter Type Class
+_UI_ID_Schaltmittel_Zuordnung_TypeClass_type = ID Schaltmittel Zuordnung Type Class
+_UI_ID_Schlosskombination_TypeClass_type = ID Schlosskombination Type Class
+_UI_ID_Schluessel_TypeClass_type = ID Schluessel Type Class
+_UI_ID_Schluesselsperre_TypeClass_type = ID Schluesselsperre Type Class
+_UI_ID_Signal_Befestigung_TypeClass_type = ID Signal Befestigung Type Class
+_UI_ID_Signal_Fank_TypeClass_type = ID Signal Fank Type Class
+_UI_ID_Signal_Gleisbezechnung_TypeClass_type = ID Signal Gleisbezechnung Type Class
+_UI_ID_Signal_ohne_Proxy_TypeClass_type = ID Signal ohne Proxy Type Class
+_UI_ID_Signal_Rahmen_TypeClass_type = ID Signal Rahmen Type Class
+_UI_ID_Signal_Signalbegriff_TypeClass_type = ID Signal Signalbegriff Type Class
+_UI_ID_Signal_Start_TypeClass_type = ID Signal Start Type Class
+_UI_ID_Signal_TypeClass_type = ID Signal Type Class
+_UI_ID_Sonderanlage_TypeClass_type = ID Sonderanlage Type Class
+_UI_ID_Stellelement_TypeClass_type = ID Stellelement Type Class
+_UI_ID_Stellwerk_TypeClass_type = ID Stellwerk Type Class
+_UI_ID_Strecke_Bremsweg_ohne_Proxy_TypeClass_type = ID Strecke Bremsweg ohne Proxy Type Class
+_UI_ID_Strecke_Punkt_TypeClass_type = ID Strecke Punkt Type Class
+_UI_ID_Strecke_TypeClass_type = ID Strecke Type Class
+_UI_ID_Technischer_Punkt_TypeClass_type = ID Technischer Punkt Type Class
+_UI_ID_TOP_Kante_ohne_Proxy_TypeClass_type = ID TOP Kante ohne Proxy Type Class
+_UI_ID_TOP_Kante_TypeClass_type = ID TOP Kante Type Class
+_UI_ID_TOP_Knoten_TypeClass_type = ID TOP Knoten Type Class
+_UI_ID_Trasse_Kante_TypeClass_type = ID Trasse Kante Type Class
+_UI_ID_Trasse_Knoten_TypeClass_type = ID Trasse Knoten Type Class
+_UI_ID_Ueberhoehung_TypeClass_type = ID Ueberhoehung Type Class
+_UI_ID_Uebertragungsweg_Nach_TypeClass_type = ID Uebertragungsweg Nach Type Class
+_UI_ID_Uebertragungsweg_Von_TypeClass_type = ID Uebertragungsweg Von Type Class
+_UI_ID_Umfahrpunkt_TypeClass_type = ID Umfahrpunkt Type Class
+_UI_ID_Unterbringung_ohne_Proxy_TypeClass_type = ID Unterbringung ohne Proxy Type Class
+_UI_ID_Unterbringung_Technik_TypeClass_type = ID Unterbringung Technik Type Class
+_UI_ID_Unterbringung_TypeClass_type = ID Unterbringung Type Class
+_UI_ID_Ur_Objekt_TypeClass_type = ID Ur Objekt Type Class
+_UI_ID_Verknuepftes_Element_TypeClass_type = ID Verknuepftes Element Type Class
+_UI_ID_W_Kr_Anlage_ohne_Proxy_TypeClass_type = ID WKr Anlage ohne Proxy Type Class
+_UI_ID_W_Kr_Anlage_TypeClass_type = ID WKr Anlage Type Class
+_UI_ID_W_Kr_Gsp_Element_TypeClass_type = ID WKr Gsp Element Type Class
+_UI_ID_W_Kr_Gsp_Komponente_TypeClass_type = ID WKr Gsp Komponente Type Class
+_UI_ID_Weichenlaufkette_TypeClass_type = ID Weichenlaufkette Type Class
+_UI_ID_Ziel_TypeClass_type = ID Ziel Type Class
+_UI_ID_ZL_DLP_Fstr_TypeClass_type = ID ZL DLP Fstr Type Class
+_UI_ID_ZL_Fstr_TypeClass_type = ID ZL Fstr Type Class
+_UI_ID_ZL_Signalgruppe_TypeClass_type = ID ZL Signalgruppe Type Class
+_UI_ID_ZL_TypeClass_type = ID ZL Type Class
+_UI_ID_ZLV_Bus_ohne_Proxy_TypeClass_type = ID ZLV Bus ohne Proxy Type Class
+_UI_ID_ZLV_Bus_TypeClass_type = ID ZLV Bus Type Class
+_UI_ID_ZN_Anzeigefeld_Anstoss_TypeClass_type = ID ZN Anzeigefeld Anstoss Type Class
+_UI_ID_ZN_Anzeigefeld_TypeClass_type = ID ZN Anzeigefeld Type Class
+_UI_ID_ZN_Fortschalt_Kriterium_TypeClass_type = ID ZN Fortschalt Kriterium Type Class
+_UI_ID_ZN_TypeClass_type = ID ZN Type Class
+_UI_ID_ZN_Unterstation_TypeClass_type = ID ZN Unterstation Type Class
+_UI_ID_ZN_ZBS_TypeClass_type = ID ZN ZBS Type Class
+_UI_ID_Zugeinwirkung_TypeClass_type = ID Zugeinwirkung Type Class
+_UI_ID_Zweites_Haltfallkriterium_TypeClass_type = ID Zweites Haltfallkriterium Type Class
+_UI_Signalbegriff_ID_TypeClass_type = Signalbegriff ID Type Class
+_UI_Bez_Lageplan_Blattschnitt_TypeClass_type = Bez Lageplan Blattschnitt Type Class
+_UI_Bezeichnung_Lageplan_TypeClass_type = Bezeichnung Lageplan Type Class
+_UI_Darstellung_Polygonzug_TypeClass_type = Darstellung Polygonzug Type Class
+_UI_Darstellung_Richtungswinkel_Bezeichnung_TypeClass_type = Darstellung Richtungswinkel Bezeichnung Type Class
+_UI_Darstellung_Richtungswinkel_TypeClass_type = Darstellung Richtungswinkel Type Class
+_UI_Element_Position_type = Element Position
+_UI_Element_Position_Allg_AttributeGroup_type = Element Position Allg Attribute Group
+_UI_Element_Stil_type = Element Stil
+_UI_Element_Stil_Allg_AttributeGroup_type = Element Stil Allg Attribute Group
+_UI_Fuellung_TypeClass_type = Fuellung Type Class
+_UI_Lageplan_type = Lageplan
+_UI_Lageplan_Art_TypeClass_type = Lageplan Art Type Class
+_UI_Lageplan_Bezeichnung_AttributeGroup_type = Lageplan Bezeichnung Attribute Group
+_UI_Lageplan_Blattschnitt_type = Lageplan Blattschnitt
+_UI_Lageplan_Blattschnitt_Bezeichnung_AttributeGroup_type = Lageplan Blattschnitt Bezeichnung Attribute Group
+_UI_Lageplan_Zustand_type = Lageplan Zustand
+_UI_Linie_Art_TypeClass_type = Linie Art Type Class
+_UI_Linie_Farbwert_TypeClass_type = Linie Farbwert Type Class
+_UI_Linie_Subart_TypeClass_type = Linie Subart Type Class
+_UI_PlanPro_Layoutinfo_type = Plan Pro Layoutinfo
+_UI_Polygonzug_Ausrichtung_TypeClass_type = Polygonzug Ausrichtung Type Class
+_UI_Polygonzug_Blattschnitt_TypeClass_type = Polygonzug Blattschnitt Type Class
+_UI_Referenz_LST_Zustand_TypeClass_type = Referenz LST Zustand Type Class
+_UI_Referenz_Objekt_Darstellung_TypeClass_type = Referenz Objekt Darstellung Type Class
+_UI_Container_AttributeGroup_aTOSegmentProfile_feature = ATO Segment Profile
+_UI_Container_AttributeGroup_aTOTimingPoint_feature = ATO Timing Point
+_UI_Container_AttributeGroup_aTOTSInstanz_feature = ATOTS Instanz
+_UI_Container_AttributeGroup_binaerdaten_feature = Binaerdaten
+_UI_Container_AttributeGroup_eTCSRichtungsanzeige_feature = ETCS Richtungsanzeige
+_UI_Container_AttributeGroup_streckeBremsweg_feature = Strecke Bremsweg
+_UI_Container_AttributeGroup_zBSSchutzstrecke_feature = ZBS Schutzstrecke
+_UI_Container_AttributeGroup_zBSSignal_feature = ZBS Signal
+_UI_Container_AttributeGroup_zLVBusBesondereAnlage_feature = ZLV Bus Besondere Anlage
+_UI_Planung_G_Schriftfeld_AttributeGroup_planungsbueroLogo_feature = Planungsbuero Logo
+_UI_BasisAttribut_AttributeGroup_iDBearbeitungsvermerk_feature = ID Bearbeitungsvermerk
+_UI_Bezeichnung_Aussenanlage_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Element_AttributeGroup_bezeichnungAussenanlage_feature = Bezeichnung Aussenanlage
+_UI_Bezeichnung_Element_AttributeGroup_bezeichnungLageplanKurz_feature = Bezeichnung Lageplan Kurz
+_UI_Bezeichnung_Element_AttributeGroup_bezeichnungLageplanLang_feature = Bezeichnung Lageplan Lang
+_UI_Bezeichnung_Element_AttributeGroup_bezeichnungTabelle_feature = Bezeichnung Tabelle
+_UI_Bezeichnung_Element_AttributeGroup_kennzahl_feature = Kennzahl
+_UI_Bezeichnung_Element_AttributeGroup_oertlicherElementname_feature = Oertlicher Elementname
+_UI_Bezeichnung_Lageplan_Kurz_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Lageplan_Lang_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Tabelle_TypeClass_wert_feature = Wert
+_UI_Datum_Auslieferung_TypeClass_wert_feature = Wert
+_UI_ID_Bearbeitungsvermerk_TypeClass_wert_feature = Wert
+_UI_ID_Bearbeitungsvermerk_TypeClass_value_feature = Value
+_UI_ID_Bearbeitungsvermerk_TypeClass_invalidReference_feature = Invalid Reference
+_UI_Kennzahl_TypeClass_wert_feature = Wert
+_UI_Oertlicher_Elementname_TypeClass_wert_feature = Wert
+_UI_Pruefmerkmale_Daten_AttributeGroup_datumAuslieferung_feature = Datum Auslieferung
+_UI_Pruefmerkmale_Daten_AttributeGroup_pruefsumme_feature = Pruefsumme
+_UI_Pruefmerkmale_Daten_AttributeGroup_pruefsummeArt_feature = Pruefsumme Art
+_UI_Pruefmerkmale_Daten_AttributeGroup_versionAuslieferung_feature = Version Auslieferung
+_UI_Pruefsumme_Art_TypeClass_wert_feature = Wert
+_UI_Pruefsumme_TypeClass_wert_feature = Wert
+_UI_Version_Auslieferung_TypeClass_wert_feature = Wert
+_UI_Zeiger_TypeClass_wert_feature = Wert
+_UI_Abstand_TypeClass_wert_feature = Wert
+_UI_Anhang_anhangAllg_feature = Anhang Allg
+_UI_Anhang_Allg_AttributeGroup_anhangArt_feature = Anhang Art
+_UI_Anhang_Allg_AttributeGroup_dateiname_feature = Dateiname
+_UI_Anhang_Allg_AttributeGroup_dateityp_feature = Dateityp
+_UI_Anhang_Art_TypeClass_wert_feature = Wert
+_UI_Basis_Objekt_basisObjektAllg_feature = Basis Objekt Allg
+_UI_Basis_Objekt_iDBearbeitungsvermerk_feature = ID Bearbeitungsvermerk
+_UI_Basis_Objekt_iDOertlichkeitAusgabe_feature = ID Oertlichkeit Ausgabe
+_UI_Basis_Objekt_objektreferenzen_feature = Objektreferenzen
+_UI_Basis_Objekt_Allg_AttributeGroup_bestandsschutz_feature = Bestandsschutz
+_UI_Basis_Objekt_Allg_AttributeGroup_objektzustandBesonders_feature = Objektzustand Besonders
+_UI_Basis_Objekt_Allg_AttributeGroup_datumRegelwerk_feature = Datum Regelwerk
+_UI_Basis_Objekt_Allg_AttributeGroup_iDAnhangRegelwerkBesonders_feature = ID Anhang Regelwerk Besonders
+_UI_Bearbeitungsvermerk_bearbeitungsvermerkAllg_feature = Bearbeitungsvermerk Allg
+_UI_Bearbeitungsvermerk_iDAnhang_feature = ID Anhang
+_UI_Bearbeitungsvermerk_Allg_AttributeGroup_bearbeitungsvermerkRolle_feature = Bearbeitungsvermerk Rolle
+_UI_Bearbeitungsvermerk_Allg_AttributeGroup_bestandsrelevanz_feature = Bestandsrelevanz
+_UI_Bearbeitungsvermerk_Allg_AttributeGroup_bVDarstellungInPlan_feature = BV Darstellung In Plan
+_UI_Bearbeitungsvermerk_Allg_AttributeGroup_bVKategorie_feature = BV Kategorie
+_UI_Bearbeitungsvermerk_Allg_AttributeGroup_kommentar_feature = Kommentar
+_UI_Bearbeitungsvermerk_Allg_AttributeGroup_kurztext_feature = Kurztext
+_UI_Bearbeitungsvermerk_Allg_AttributeGroup_zeitBearbeitungsvermerk_feature = Zeit Bearbeitungsvermerk
+_UI_Bearbeitungsvermerk_Rolle_TypeClass_wert_feature = Wert
+_UI_Begrenzung_A_TypeClass_wert_feature = Wert
+_UI_Begrenzung_B_TypeClass_wert_feature = Wert
+_UI_Bereich_Objekt_bereichObjektTeilbereich_feature = Bereich Objekt Teilbereich
+_UI_Bereich_Objekt_Teilbereich_AttributeGroup_begrenzungA_feature = Begrenzung A
+_UI_Bereich_Objekt_Teilbereich_AttributeGroup_begrenzungB_feature = Begrenzung B
+_UI_Bereich_Objekt_Teilbereich_AttributeGroup_iDTOPKante_feature = IDTOP Kante
+_UI_Bereich_Objekt_Teilbereich_AttributeGroup_richtungsbezug_feature = Richtungsbezug
+_UI_Beschreibung_TypeClass_wert_feature = Wert
+_UI_Bestandsrelevanz_TypeClass_wert_feature = Wert
+_UI_Bestandsschutz_TypeClass_wert_feature = Wert
+_UI_BV_Darstellung_In_Plan_TypeClass_wert_feature = Wert
+_UI_BV_Kategorie_TypeClass_wert_feature = Wert
+_UI_Dateiname_TypeClass_wert_feature = Wert
+_UI_Dateityp_TypeClass_wert_feature = Wert
+_UI_Datum_Regelwerk_TypeClass_wert_feature = Wert
+_UI_DB_GDI_Referenz_TypeClass_wert_feature = Wert
+_UI_Identitaet_TypeClass_wert_feature = Wert
+_UI_Km_Massgebend_TypeClass_wert_feature = Wert
+_UI_Kommentar_TypeClass_wert_feature = Wert
+_UI_Kurztext_TypeClass_wert_feature = Wert
+_UI_Lieferobjekt_beschreibung_feature = Beschreibung
+_UI_Lieferobjekt_iDGEOPunkt_feature = IDGEO Punkt
+_UI_Lieferobjekt_iDLOEinbau_feature = IDLO Einbau
+_UI_Lieferobjekt_lOErsatz_feature = LO Ersatz
+_UI_Lieferobjekt_lOMaterial_feature = LO Material
+_UI_LO_Ausgabestand_TypeClass_wert_feature = Wert
+_UI_LO_Datum_Herstellung_TypeClass_wert_feature = Wert
+_UI_LO_DB_Freigabe_TypeClass_wert_feature = Wert
+_UI_LO_EMA_Nr_TypeClass_wert_feature = Wert
+_UI_LO_Ersatz_TypeClass_wert_feature = Wert
+_UI_LO_Firmensachnummer_TypeClass_wert_feature = Wert
+_UI_LO_Material_AttributeGroup_lOAusgabestand_feature = LO Ausgabestand
+_UI_LO_Material_AttributeGroup_lODatumHerstellung_feature = LO Datum Herstellung
+_UI_LO_Material_AttributeGroup_lODBFreigabe_feature = LODB Freigabe
+_UI_LO_Material_AttributeGroup_lOEMANr_feature = LOEMA Nr
+_UI_LO_Material_AttributeGroup_lOFirmensachnummer_feature = LO Firmensachnummer
+_UI_LO_Material_AttributeGroup_lOSeriennummer_feature = LO Seriennummer
+_UI_LO_Seriennummer_TypeClass_wert_feature = Wert
+_UI_LST_Objekt_Art_TypeClass_wert_feature = Wert
+_UI_Objektreferenzen_AttributeGroup_dBGDIReferenz_feature = DBGDI Referenz
+_UI_Objektreferenzen_AttributeGroup_technischerPlatz_feature = Technischer Platz
+_UI_Objektzustand_Besonders_TypeClass_wert_feature = Wert
+_UI_Proxy_Objekt_lSTObjektArt_feature = LST Objekt Art
+_UI_Punkt_Objekt_punktObjektStrecke_feature = Punkt Objekt Strecke
+_UI_Punkt_Objekt_punktObjektTOPKante_feature = Punkt Objekt TOP Kante
+_UI_Punkt_Objekt_Strecke_AttributeGroup_iDStrecke_feature = ID Strecke
+_UI_Punkt_Objekt_Strecke_AttributeGroup_kmMassgebend_feature = Km Massgebend
+_UI_Punkt_Objekt_Strecke_AttributeGroup_streckeKm_feature = Strecke Km
+_UI_Punkt_Objekt_TOP_Kante_AttributeGroup_abstand_feature = Abstand
+_UI_Punkt_Objekt_TOP_Kante_AttributeGroup_iDGEOPunktBerechnet_feature = IDGEO Punkt Berechnet
+_UI_Punkt_Objekt_TOP_Kante_AttributeGroup_iDTOPKante_feature = IDTOP Kante
+_UI_Punkt_Objekt_TOP_Kante_AttributeGroup_wirkrichtung_feature = Wirkrichtung
+_UI_Punkt_Objekt_TOP_Kante_AttributeGroup_seitlicheLage_feature = Seitliche Lage
+_UI_Punkt_Objekt_TOP_Kante_AttributeGroup_seitlicherAbstand_feature = Seitlicher Abstand
+_UI_Richtungsbezug_TypeClass_wert_feature = Wert
+_UI_Seitliche_Lage_TypeClass_wert_feature = Wert
+_UI_Seitlicher_Abstand_TypeClass_wert_feature = Wert
+_UI_Technischer_Platz_TypeClass_wert_feature = Wert
+_UI_Ur_Objekt_identitaet_feature = Identitaet
+_UI_Wirkrichtung_TypeClass_wert_feature = Wert
+_UI_Zeit_Bearbeitungsvermerk_TypeClass_wert_feature = Wert
+_UI_Abstand_ATO_Halt_Vor_EoA_TypeClass_wert_feature = Wert
+_UI_ATO_Segment_Profile_abstandATOHaltVorEoA_feature = Abstand ATO Halt Vor Eo A
+_UI_ATO_Segment_Profile_bezeichnung_feature = Bezeichnung
+_UI_ATO_Segment_Profile_iDATOTSInstanz_feature = IDATOTS Instanz
+_UI_ATO_Segment_Profile_iDATOTSInstanzNachbar_feature = IDATOTS Instanz Nachbar
+_UI_ATO_Segment_Profile_iDETCSKante_feature = IDETCS Kante
+_UI_ATO_Segment_Profile_iDOertlichkeit_feature = ID Oertlichkeit
+_UI_ATO_Segment_Profile_Bezeichnung_AttributeGroup_nIDSP_feature = NIDSP
+_UI_ATO_Timing_Point_aTOTimingPointAllg_feature = ATO Timing Point Allg
+_UI_ATO_Timing_Point_bezeichnung_feature = Bezeichnung
+_UI_ATO_Timing_Point_iDSignal_feature = ID Signal
+_UI_ATO_Timing_Point_Allg_AttributeGroup_erreichungstoleranz_feature = Erreichungstoleranz
+_UI_ATO_Timing_Point_Allg_AttributeGroup_haltetoleranz_feature = Haltetoleranz
+_UI_ATO_Timing_Point_Allg_AttributeGroup_nIDTP_feature = NIDTP
+_UI_ATO_Timing_Point_Bezeichnung_AttributeGroup_bezeichnungATOTP_feature = Bezeichnung ATOTP
+_UI_ATO_TS_Instanz_aTOTSInstanzAdresse_feature = ATOTS Instanz Adresse
+_UI_ATO_TS_Instanz_iDUnterbringung_feature = ID Unterbringung
+_UI_ATO_TS_Instanz_Adresse_AttributeGroup_nIDATOTS_feature = NIDATOTS
+_UI_ATO_TS_Instanz_Adresse_AttributeGroup_nIDCATOTS_feature = NIDCATOTS
+_UI_Bezeichnung_ATO_TP_TypeClass_wert_feature = Wert
+_UI_Erreichungstoleranz_TypeClass_wert_feature = Wert
+_UI_Haltetoleranz_TypeClass_wert_feature = Wert
+_UI_NID_ATOTS_TypeClass_wert_feature = Wert
+_UI_NID_C_ATOTS_TypeClass_wert_feature = Wert
+_UI_NID_SP_TypeClass_wert_feature = Wert
+_UI_NID_TP_TypeClass_wert_feature = Wert
+_UI_AEA_Allg_AttributeGroup_aussenelementansteuerungArt_feature = Aussenelementansteuerung Art
+_UI_AEA_Allg_AttributeGroup_bauart_feature = Bauart
+_UI_AEA_Energieversorgung_AttributeGroup_energieversorgungArtErsatz_feature = Energieversorgung Art Ersatz
+_UI_AEA_Energieversorgung_AttributeGroup_iDEnergieSekundaer_feature = ID Energie Sekundaer
+_UI_AEA_Energieversorgung_AttributeGroup_energieversorgungArt_feature = Energieversorgung Art
+_UI_AEA_Energieversorgung_AttributeGroup_iDEnergiePrimaer_feature = ID Energie Primaer
+_UI_AEA_GFK_IP_Adressblock_AttributeGroup_gFKKategorie_feature = GFK Kategorie
+_UI_AEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockBlauV4_feature = IP Adressblock Blau V4
+_UI_AEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockBlauV6_feature = IP Adressblock Blau V6
+_UI_AEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockGrauV4_feature = IP Adressblock Grau V4
+_UI_AEA_GFK_IP_Adressblock_AttributeGroup_iPAdressblockGrauV6_feature = IP Adressblock Grau V6
+_UI_AEA_GFK_IP_Adressblock_AttributeGroup_regionalbereich_feature = Regionalbereich
+_UI_Aussenelementansteuerung_aEAAllg_feature = AEA Allg
+_UI_Aussenelementansteuerung_aEAEnergieversorgung_feature = AEA Energieversorgung
+_UI_Aussenelementansteuerung_aEAGFKIPAdressblock_feature = AEAGFKIP Adressblock
+_UI_Aussenelementansteuerung_bezeichnung_feature = Bezeichnung
+_UI_Aussenelementansteuerung_iDInformationPrimaer_feature = ID Information Primaer
+_UI_Aussenelementansteuerung_iDInformationSekundaer_feature = ID Information Sekundaer
+_UI_Aussenelementansteuerung_iDOertlichkeitGesteuert_feature = ID Oertlichkeit Gesteuert
+_UI_Aussenelementansteuerung_iDOertlichkeitNamensgebend_feature = ID Oertlichkeit Namensgebend
+_UI_Aussenelementansteuerung_iDUnterbringung_feature = ID Unterbringung
+_UI_Aussenelementansteuerung_Art_TypeClass_wert_feature = Wert
+_UI_Aussenelementansteuerung_Bezeichnung_AttributeGroup_bezeichnungAEA_feature = Bezeichnung AEA
+_UI_Bandbreite_TypeClass_wert_feature = Wert
+_UI_Bauart_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_AEA_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_ESTW_ZE_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Stellwerk_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_TSO_TypeClass_wert_feature = Wert
+_UI_Energieversorgung_Art_Ersatz_TypeClass_wert_feature = Wert
+_UI_Energieversorgung_Art_TypeClass_wert_feature = Wert
+_UI_ESTW_ZE_Energieversorgung_AttributeGroup_energieversorgungArtErsatz2_feature = Energieversorgung Art Ersatz2
+_UI_ESTW_ZE_Energieversorgung_AttributeGroup_energieversorgungArt_feature = Energieversorgung Art
+_UI_ESTW_ZE_Energieversorgung_AttributeGroup_iDEnergiePrimaer_feature = ID Energie Primaer
+_UI_ESTW_ZE_Energieversorgung_AttributeGroup_energieversorgungArtErsatz_feature = Energieversorgung Art Ersatz
+_UI_ESTW_ZE_Energieversorgung_AttributeGroup_iDEnergieSekundaer_feature = ID Energie Sekundaer
+_UI_ESTW_Zentraleinheit_bezeichnung_feature = Bezeichnung
+_UI_ESTW_Zentraleinheit_eSTWZEEnergieversorgung_feature = ESTWZE Energieversorgung
+_UI_ESTW_Zentraleinheit_eSTWZentraleinheitAllg_feature = ESTW Zentraleinheit Allg
+_UI_ESTW_Zentraleinheit_iDOertlichkeitNamensgebend_feature = ID Oertlichkeit Namensgebend
+_UI_ESTW_Zentraleinheit_iDUnterbringung_feature = ID Unterbringung
+_UI_ESTW_Zentraleinheit_iDBedienBezirkVirtuell_feature = ID Bedien Bezirk Virtuell
+_UI_ESTW_Zentraleinheit_iDBedienBezirkZentral_feature = ID Bedien Bezirk Zentral
+_UI_ESTW_Zentraleinheit_Allg_AttributeGroup_bauart_feature = Bauart
+_UI_ESTW_Zentraleinheit_Allg_AttributeGroup_hersteller_feature = Hersteller
+_UI_ESTW_Zentraleinheit_Bezeichnung_AttributeGroup_bezeichnungESTWZE_feature = Bezeichnung ESTWZE
+_UI_GFK_Kategorie_TypeClass_wert_feature = Wert
+_UI_Hersteller_TypeClass_wert_feature = Wert
+_UI_IP_Adressblock_Blau_TypeClass_wert_feature = Wert
+_UI_IP_Adressblock_Blau_V4_TypeClass_wert_feature = Wert
+_UI_IP_Adressblock_Blau_V6_TypeClass_wert_feature = Wert
+_UI_IP_Adressblock_Grau_TypeClass_wert_feature = Wert
+_UI_IP_Adressblock_Grau_V4_TypeClass_wert_feature = Wert
+_UI_IP_Adressblock_Grau_V6_TypeClass_wert_feature = Wert
+_UI_Medium_Art_TypeClass_wert_feature = Wert
+_UI_Netz_Art_TypeClass_wert_feature = Wert
+_UI_Regionalbereich_TypeClass_wert_feature = Wert
+_UI_Standort_Beschreibung_TypeClass_wert_feature = Wert
+_UI_Stell_Bereich_zusatzinformationStellwerk_feature = Zusatzinformation Stellwerk
+_UI_Stell_Bereich_bezeichnungStellwerk_feature = Bezeichnung Stellwerk
+_UI_Stell_Bereich_iDAussenelementansteuerung_feature = ID Aussenelementansteuerung
+_UI_Stellelement_iDEnergie_feature = ID Energie
+_UI_Stellelement_iDInformation_feature = ID Information
+_UI_Technik_Art_TypeClass_wert_feature = Wert
+_UI_Technik_Beschreibung_TypeClass_wert_feature = Wert
+_UI_Technik_Standort_bezeichnung_feature = Bezeichnung
+_UI_Technik_Standort_iDBedienStandort_feature = ID Bedien Standort
+_UI_Technik_Standort_iDUnterbringung_feature = ID Unterbringung
+_UI_Technik_Standort_tSOIPAdressblock_feature = TSOIP Adressblock
+_UI_Technik_Standort_Bezeichnung_AttributeGroup_bezeichnungTSO_feature = Bezeichnung TSO
+_UI_TSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockBlau_feature = IP Adressblock Blau
+_UI_TSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockGrau_feature = IP Adressblock Grau
+_UI_TSO_IP_AB_Teilsystem_AttributeGroup_tSOTeilsystemArt_feature = TSO Teilsystem Art
+_UI_TSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV4_feature = IP Adressblock Blau V4
+_UI_TSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV6_feature = IP Adressblock Blau V6
+_UI_TSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV4_feature = IP Adressblock Grau V4
+_UI_TSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV6_feature = IP Adressblock Grau V6
+_UI_TSO_IP_Adressblock_AttributeGroup_regionalbereich_feature = Regionalbereich
+_UI_TSO_IP_Adressblock_AttributeGroup_tSOIPABTeilsystem_feature = TSOIPAB Teilsystem
+_UI_TSO_Teilsystem_Art_TypeClass_wert_feature = Wert
+_UI_Tueranschlag_TypeClass_wert_feature = Wert
+_UI_Uebertragungsweg_iDAnhangUeWegNach_feature = ID Anhang Ue Weg Nach
+_UI_Uebertragungsweg_iDAnhangUeWegVon_feature = ID Anhang Ue Weg Von
+_UI_Uebertragungsweg_iDUebertragungswegNach_feature = ID Uebertragungsweg Nach
+_UI_Uebertragungsweg_iDUebertragungswegVon_feature = ID Uebertragungsweg Von
+_UI_Uebertragungsweg_uebertragungswegArt_feature = Uebertragungsweg Art
+_UI_Uebertragungsweg_uebertragungswegTechnik_feature = Uebertragungsweg Technik
+_UI_Uebertragungsweg_Art_TypeClass_wert_feature = Wert
+_UI_Uebertragungsweg_Technik_AttributeGroup_bandbreite_feature = Bandbreite
+_UI_Uebertragungsweg_Technik_AttributeGroup_mediumArt_feature = Medium Art
+_UI_Uebertragungsweg_Technik_AttributeGroup_netzArt_feature = Netz Art
+_UI_Uebertragungsweg_Technik_AttributeGroup_technikArt_feature = Technik Art
+_UI_Uebertragungsweg_Technik_AttributeGroup_technikBeschreibung_feature = Technik Beschreibung
+_UI_Unterbringung_punktObjektStrecke_feature = Punkt Objekt Strecke
+_UI_Unterbringung_unterbringungAllg_feature = Unterbringung Allg
+_UI_Unterbringung_iDGEOPunkt_feature = IDGEO Punkt
+_UI_Unterbringung_punktObjektTOPKante_feature = Punkt Objekt TOP Kante
+_UI_Unterbringung_standortBeschreibung_feature = Standort Beschreibung
+_UI_Unterbringung_unterbringungPolygonzug_feature = Unterbringung Polygonzug
+_UI_Unterbringung_Allg_AttributeGroup_hersteller_feature = Hersteller
+_UI_Unterbringung_Allg_AttributeGroup_tueranschlag_feature = Tueranschlag
+_UI_Unterbringung_Allg_AttributeGroup_unterbringungArt_feature = Unterbringung Art
+_UI_Unterbringung_Allg_AttributeGroup_unterbringungBefestigung_feature = Unterbringung Befestigung
+_UI_Unterbringung_Art_TypeClass_wert_feature = Wert
+_UI_Unterbringung_Befestigung_TypeClass_wert_feature = Wert
+_UI_Unterbringung_Polygonzug_TypeClass_wert_feature = Wert
+_UI_Zusatzinformation_Stellwerk_TypeClass_wert_feature = Wert
+_UI_Bahnsteig_Anlage_bezeichnung_feature = Bezeichnung
+_UI_Bahnsteig_Anlage_Bezeichnung_AttributeGroup_bezeichnungBahnsteigAnlage_feature = Bezeichnung Bahnsteig Anlage
+_UI_Bahnsteig_Dach_iDBahnsteigKante_feature = ID Bahnsteig Kante
+_UI_Bahnsteig_Kante_bahnsteigKanteAllg_feature = Bahnsteig Kante Allg
+_UI_Bahnsteig_Kante_bezeichnung_feature = Bezeichnung
+_UI_Bahnsteig_Kante_iDBahnsteigAnlage_feature = ID Bahnsteig Anlage
+_UI_Bahnsteig_Kante_Allg_AttributeGroup_lageZumGleis_feature = Lage Zum Gleis
+_UI_Bahnsteig_Kante_Allg_AttributeGroup_systemhoehe_feature = Systemhoehe
+_UI_Bahnsteig_Kante_Bezeichnung_AttributeGroup_bezeichnungBahnsteigKante_feature = Bezeichnung Bahnsteig Kante
+_UI_Bahnsteig_Zugang_bahnsteigZugangAllg_feature = Bahnsteig Zugang Allg
+_UI_Bahnsteig_Zugang_iDBahnsteigAnlage_feature = ID Bahnsteig Anlage
+_UI_Bahnsteig_Zugang_Allg_AttributeGroup_bahnsteigZugangArt_feature = Bahnsteig Zugang Art
+_UI_Bahnsteig_Zugang_Allg_AttributeGroup_hauptzugang_feature = Hauptzugang
+_UI_Bahnsteig_Zugang_Art_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Bahnsteig_Anlage_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Bahnsteig_Kante_TypeClass_wert_feature = Wert
+_UI_Hauptzugang_TypeClass_wert_feature = Wert
+_UI_Lage_Zum_Gleis_TypeClass_wert_feature = Wert
+_UI_Systemhoehe_TypeClass_wert_feature = Wert
+_UI_Abstand_Bes_Langer_Einfahrweg_TypeClass_wert_feature = Wert
+_UI_Abstand_Datenpunkt_EH_EM_Folgesignal_TypeClass_wert_feature = Wert
+_UI_Abstand_Datenpunkt_EP_TPI_TypeClass_wert_feature = Wert
+_UI_Abstand_Datenpunkt_TPI_Folgesignal_TypeClass_wert_feature = Wert
+_UI_Abstand_Einmesspunkt_TypeClass_wert_feature = Wert
+_UI_Abstand_Grenze_Bereich_C_TypeClass_wert_feature = Wert
+_UI_Abstand_Reduziert_TypeClass_wert_feature = Wert
+_UI_Anlagenteil_Sonstige_TypeClass_wert_feature = Wert
+_UI_Anordnung_Im_DP_TypeClass_wert_feature = Wert
+_UI_Anwendung_ESG_TypeClass_wert_feature = Wert
+_UI_Anwendung_GNT_TypeClass_wert_feature = Wert
+_UI_Anwendung_Sonst_TypeClass_wert_feature = Wert
+_UI_Anwendungssystem_TypeClass_wert_feature = Wert
+_UI_Anzahl_Voll_LEU_Kalkuliert_TypeClass_wert_feature = Wert
+_UI_Anzeigetext_TypeClass_wert_feature = Wert
+_UI_Art_Bedingung_TypeClass_wert_feature = Wert
+_UI_Ausgang_Nr_TypeClass_wert_feature = Wert
+_UI_Ausrichtung_TypeClass_wert_feature = Wert
+_UI_Ausstieg_ETCS_Sperre_TypeClass_wert_feature = Wert
+_UI_Balise_baliseAllg_feature = Balise Allg
+_UI_Balise_iDDatenpunkt_feature = ID Datenpunkt
+_UI_Balise_Allg_AttributeGroup_anordnungImDP_feature = Anordnung Im DP
+_UI_Balise_Allg_AttributeGroup_baliseGeraetestand_feature = Balise Geraetestand
+_UI_Balise_Allg_AttributeGroup_balisenhalter_feature = Balisenhalter
+_UI_Balise_Allg_AttributeGroup_fabrikat_feature = Fabrikat
+_UI_Balise_Allg_AttributeGroup_hersteller_feature = Hersteller
+_UI_Balise_Allg_AttributeGroup_hinweisBalisenbefestigung_feature = Hinweis Balisenbefestigung
+_UI_Balise_Allg_AttributeGroup_montageabweichung_feature = Montageabweichung
+_UI_Balise_Geraetestand_TypeClass_wert_feature = Wert
+_UI_Balisenhalter_TypeClass_wert_feature = Wert
+_UI_Baseline_System_Version_TypeClass_wert_feature = Wert
+_UI_Bedingung_Besondere_AttributeGroup_artBedingung_feature = Art Bedingung
+_UI_Bedingung_PZB_AttributeGroup_iDPZBElement_feature = IDPZB Element
+_UI_Bedingung_PZB_AttributeGroup_wirksam_feature = Wirksam
+_UI_Bedingung_Signal_AttributeGroup_iDSignalSignalbegriff_feature = ID Signal Signalbegriff
+_UI_Bedingung_Signal_AttributeGroup_iDSignalbegriffWeiterer_feature = ID Signalbegriff Weiterer
+_UI_Bedingung_Signal_AttributeGroup_verwendungAlsRueckfall_feature = Verwendung Als Rueckfall
+_UI_Bedingung_Sonstige_AttributeGroup_anlagenteilSonstige_feature = Anlagenteil Sonstige
+_UI_Bedingung_Sonstige_AttributeGroup_textBedingung_feature = Text Bedingung
+_UI_Bedingung_Weiche_AttributeGroup_bedingungWeichenlage_feature = Bedingung Weichenlage
+_UI_Bedingung_Weiche_AttributeGroup_iDWElement_feature = IDW Element
+_UI_Bedingung_Weichenlage_TypeClass_wert_feature = Wert
+_UI_Bez_Strecke_BTS_1_TypeClass_wert_feature = Wert
+_UI_Bez_Strecke_BTS_2_TypeClass_wert_feature = Wert
+_UI_Bez_Strecke_BTS_3_TypeClass_wert_feature = Wert
+_UI_Bez_ZUB_Bereichsgrenze_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_ETCS_Kante_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_LEU_Anlage_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_RBC_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_ZUB_SE_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_ZUB_TypeClass_wert_feature = Wert
+_UI_Bgrenze_Nach_ESG_Bed_Ausstieg_AttributeGroup_iDWElement_feature = IDW Element
+_UI_Bgrenze_Nach_ESG_Bed_Ausstieg_AttributeGroup_wLage_feature = WLage
+_UI_Bgrenze_Nach_L2_Bed_Einstieg_AttributeGroup_iDWElement_feature = IDW Element
+_UI_Bgrenze_Nach_L2_Bed_Einstieg_AttributeGroup_wLage_feature = WLage
+_UI_Bgrenze_Nach_LZB_Bed_Einstieg_AttributeGroup_iDWElement_feature = IDW Element
+_UI_Bgrenze_Nach_LZB_Bed_Einstieg_AttributeGroup_wLage_feature = WLage
+_UI_Bgrenze_Nach_Ohne_Bed_Einstieg_AttributeGroup_iDWElement_feature = IDW Element
+_UI_Bgrenze_Nach_Ohne_Bed_Einstieg_AttributeGroup_wLage_feature = WLage
+_UI_Bgrenze_Nach_PZB_Bed_Einstieg_AttributeGroup_iDWElement_feature = IDW Element
+_UI_Bgrenze_Nach_PZB_Bed_Einstieg_AttributeGroup_wLage_feature = WLage
+_UI_Bgrenze_Nach_ZBS_Bed_Einstieg_AttributeGroup_iDWElement_feature = IDW Element
+_UI_Bgrenze_Nach_ZBS_Bed_Einstieg_AttributeGroup_wLage_feature = WLage
+_UI_Bgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_bezStreckeBTS1_feature = Bez Strecke BTS1
+_UI_Bgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_bezStreckeBTS2_feature = Bez Strecke BTS2
+_UI_Bgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_bezStreckeBTS3_feature = Bez Strecke BTS3
+_UI_Bgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_kmBTS1_feature = Km BTS1
+_UI_Bgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_kmBTS2_feature = Km BTS2
+_UI_Bgrenze_RBC_Wechsel_BTS_Kette_AttributeGroup_kmBTS3_feature = Km BTS3
+_UI_Binaerdaten_binaerdatenDatei_feature = Binaerdaten Datei
+_UI_Binaerdaten_daten_feature = Daten
+_UI_Binaerdaten_Datei_AttributeGroup_dateiname_feature = Dateiname
+_UI_Binaerdaten_Datei_AttributeGroup_dateitypBinaerdatei_feature = Dateityp Binaerdatei
+_UI_D_LEVELTR_TypeClass_wert_feature = Wert
+_UI_Dateityp_Binaerdatei_TypeClass_wert_feature = Wert
+_UI_Daten_TypeClass_wert_feature = Wert
+_UI_Datenpunkt_datenpunktAllg_feature = Datenpunkt Allg
+_UI_Datenpunkt_datenpunktEinmesspunkt_feature = Datenpunkt Einmesspunkt
+_UI_Datenpunkt_dPBezugFunktional_feature = DP Bezug Funktional
+_UI_Datenpunkt_dPETCSAdresse_feature = DPETCS Adresse
+_UI_Datenpunkt_dPTyp_feature = DP Typ
+_UI_Datenpunkt_iDRBC_feature = IDRBC
+_UI_Datenpunkt_lEUSteuernde_feature = LEU Steuernde
+_UI_Datenpunkt_dPTelegramm_feature = DP Telegramm
+_UI_Datenpunkt_dPTelegrammESG_feature = DP Telegramm ESG
+_UI_Datenpunkt_Allg_AttributeGroup_anwendungssystem_feature = Anwendungssystem
+_UI_Datenpunkt_Allg_AttributeGroup_ausrichtung_feature = Ausrichtung
+_UI_Datenpunkt_Allg_AttributeGroup_datenpunktBeschreibung_feature = Datenpunkt Beschreibung
+_UI_Datenpunkt_Allg_AttributeGroup_datenpunktLaenge_feature = Datenpunkt Laenge
+_UI_Datenpunkt_Allg_AttributeGroup_sonstigeStandortangabe_feature = Sonstige Standortangabe
+_UI_Datenpunkt_Allg_AttributeGroup_standortangabeBalisenschild_feature = Standortangabe Balisenschild
+_UI_Datenpunkt_Beschreibung_TypeClass_wert_feature = Wert
+_UI_Datenpunkt_Einmesspunkt_AttributeGroup_abstandEinmesspunkt_feature = Abstand Einmesspunkt
+_UI_Datenpunkt_Einmesspunkt_AttributeGroup_iDEinmesspunkt_feature = ID Einmesspunkt
+_UI_Datenpunkt_Laenge_TypeClass_wert_feature = Wert
+_UI_Datenpunkt_Link_iDDPLinkStart_feature = IDDP Link Start
+_UI_Datenpunkt_Link_iDDPLinkZiel_feature = IDDP Link Ziel
+_UI_Datenpunkt_Link_iDFachtelegramm_feature = ID Fachtelegramm
+_UI_Datenpunkt_Link_linkDistanz_feature = Link Distanz
+_UI_Datenpunkt_Link_zielDPAusrichtung_feature = Ziel DP Ausrichtung
+_UI_Datenpunkt_Link_anwendungESG_feature = Anwendung ESG
+_UI_Datenpunkt_Link_anwendungGNT_feature = Anwendung GNT
+_UI_Datenpunkt_Link_zBSMerkmale_feature = ZBS Merkmale
+_UI_Delta_VGES_TypeClass_wert_feature = Wert
+_UI_Delta_VLES_TypeClass_wert_feature = Wert
+_UI_Delta_VZES_TypeClass_wert_feature = Wert
+_UI_DP_ATO_TypeClass_wert_feature = Wert
+_UI_DP_Bezug_Funktional_Art_TypeClass_wert_feature = Wert
+_UI_DP_Bezug_Funktional_AttributeGroup_dPBezugFunktionalArt_feature = DP Bezug Funktional Art
+_UI_DP_Bezug_Funktional_AttributeGroup_iDDPBezugFunktional_feature = IDDP Bezug Funktional
+_UI_DP_ETCS_Adresse_AttributeGroup_nIDBG_feature = NIDBG
+_UI_DP_ETCS_Adresse_AttributeGroup_nIDC_feature = NIDC
+_UI_DP_Link_Art_TypeClass_wert_feature = Wert
+_UI_DP_Telegramm_AttributeGroup_eTCSSystemVersion_feature = ETCS System Version
+_UI_DP_Telegramm_AttributeGroup_iDFachtelegramm_feature = ID Fachtelegramm
+_UI_DP_Telegramm_AttributeGroup_iDFTAnschaltbedingung_feature = IDFT Anschaltbedingung
+_UI_DP_Telegramm_AttributeGroup_sRSVersion_feature = SRS Version
+_UI_DP_Telegramm_ESG_AttributeGroup_eTCSSystemVersion_feature = ETCS System Version
+_UI_DP_Telegramm_ESG_AttributeGroup_iDFachtelegramm_feature = ID Fachtelegramm
+_UI_DP_Telegramm_ESG_AttributeGroup_iDFTAnschaltbedingungGeplant_feature = IDFT Anschaltbedingung Geplant
+_UI_DP_Telegramm_ESG_AttributeGroup_iDFTAnschaltbedingungRealisiert_feature = IDFT Anschaltbedingung Realisiert
+_UI_DP_Telegramm_ESG_AttributeGroup_sRSVersion_feature = SRS Version
+_UI_DP_Typ_Art_TypeClass_wert_feature = Wert
+_UI_DP_Typ_AttributeGroup_dPTypArt_feature = DP Typ Art
+_UI_DP_Typ_AttributeGroup_dPTypGESG_feature = DP Typ GESG
+_UI_DP_Typ_AttributeGroup_dPTypGETCS_feature = DP Typ GETCS
+_UI_DP_Typ_AttributeGroup_dPTypGGNT_feature = DP Typ GGNT
+_UI_DP_Typ_AttributeGroup_dPTypGSonst_feature = DP Typ GSonst
+_UI_DP_Typ_AttributeGroup_dPTypGTrans_feature = DP Typ GTrans
+_UI_DP_Typ_AttributeGroup_dPTypGZBS_feature = DP Typ GZBS
+_UI_DP_Typ_ESG_TypeClass_wert_feature = Wert
+_UI_DP_Typ_ETCS_TypeClass_wert_feature = Wert
+_UI_DP_Typ_GESG_AttributeGroup_dPTypESG_feature = DP Typ ESG
+_UI_DP_Typ_GESG_AttributeGroup_dPVerlinkt_feature = DP Verlinkt
+_UI_DP_Typ_GESG_AttributeGroup_lfdNrAmBezugspunkt_feature = Lfd Nr Am Bezugspunkt
+_UI_DP_Typ_GETCS_AttributeGroup_dPATO_feature = DPATO
+_UI_DP_Typ_GETCS_AttributeGroup_dPTypETCS_feature = DP Typ ETCS
+_UI_DP_Typ_GETCS_AttributeGroup_iDDPBezugFunktional_feature = IDDP Bezug Funktional
+_UI_DP_Typ_GETCS_AttributeGroup_verkuerzterAbstand_feature = Verkuerzter Abstand
+_UI_DP_Typ_GGNT_AttributeGroup_dPTypGNT_feature = DP Typ GNT
+_UI_DP_Typ_GNT_TypeClass_wert_feature = Wert
+_UI_DP_Typ_GSonst_AttributeGroup_anwendungSonst_feature = Anwendung Sonst
+_UI_DP_Typ_GSonst_AttributeGroup_dPTypSonst_feature = DP Typ Sonst
+_UI_DP_Typ_GTrans_AttributeGroup_dPTypTrans_feature = DP Typ Trans
+_UI_DP_Typ_GZBS_AttributeGroup_dPTypZBS_feature = DP Typ ZBS
+_UI_DP_Typ_Sonst_TypeClass_wert_feature = Wert
+_UI_DP_Typ_Trans_TypeClass_wert_feature = Wert
+_UI_DP_Typ_V_La_TypeClass_wert_feature = Wert
+_UI_DP_Typ_ZBS_TypeClass_wert_feature = Wert
+_UI_DP_Verlinkt_TypeClass_wert_feature = Wert
+_UI_Dunkelschaltanstoss_TypeClass_wert_feature = Wert
+_UI_DWeg_Intervall_200_TypeClass_wert_feature = Wert
+_UI_DWeg_Intervall_50_200_TypeClass_wert_feature = Wert
+_UI_DWeg_Intervall_50_TypeClass_wert_feature = Wert
+_UI_Eingang_Gepuffert_TypeClass_wert_feature = Wert
+_UI_Einstieg_Erlaubt_TypeClass_wert_feature = Wert
+_UI_Einstieg_Ohne_Rueckw_Sig_TypeClass_wert_feature = Wert
+_UI_Einzeldatei_Art_TypeClass_wert_feature = Wert
+_UI_Energie_Eingang_Art_TypeClass_wert_feature = Wert
+_UI_ESG_Ind_Erlaeuterung_TypeClass_wert_feature = Wert
+_UI_ESG_Ind_Parameter_TypeClass_wert_feature = Wert
+_UI_ESG_Ind_Parameterwert_TypeClass_wert_feature = Wert
+_UI_ESG_Individuelle_Merkmale_AttributeGroup_eSGIndErlaeuterung_feature = ESG Ind Erlaeuterung
+_UI_ESG_Individuelle_Merkmale_AttributeGroup_eSGIndParameter_feature = ESG Ind Parameter
+_UI_ESG_Individuelle_Merkmale_AttributeGroup_eSGIndParameterwert_feature = ESG Ind Parameterwert
+_UI_ESG_Individuelle_Merkmale_AttributeGroup_iDAnhangUiG_feature = ID Anhang Ui G
+_UI_ESG_Spezifische_Merkmale_AttributeGroup_eTCSPaketnummer_feature = ETCS Paketnummer
+_UI_ESG_Spezifische_Merkmale_AttributeGroup_eTCSParErlaeuterung_feature = ETCS Par Erlaeuterung
+_UI_ESG_Spezifische_Merkmale_AttributeGroup_eTCSParametername_feature = ETCS Parametername
+_UI_ESG_Spezifische_Merkmale_AttributeGroup_eTCSParameterwert_feature = ETCS Parameterwert
+_UI_ESG_Spezifische_Merkmale_AttributeGroup_rekursion2Nr_feature = Rekursion2 Nr
+_UI_ESG_Spezifische_Merkmale_AttributeGroup_rekursionNr_feature = Rekursion Nr
+_UI_ETCS_Adresse_AttributeGroup_nIDC_feature = NIDC
+_UI_ETCS_Adresse_AttributeGroup_nIDRBC_feature = NIDRBC
+_UI_ETCS_Gefahrpunktabstand_Abweichend_TypeClass_wert_feature = Wert
+_UI_ETCS_Kante_bezeichnung_feature = Bezeichnung
+_UI_ETCS_Kante_iDETCSKnotenA_feature = IDETCS Knoten A
+_UI_ETCS_Kante_iDETCSKnotenB_feature = IDETCS Knoten B
+_UI_ETCS_Kante_iDRBC_feature = IDRBC
+_UI_ETCS_Kante_iDStrecke_feature = ID Strecke
+_UI_ETCS_Kante_iDTOPKante_feature = IDTOP Kante
+_UI_ETCS_Kante_Bezeichnung_AttributeGroup_bezeichnungETCSKante_feature = Bezeichnung ETCS Kante
+_UI_ETCS_Knoten_iDTOPKnoten_feature = IDTOP Knoten
+_UI_ETCS_Knoten_knotenAufTOPKante_feature = Knoten Auf TOP Kante
+_UI_ETCS_Knoten_Art_Sonstige_TypeClass_wert_feature = Wert
+_UI_ETCS_Paketnummer_TypeClass_wert_feature = Wert
+_UI_ETCS_Par_Erlaeuterung_TypeClass_wert_feature = Wert
+_UI_ETCS_Parametername_TypeClass_wert_feature = Wert
+_UI_ETCS_Parameterwert_TypeClass_wert_feature = Wert
+_UI_ETCS_Richtungsanzeige_iDFstrFahrweg_feature = ID Fstr Fahrweg
+_UI_ETCS_Richtungsanzeige_iDOertlichkeitInRichtung_feature = ID Oertlichkeit In Richtung
+_UI_ETCS_Richtungsanzeige_textmeldung_feature = Textmeldung
+_UI_ETCS_Signal_eTCSGefahrpunktabstandAbweichend_feature = ETCS Gefahrpunktabstand Abweichend
+_UI_ETCS_Signal_eTCSSignalAllg_feature = ETCS Signal Allg
+_UI_ETCS_Signal_eTCSSignalDWeg_feature = ETCS Signal DWeg
+_UI_ETCS_Signal_eTCSSignalTBV_feature = ETCS Signal TBV
+_UI_ETCS_Signal_iDETCSGefahrpunkt_feature = IDETCS Gefahrpunkt
+_UI_ETCS_Signal_iDETCSGefahrpunkt2_feature = IDETCS Gefahrpunkt2
+_UI_ETCS_Signal_iDHOAFBOA_feature = IDHOAFBOA
+_UI_ETCS_Signal_iDRBC_feature = IDRBC
+_UI_ETCS_Signal_iDSignal_feature = ID Signal
+_UI_ETCS_Signal_Allg_AttributeGroup_ausstiegETCSSperre_feature = Ausstieg ETCS Sperre
+_UI_ETCS_Signal_Allg_AttributeGroup_dunkelschaltanstoss_feature = Dunkelschaltanstoss
+_UI_ETCS_Signal_Allg_AttributeGroup_einstiegErlaubt_feature = Einstieg Erlaubt
+_UI_ETCS_Signal_Allg_AttributeGroup_gruppenID_feature = Gruppen ID
+_UI_ETCS_Signal_Allg_AttributeGroup_untergruppenID_feature = Untergruppen ID
+_UI_ETCS_Signal_DWeg_AttributeGroup_dWegIntervall200_feature = DWeg Intervall200
+_UI_ETCS_Signal_DWeg_AttributeGroup_dWegIntervall50_feature = DWeg Intervall50
+_UI_ETCS_Signal_DWeg_AttributeGroup_dWegIntervall50200_feature = DWeg Intervall50200
+_UI_ETCS_Signal_TBV_AttributeGroup_tBVMeldepunkt_feature = TBV Meldepunkt
+_UI_ETCS_Signal_TBV_AttributeGroup_tBVTunnelbereichLaenge_feature = TBV Tunnelbereich Laenge
+_UI_ETCS_Signal_TBV_AttributeGroup_tBVTunnelsignal_feature = TBV Tunnelsignal
+_UI_ETCS_System_Version_TypeClass_wert_feature = Wert
+_UI_ETCS_W_Kr_eTCSWKrMUKA_feature = ETCSW Kr MUKA
+_UI_ETCS_W_Kr_iDETCSGefahrpunktNebengleis_feature = IDETCS Gefahrpunkt Nebengleis
+_UI_ETCS_W_Kr_iDETCSKnoten_feature = IDETCS Knoten
+_UI_ETCS_W_Kr_iDRBC_feature = IDRBC
+_UI_ETCS_W_Kr_iDWKrAnlage_feature = IDW Kr Anlage
+_UI_ETCS_W_Kr_MUKA_AttributeGroup_gruppenID_feature = Gruppen ID
+_UI_ETCS_W_Kr_MUKA_AttributeGroup_untergruppenID_feature = Untergruppen ID
+_UI_EV_Modul_eVModulAusgang_feature = EV Modul Ausgang
+_UI_EV_Modul_eVModulPhysisch_feature = EV Modul Physisch
+_UI_EV_Modul_eVModulVirtuell_feature = EV Modul Virtuell
+_UI_EV_Modul_Art_TypeClass_wert_feature = Wert
+_UI_EV_Modul_Ausgang_AttributeGroup_ausgangNr_feature = Ausgang Nr
+_UI_EV_Modul_Ausgang_AttributeGroup_maxUnterbrechungszeit_feature = Max Unterbrechungszeit
+_UI_EV_Modul_Ausgang_AttributeGroup_nennleistung_feature = Nennleistung
+_UI_EV_Modul_Ausgang_AttributeGroup_spannungArt_feature = Spannung Art
+_UI_EV_Modul_Ausgang_AttributeGroup_spannungToleranzObere_feature = Spannung Toleranz Obere
+_UI_EV_Modul_Ausgang_AttributeGroup_spannungToleranzUntere_feature = Spannung Toleranz Untere
+_UI_EV_Modul_Eingang_AttributeGroup_eingangGepuffert_feature = Eingang Gepuffert
+_UI_EV_Modul_Eingang_AttributeGroup_primaerquelle_feature = Primaerquelle
+_UI_EV_Modul_Eingang_AttributeGroup_energieEingangArt_feature = Energie Eingang Art
+_UI_EV_Modul_Eingang_AttributeGroup_iDEnergieEingang_feature = ID Energie Eingang
+_UI_EV_Modul_Physisch_AttributeGroup_eVModulArt_feature = EV Modul Art
+_UI_EV_Modul_Physisch_AttributeGroup_eVModulEingang_feature = EV Modul Eingang
+_UI_EV_Modul_Physisch_AttributeGroup_eVModulTyp_feature = EV Modul Typ
+_UI_EV_Modul_Physisch_AttributeGroup_hersteller_feature = Hersteller
+_UI_EV_Modul_Physisch_AttributeGroup_iDElementUnterbringung_feature = ID Element Unterbringung
+_UI_EV_Modul_Typ_TypeClass_wert_feature = Wert
+_UI_EV_Modul_Virtuell_AttributeGroup_iDQuellelement_feature = ID Quellelement
+_UI_Fabrikat_TypeClass_wert_feature = Wert
+_UI_Fachtelegramm_fTFahrwegTeile_feature = FT Fahrweg Teile
+_UI_Fachtelegramm_iDDokuTelegrammkodierung_feature = ID Doku Telegrammkodierung
+_UI_Fachtelegramm_wirkrichtungInDatenpunkt_feature = Wirkrichtung In Datenpunkt
+_UI_Fachtelegramm_fTESGMerkmale_feature = FTESG Merkmale
+_UI_Fachtelegramm_fTETCSL2Merkmale_feature = FTETCSL2 Merkmale
+_UI_Fachtelegramm_fTETCSTransMerkmale_feature = FTETCS Trans Merkmale
+_UI_Fachtelegramm_fTGNTMerkmale_feature = FTGNT Merkmale
+_UI_Fachtelegramm_fTZBSMerkmale_feature = FTZBS Merkmale
+_UI_FT_Anschaltbedingung_bedingungBesondere_feature = Bedingung Besondere
+_UI_FT_Anschaltbedingung_bedingungPZB_feature = Bedingung PZB
+_UI_FT_Anschaltbedingung_bedingungSignal_feature = Bedingung Signal
+_UI_FT_Anschaltbedingung_bedingungSonstige_feature = Bedingung Sonstige
+_UI_FT_Anschaltbedingung_bedingungWeiche_feature = Bedingung Weiche
+_UI_FT_ESG_Merkmale_AttributeGroup_abstandBesLangerEinfahrweg_feature = Abstand Bes Langer Einfahrweg
+_UI_FT_ESG_Merkmale_AttributeGroup_dPTypVLa_feature = DP Typ VLa
+_UI_FT_ESG_Merkmale_AttributeGroup_eSGIndividuelleMerkmale_feature = ESG Individuelle Merkmale
+_UI_FT_ESG_Merkmale_AttributeGroup_eSGSpezifischeMerkmale_feature = ESG Spezifische Merkmale
+_UI_FT_ESG_Merkmale_AttributeGroup_iDMassgebendesZielsignal_feature = ID Massgebendes Zielsignal
+_UI_FT_ESG_Merkmale_AttributeGroup_individualisierungWeitere_feature = Individualisierung Weitere
+_UI_FT_ESG_Merkmale_AttributeGroup_laengeGestufteVSignalisierung_feature = Laenge Gestufte VSignalisierung
+_UI_FT_ESG_Merkmale_AttributeGroup_nIDTSR_feature = NIDTSR
+_UI_FT_ESG_Merkmale_AttributeGroup_projektierungsfall_feature = Projektierungsfall
+_UI_FT_ESG_Merkmale_AttributeGroup_telegrammnummer_feature = Telegrammnummer
+_UI_FT_ESG_Merkmale_AttributeGroup_ueberwachungLaenge_feature = Ueberwachung Laenge
+_UI_FT_ESG_Merkmale_AttributeGroup_vStart_feature = VStart
+_UI_FT_ESG_Merkmale_AttributeGroup_vZiel_feature = VZiel
+_UI_FT_ESG_Merkmale_AttributeGroup_vorsignalabstand_feature = Vorsignalabstand
+_UI_FT_ESG_Subtyp_TypeClass_wert_feature = Wert
+_UI_FT_ESG_Typ_TypeClass_wert_feature = Wert
+_UI_FT_ETCS_L2_Merkmale_AttributeGroup_fTETCSL2Typ_feature = FTETCSL2 Typ
+_UI_FT_ETCS_L2_Merkmale_AttributeGroup_vBCKennung_feature = VBC Kennung
+_UI_FT_ETCS_L2_Merkmale_AttributeGroup_vBCNIDC_feature = VBCNIDC
+_UI_FT_ETCS_L2_Merkmale_AttributeGroup_vBCSetzen_feature = VBC Setzen
+_UI_FT_ETCS_L2_Merkmale_AttributeGroup_vBCTimer_feature = VBC Timer
+_UI_FT_ETCS_L2_Typ_TypeClass_wert_feature = Wert
+_UI_FT_ETCS_Trans_Merkmale_AttributeGroup_fTETCSTransPaket41_feature = FTETCS Trans Paket41
+_UI_FT_ETCS_Trans_Merkmale_AttributeGroup_fTETCSTransPaketN_feature = FTETCS Trans Paket N
+_UI_FT_ETCS_Trans_Paket_41_AttributeGroup_dLEVELTR_feature = DLEVELTR
+_UI_FT_ETCS_Trans_Paket_41_AttributeGroup_lACKLEVELTR_feature = LACKLEVELTR
+_UI_FT_ETCS_Trans_Paket_41_AttributeGroup_mLEVELTR_feature = MLEVELTR
+_UI_FT_ETCS_Trans_Paket_41_AttributeGroup_nIDSTM_feature = NIDSTM
+_UI_FT_ETCS_Trans_Paket_N_AttributeGroup_eTCSPaketnummer_feature = ETCS Paketnummer
+_UI_FT_ETCS_Trans_Paket_N_AttributeGroup_eTCSParErlaeuterung_feature = ETCS Par Erlaeuterung
+_UI_FT_ETCS_Trans_Paket_N_AttributeGroup_eTCSParametername_feature = ETCS Parametername
+_UI_FT_ETCS_Trans_Paket_N_AttributeGroup_eTCSParameterwert_feature = ETCS Parameterwert
+_UI_FT_ETCS_Trans_Paket_N_AttributeGroup_rekursion2Nr_feature = Rekursion2 Nr
+_UI_FT_ETCS_Trans_Paket_N_AttributeGroup_rekursionNr_feature = Rekursion Nr
+_UI_FT_Fahrweg_Teil_fTFahrwegTeilAllg_feature = FT Fahrweg Teil Allg
+_UI_FT_Fahrweg_Teil_iDZielDatenpunkt_feature = ID Ziel Datenpunkt
+_UI_FT_Fahrweg_Teil_iDZielSignal_feature = ID Ziel Signal
+_UI_FT_Fahrweg_Teil_zielWElement_feature = Ziel WElement
+_UI_FT_Fahrweg_Teil_iDStartDatenpunkt_feature = ID Start Datenpunkt
+_UI_FT_Fahrweg_Teil_iDStartSignal_feature = ID Start Signal
+_UI_FT_Fahrweg_Teil_startWElement_feature = Start WElement
+_UI_FT_Fahrweg_Teil_Allg_AttributeGroup_fWTeilNummer_feature = FW Teil Nummer
+_UI_FT_Fahrweg_Teil_Allg_AttributeGroup_umfahrstrasse_feature = Umfahrstrasse
+_UI_FT_Fahrweg_Teil_Allg_AttributeGroup_zielIstFahrwegende_feature = Ziel Ist Fahrwegende
+_UI_FT_Fahrweg_Teile_AttributeGroup_iDFTFahrwegTeil_feature = IDFT Fahrweg Teil
+_UI_FT_Fahrweg_Teile_AttributeGroup_istBefahren_feature = Ist Befahren
+_UI_FT_GNT_Merkmale_AttributeGroup_deltaVGES_feature = Delta VGES
+_UI_FT_GNT_Merkmale_AttributeGroup_deltaVLES_feature = Delta VLES
+_UI_FT_GNT_Merkmale_AttributeGroup_deltaVZES_feature = Delta VZES
+_UI_FT_GNT_Merkmale_AttributeGroup_fTGNTPunktart_feature = FTGNT Punktart
+_UI_FT_GNT_Merkmale_AttributeGroup_lLA_feature = LLA
+_UI_FT_GNT_Merkmale_AttributeGroup_neigung_feature = Neigung
+_UI_FT_GNT_Merkmale_AttributeGroup_sBE_feature = SBE
+_UI_FT_GNT_Merkmale_AttributeGroup_sTZ_feature = STZ
+_UI_FT_GNT_Merkmale_AttributeGroup_vGR_feature = VGR
+_UI_FT_GNT_Merkmale_AttributeGroup_vLA_feature = VLA
+_UI_FT_GNT_Merkmale_AttributeGroup_vZ_feature = VZ
+_UI_FT_GNT_Merkmale_AttributeGroup_zLA_feature = ZLA
+_UI_FT_GNT_Punktart_TypeClass_wert_feature = Wert
+_UI_FT_Hinweis_Funktion_TypeClass_wert_feature = Wert
+_UI_FT_ZBS_Merkmale_AttributeGroup_fTHinweisFunktion_feature = FT Hinweis Funktion
+_UI_FT_ZBS_Merkmale_AttributeGroup_fTZBSMerkmaleLa_feature = FTZBS Merkmale La
+_UI_FT_ZBS_Merkmale_AttributeGroup_fTZBSTyp_feature = FTZBS Typ
+_UI_FT_ZBS_Merkmale_AttributeGroup_laenge1_feature = Laenge1
+_UI_FT_ZBS_Merkmale_AttributeGroup_lMG_feature = LMG
+_UI_FT_ZBS_Merkmale_AttributeGroup_massgebendeNeig1_feature = Massgebende Neig1
+_UI_FT_ZBS_Merkmale_AttributeGroup_massgebendeNeigSchutzstrecke_feature = Massgebende Neig Schutzstrecke
+_UI_FT_ZBS_Merkmale_AttributeGroup_mastschild_feature = Mastschild
+_UI_FT_ZBS_Merkmale_AttributeGroup_schutzstreckeErforderlich_feature = Schutzstrecke Erforderlich
+_UI_FT_ZBS_Merkmale_AttributeGroup_schutzstreckeVorhanden_feature = Schutzstrecke Vorhanden
+_UI_FT_ZBS_Merkmale_AttributeGroup_telegrammnummer_feature = Telegrammnummer
+_UI_FT_ZBS_Merkmale_AttributeGroup_ueberwachungLaenge_feature = Ueberwachung Laenge
+_UI_FT_ZBS_Merkmale_AttributeGroup_vBefehlR_feature = VBefehl R
+_UI_FT_ZBS_Merkmale_AttributeGroup_vBefehlZ_feature = VBefehl Z
+_UI_FT_ZBS_Merkmale_AttributeGroup_vFrei_feature = VFrei
+_UI_FT_ZBS_Merkmale_AttributeGroup_vZulStrecke_feature = VZul Strecke
+_UI_FT_ZBS_Merkmale_AttributeGroup_vGR1_feature = VGR1
+_UI_FT_ZBS_Merkmale_AttributeGroup_vGR2_feature = VGR2
+_UI_FT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichDistanz_feature = ZBS La Bereich Distanz
+_UI_FT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichGeschwindigkeit_feature = ZBS La Bereich Geschwindigkeit
+_UI_FT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichLaenge_feature = ZBS La Bereich Laenge
+_UI_FT_ZBS_Merkmale_La_AttributeGroup_zBSLaBereichNeigung_feature = ZBS La Bereich Neigung
+_UI_FT_ZBS_Typ_TypeClass_wert_feature = Wert
+_UI_FW_Teil_Nummer_TypeClass_wert_feature = Wert
+_UI_Gruppen_ID_TypeClass_wert_feature = Wert
+_UI_Harter_Ausstieg_Aus_L2_TypeClass_wert_feature = Wert
+_UI_Hinweis_Balisenbefestigung_TypeClass_wert_feature = Wert
+_UI_Individualisierung_Weitere_TypeClass_wert_feature = Wert
+_UI_Ist_Befahren_TypeClass_wert_feature = Wert
+_UI_Km_BTS_1_TypeClass_wert_feature = Wert
+_UI_Km_BTS_2_TypeClass_wert_feature = Wert
+_UI_Km_BTS_3_TypeClass_wert_feature = Wert
+_UI_Knoten_Auf_TOP_Kante_AttributeGroup_eTCSKnotenArtSonstige_feature = ETCS Knoten Art Sonstige
+_UI_Knoten_Auf_TOP_Kante_AttributeGroup_punktObjektTOPKante_feature = Punkt Objekt TOP Kante
+_UI_Konfigurationskennung_TypeClass_wert_feature = Wert
+_UI_L_ACKLEVELTR_TypeClass_wert_feature = Wert
+_UI_Laenge_1_TypeClass_wert_feature = Wert
+_UI_Laenge_Ausfuehrungsbereich_TypeClass_wert_feature = Wert
+_UI_Laenge_Gestufte_V_Signalisierung_TypeClass_wert_feature = Wert
+_UI_Laenge_Soll_Mind_150_TypeClass_wert_feature = Wert
+_UI_Leistungsbedarf_TypeClass_wert_feature = Wert
+_UI_LEU_Anlage_bezeichnung_feature = Bezeichnung
+_UI_LEU_Anlage_iDLEUBezugspunkt_feature = IDLEU Bezugspunkt
+_UI_LEU_Anlage_lEUAnlageAllg_feature = LEU Anlage Allg
+_UI_LEU_Anlage_Allg_AttributeGroup_leistungsbedarf_feature = Leistungsbedarf
+_UI_LEU_Anlage_Allg_AttributeGroup_lEUAnlageArt_feature = LEU Anlage Art
+_UI_LEU_Anlage_Art_TypeClass_wert_feature = Wert
+_UI_LEU_Anlage_Bezeichnung_AttributeGroup_bezeichnungLEUAnlage_feature = Bezeichnung LEU Anlage
+_UI_LEU_Ausgang_Nr_TypeClass_wert_feature = Wert
+_UI_LEU_Modul_bezeichnung_feature = Bezeichnung
+_UI_LEU_Modul_iDInformationEingang_feature = ID Information Eingang
+_UI_LEU_Modul_iDLEUAnlage_feature = IDLEU Anlage
+_UI_LEU_Modul_iDLEUSchaltkasten_feature = IDLEU Schaltkasten
+_UI_LEU_Modul_lEUModulAllg_feature = LEU Modul Allg
+_UI_LEU_Modul_lEUModulAusgang_feature = LEU Modul Ausgang
+_UI_LEU_Modul_Allg_AttributeGroup_hersteller_feature = Hersteller
+_UI_LEU_Modul_Allg_AttributeGroup_lEUModulArt_feature = LEU Modul Art
+_UI_LEU_Modul_Allg_AttributeGroup_lEUModulGeraetestand_feature = LEU Modul Geraetestand
+_UI_LEU_Modul_Allg_AttributeGroup_lEUModulTyp_feature = LEU Modul Typ
+_UI_LEU_Modul_Art_TypeClass_wert_feature = Wert
+_UI_LEU_Modul_Ausgang_AttributeGroup_iDBalise_feature = ID Balise
+_UI_LEU_Modul_Ausgang_AttributeGroup_lEUAusgangNr_feature = LEU Ausgang Nr
+_UI_LEU_Modul_Ausgang_AttributeGroup_portNrAusgPhysisch_feature = Port Nr Ausg Physisch
+_UI_LEU_Modul_Bezeichnung_AttributeGroup_modulnummer_feature = Modulnummer
+_UI_LEU_Modul_Geraetestand_TypeClass_wert_feature = Wert
+_UI_LEU_Modul_Typ_TypeClass_wert_feature = Wert
+_UI_LEU_Schaltkasten_bezeichnung_feature = Bezeichnung
+_UI_LEU_Schaltkasten_lEUSchaltkastenEnergie_feature = LEU Schaltkasten Energie
+_UI_LEU_Schaltkasten_lEUSchaltkastenTyp_feature = LEU Schaltkasten Typ
+_UI_LEU_Schaltkasten_iDUnterbringung_feature = ID Unterbringung
+_UI_LEU_Schaltkasten_lEUSchaltkastenPosition_feature = LEU Schaltkasten Position
+_UI_LEU_Schaltkasten_Bezeichnung_AttributeGroup_nummerSchaltkasten_feature = Nummer Schaltkasten
+_UI_LEU_Schaltkasten_Energie_AttributeGroup_anzahlVollLEUKalkuliert_feature = Anzahl Voll LEU Kalkuliert
+_UI_LEU_Schaltkasten_Energie_AttributeGroup_iDEnergieLEUSchaltkasten_feature = ID Energie LEU Schaltkasten
+_UI_LEU_Schaltkasten_Energie_AttributeGroup_maxLeistung_feature = Max Leistung
+_UI_LEU_Schaltkasten_Energie_AttributeGroup_spannungArt_feature = Spannung Art
+_UI_LEU_Schaltkasten_Energie_AttributeGroup_ueberbrueckungEVUnterbrechung_feature = Ueberbrueckung EV Unterbrechung
+_UI_LEU_Schaltkasten_Position_AttributeGroup_iDBezugspunktPositionierung_feature = ID Bezugspunkt Positionierung
+_UI_LEU_Schaltkasten_Position_AttributeGroup_position_feature = Position
+_UI_LEU_Schaltkasten_Position_AttributeGroup_positionSonstige_feature = Position Sonstige
+_UI_LEU_Schaltkasten_Typ_TypeClass_wert_feature = Wert
+_UI_LEU_Steuernde_AttributeGroup_iDLEUAnlage_feature = IDLEU Anlage
+_UI_LEU_Steuernde_AttributeGroup_lEUAusgangNr_feature = LEU Ausgang Nr
+_UI_Lfd_Nr_Am_Bezugspunkt_TypeClass_wert_feature = Wert
+_UI_Link_Distanz_TypeClass_wert_feature = Wert
+_UI_LLA_TypeClass_wert_feature = Wert
+_UI_LM_G_TypeClass_wert_feature = Wert
+_UI_LT_Binaerdatei_Hilfe_AttributeGroup_iDBinaerdateiHilfe_feature = ID Binaerdatei Hilfe
+_UI_LT_Binaerdatei_Hilfe_AttributeGroup_pruefmerkmaleBinaerdateiHilfe_feature = Pruefmerkmale Binaerdatei Hilfe
+_UI_LT_Binaerdatei_Hilfe_AttributeGroup_verwendungHilfe_feature = Verwendung Hilfe
+_UI_LT_Binaerdaten_AttributeGroup_iDAnhangEADoku_feature = ID Anhang EA Doku
+_UI_LT_Binaerdaten_AttributeGroup_iDBinaerdaten_feature = ID Binaerdaten
+_UI_LT_Binaerdaten_AttributeGroup_pruefmerkmaleBinaerdaten_feature = Pruefmerkmale Binaerdaten
+_UI_Luft_Telegramm_iDBaliseUebertragung_feature = ID Balise Uebertragung
+_UI_Luft_Telegramm_iDFachtelegramm_feature = ID Fachtelegramm
+_UI_Luft_Telegramm_lTBinaerdateiHilfe_feature = LT Binaerdatei Hilfe
+_UI_Luft_Telegramm_lTBinaerdaten_feature = LT Binaerdaten
+_UI_Luft_Telegramm_telegrammIndex_feature = Telegramm Index
+_UI_M_LEVELTR_TypeClass_wert_feature = Wert
+_UI_Massgebende_Neig_1_TypeClass_wert_feature = Wert
+_UI_Massgebende_Neig_Schutzstrecke_TypeClass_wert_feature = Wert
+_UI_Massgebende_Neigung_Mind_150_TypeClass_wert_feature = Wert
+_UI_Massgebende_Neigung_Mind_Sig_150_TypeClass_wert_feature = Wert
+_UI_Massgebende_Neigung_Mind_Sig_TypeClass_wert_feature = Wert
+_UI_Mastschild_TypeClass_wert_feature = Wert
+_UI_Max_Leistung_TypeClass_wert_feature = Wert
+_UI_Max_Unterbrechungszeit_TypeClass_wert_feature = Wert
+_UI_Metallteil_AttributeGroup_metallteilKategorie_feature = Metallteil Kategorie
+_UI_Metallteil_AttributeGroup_metallteilLaenge_feature = Metallteil Laenge
+_UI_Metallteil_Kategorie_TypeClass_wert_feature = Wert
+_UI_Metallteil_Laenge_TypeClass_wert_feature = Wert
+_UI_Modulnummer_TypeClass_wert_feature = Wert
+_UI_Montageabweichung_TypeClass_wert_feature = Wert
+_UI_Neigung_TypeClass_wert_feature = Wert
+_UI_Nennleistung_TypeClass_wert_feature = Wert
+_UI_NID_BG_TypeClass_wert_feature = Wert
+_UI_NID_C_TypeClass_wert_feature = Wert
+_UI_NID_RBC_TypeClass_wert_feature = Wert
+_UI_NID_STM_TypeClass_wert_feature = Wert
+_UI_NID_TSR_TypeClass_wert_feature = Wert
+_UI_Nummer_Schaltkasten_TypeClass_wert_feature = Wert
+_UI_Oberstrombegrenzung_Gueterzug_TypeClass_wert_feature = Wert
+_UI_Oberstrombegrenzung_Reisezug_TypeClass_wert_feature = Wert
+_UI_Port_Nr_Ausg_Physisch_TypeClass_wert_feature = Wert
+_UI_Position_Sonstige_TypeClass_wert_feature = Wert
+_UI_Position_TypeClass_wert_feature = Wert
+_UI_Primaerquelle_TypeClass_wert_feature = Wert
+_UI_Prioritaet_TypeClass_wert_feature = Wert
+_UI_Prog_Datei_Einzel_AttributeGroup_anzeigetext_feature = Anzeigetext
+_UI_Prog_Datei_Einzel_AttributeGroup_einzeldateiArt_feature = Einzeldatei Art
+_UI_Prog_Datei_Einzel_AttributeGroup_iDBinaerdatei_feature = ID Binaerdatei
+_UI_Prog_Datei_Einzel_AttributeGroup_konfigurationskennung_feature = Konfigurationskennung
+_UI_Prog_Datei_Einzel_AttributeGroup_pruefmerkmaleBinaerdatei_feature = Pruefmerkmale Binaerdatei
+_UI_Prog_Datei_Einzel_AttributeGroup_pruefmerkmaleProgKomponente_feature = Pruefmerkmale Prog Komponente
+_UI_Prog_Datei_Einzel_AttributeGroup_verwendung_feature = Verwendung
+_UI_Prog_Datei_Gruppe_iDKomponenteProgrammiert_feature = ID Komponente Programmiert
+_UI_Prog_Datei_Gruppe_progDateiEinzel_feature = Prog Datei Einzel
+_UI_Projektierungsfall_TypeClass_wert_feature = Wert
+_UI_RBC_bezeichnung_feature = Bezeichnung
+_UI_RBC_eTCSAdresse_feature = ETCS Adresse
+_UI_RBC_iDESTWZentraleinheit_feature = IDESTW Zentraleinheit
+_UI_RBC_iDOertlichkeitNamensgebend_feature = ID Oertlichkeit Namensgebend
+_UI_RBC_iDUnterbringung_feature = ID Unterbringung
+_UI_RBC_rBCAllg_feature = RBC Allg
+_UI_RBC_Allg_AttributeGroup_rBCETCSSystemVersion_feature = RBCETCS System Version
+_UI_RBC_Allg_AttributeGroup_rBCSRSVersion_feature = RBCSRS Version
+_UI_RBC_Allg_AttributeGroup_rufnummer_feature = Rufnummer
+_UI_RBC_Bezeichnung_AttributeGroup_bezeichnungRBC_feature = Bezeichnung RBC
+_UI_RBC_ETCS_System_Version_TypeClass_wert_feature = Wert
+_UI_RBC_SRS_Version_TypeClass_wert_feature = Wert
+_UI_Rekursion_2_Nr_TypeClass_wert_feature = Wert
+_UI_Rekursion_Nr_TypeClass_wert_feature = Wert
+_UI_Rufnummer_TypeClass_wert_feature = Wert
+_UI_SBE_TypeClass_wert_feature = Wert
+_UI_Schutzstrecke_Erforderlich_TypeClass_wert_feature = Wert
+_UI_Schutzstrecke_Vorhanden_TypeClass_wert_feature = Wert
+_UI_Solllaenge_Mind_Sig_150_TypeClass_wert_feature = Wert
+_UI_Solllaenge_Mind_Sig_TypeClass_wert_feature = Wert
+_UI_Sonstige_Standortangabe_TypeClass_wert_feature = Wert
+_UI_Spannung_Art_TypeClass_wert_feature = Wert
+_UI_Spannung_Toleranz_Obere_TypeClass_wert_feature = Wert
+_UI_Spannung_Toleranz_Untere_TypeClass_wert_feature = Wert
+_UI_SRS_Version_TypeClass_wert_feature = Wert
+_UI_Standortangabe_Balisenschild_TypeClass_wert_feature = Wert
+_UI_Start_W_Element_AttributeGroup_iDStartWElement_feature = ID Start WElement
+_UI_Start_W_Element_AttributeGroup_wAnschluss_feature = WAnschluss
+_UI_STZ_TypeClass_wert_feature = Wert
+_UI_System_Vor_Grenze_Besonders_TypeClass_wert_feature = Wert
+_UI_System_Vor_Grenze_TypeClass_wert_feature = Wert
+_UI_TBV_Meldepunkt_TypeClass_wert_feature = Wert
+_UI_TBV_Tunnelbereich_Laenge_TypeClass_wert_feature = Wert
+_UI_TBV_Tunnelsignal_TypeClass_wert_feature = Wert
+_UI_Telegramm_Index_TypeClass_wert_feature = Wert
+_UI_Telegrammnummer_TypeClass_wert_feature = Wert
+_UI_Text_Bedingung_TypeClass_wert_feature = Wert
+_UI_Textmeldung_TypeClass_wert_feature = Wert
+_UI_Ueberbrueckung_EV_Unterbrechung_TypeClass_wert_feature = Wert
+_UI_Ueberwachung_Laenge_TypeClass_wert_feature = Wert
+_UI_Umfahrstrasse_TypeClass_wert_feature = Wert
+_UI_Untergruppen_ID_TypeClass_wert_feature = Wert
+_UI_V_Befehl_R_TypeClass_wert_feature = Wert
+_UI_V_Befehl_Z_TypeClass_wert_feature = Wert
+_UI_V_Frei_TypeClass_wert_feature = Wert
+_UI_V_Start_TypeClass_wert_feature = Wert
+_UI_V_Ziel_TypeClass_wert_feature = Wert
+_UI_V_Zul_Strecke_TypeClass_wert_feature = Wert
+_UI_VBC_Kennung_TypeClass_wert_feature = Wert
+_UI_VBC_NID_C_TypeClass_wert_feature = Wert
+_UI_VBC_Setzen_TypeClass_wert_feature = Wert
+_UI_VBC_Timer_TypeClass_wert_feature = Wert
+_UI_Verbot_Anhalten_TypeClass_wert_feature = Wert
+_UI_Verbot_Regenerative_Bremse_TypeClass_wert_feature = Wert
+_UI_Verbot_WB_Art_TypeClass_wert_feature = Wert
+_UI_Verkuerzter_Abstand_TypeClass_wert_feature = Wert
+_UI_Verwendung_Als_Rueckfall_TypeClass_wert_feature = Wert
+_UI_Verwendung_Hilfe_TypeClass_wert_feature = Wert
+_UI_Verwendung_TypeClass_wert_feature = Wert
+_UI_VGR_1_TypeClass_wert_feature = Wert
+_UI_VGR_2_TypeClass_wert_feature = Wert
+_UI_VGR_TypeClass_wert_feature = Wert
+_UI_VLA_TypeClass_wert_feature = Wert
+_UI_Vorsignalabstand_TypeClass_wert_feature = Wert
+_UI_VZ_TypeClass_wert_feature = Wert
+_UI_W_Anschluss_TypeClass_wert_feature = Wert
+_UI_W_Lage_TypeClass_wert_feature = Wert
+_UI_Wirkrichtung_In_Datenpunkt_TypeClass_wert_feature = Wert
+_UI_Wirksam_TypeClass_wert_feature = Wert
+_UI_ZBS_La_Bereich_Distanz_TypeClass_wert_feature = Wert
+_UI_ZBS_La_Bereich_Geschwindigkeit_TypeClass_wert_feature = Wert
+_UI_ZBS_La_Bereich_Laenge_TypeClass_wert_feature = Wert
+_UI_ZBS_La_Bereich_Neigung_TypeClass_wert_feature = Wert
+_UI_ZBS_Merkmale_AttributeGroup_dPLinkArt_feature = DP Link Art
+_UI_ZBS_Merkmale_AttributeGroup_zBSReaktion_feature = ZBS Reaktion
+_UI_ZBS_Reaktion_TypeClass_wert_feature = Wert
+_UI_ZBS_Schutzstrecke_iDFstrDWeg_feature = ID Fstr DWeg
+_UI_ZBS_Schutzstrecke_zBSSchutzstreckeAllg_feature = ZBS Schutzstrecke Allg
+_UI_ZBS_Schutzstrecke_Allg_AttributeGroup_laengeSollMind150_feature = Laenge Soll Mind150
+_UI_ZBS_Schutzstrecke_Allg_AttributeGroup_massgebendeNeigungMind150_feature = Massgebende Neigung Mind150
+_UI_ZBS_Schutzstrecke_Allg_AttributeGroup_vFrei_feature = VFrei
+_UI_ZBS_Signal_iDSignal_feature = ID Signal
+_UI_ZBS_Signal_zBSSignalSignalabstand_feature = ZBS Signal Signalabstand
+_UI_ZBS_Signal_Signalabstand_AttributeGroup_abstandReduziert_feature = Abstand Reduziert
+_UI_ZBS_Signal_Signalabstand_AttributeGroup_massgebendeNeigungMindSig_feature = Massgebende Neigung Mind Sig
+_UI_ZBS_Signal_Signalabstand_AttributeGroup_massgebendeNeigungMindSig150_feature = Massgebende Neigung Mind Sig150
+_UI_ZBS_Signal_Signalabstand_AttributeGroup_solllaengeMindSig_feature = Solllaenge Mind Sig
+_UI_ZBS_Signal_Signalabstand_AttributeGroup_solllaengeMindSig150_feature = Solllaenge Mind Sig150
+_UI_Ziel_DP_Ausrichtung_TypeClass_wert_feature = Wert
+_UI_Ziel_Ist_Fahrwegende_TypeClass_wert_feature = Wert
+_UI_Ziel_W_Element_AttributeGroup_iDZielWElement_feature = ID Ziel WElement
+_UI_Ziel_W_Element_AttributeGroup_wAnschluss_feature = WAnschluss
+_UI_ZLA_TypeClass_wert_feature = Wert
+_UI_ZUB_Bereichsgrenze_bezeichnung_feature = Bezeichnung
+_UI_ZUB_Bereichsgrenze_iDOertlichkeit_feature = ID Oertlichkeit
+_UI_ZUB_Bereichsgrenze_zUBBereichsgrenzeAllg_feature = ZUB Bereichsgrenze Allg
+_UI_ZUB_Bereichsgrenze_zUBBereichsgrenzeNachESG_feature = ZUB Bereichsgrenze Nach ESG
+_UI_ZUB_Bereichsgrenze_zUBBereichsgrenzeNachGNT_feature = ZUB Bereichsgrenze Nach GNT
+_UI_ZUB_Bereichsgrenze_zUBBereichsgrenzeNachL2_feature = ZUB Bereichsgrenze Nach L2
+_UI_ZUB_Bereichsgrenze_zUBBereichsgrenzeNachLZB_feature = ZUB Bereichsgrenze Nach LZB
+_UI_ZUB_Bereichsgrenze_zUBBereichsgrenzeNachOhne_feature = ZUB Bereichsgrenze Nach Ohne
+_UI_ZUB_Bereichsgrenze_zUBBereichsgrenzeNachPZB_feature = ZUB Bereichsgrenze Nach PZB
+_UI_ZUB_Bereichsgrenze_zUBBereichsgrenzeNachSonstige_feature = ZUB Bereichsgrenze Nach Sonstige
+_UI_ZUB_Bereichsgrenze_zUBBereichsgrenzeNachZBS_feature = ZUB Bereichsgrenze Nach ZBS
+_UI_ZUB_Bereichsgrenze_zUBBgrenzeRBCWechsel_feature = ZUB Bgrenze RBC Wechsel
+_UI_ZUB_Bereichsgrenze_Allg_AttributeGroup_iDElementGrenze_feature = ID Element Grenze
+_UI_ZUB_Bereichsgrenze_Allg_AttributeGroup_iDRBCVorGrenze_feature = IDRBC Vor Grenze
+_UI_ZUB_Bereichsgrenze_Allg_AttributeGroup_systemVorGrenze_feature = System Vor Grenze
+_UI_ZUB_Bereichsgrenze_Allg_AttributeGroup_systemVorGrenzeBesonders_feature = System Vor Grenze Besonders
+_UI_ZUB_Bereichsgrenze_Bezeichnung_AttributeGroup_bezZUBBereichsgrenze_feature = Bez ZUB Bereichsgrenze
+_UI_ZUB_Bereichsgrenze_Nach_ESG_AttributeGroup_bgrenzeNachESGBedAusstieg_feature = Bgrenze Nach ESG Bed Ausstieg
+_UI_ZUB_Bereichsgrenze_Nach_ESG_AttributeGroup_harterAusstiegAusL2_feature = Harter Ausstieg Aus L2
+_UI_ZUB_Bereichsgrenze_Nach_ESG_AttributeGroup_prioritaet_feature = Prioritaet
+_UI_ZUB_Bereichsgrenze_Nach_GNT_TypeClass_wert_feature = Wert
+_UI_ZUB_Bereichsgrenze_Nach_L2_AttributeGroup_abstandGrenzeBereichC_feature = Abstand Grenze Bereich C
+_UI_ZUB_Bereichsgrenze_Nach_L2_AttributeGroup_baselineSystemVersion_feature = Baseline System Version
+_UI_ZUB_Bereichsgrenze_Nach_L2_AttributeGroup_bgrenzeNachL2BedEinstieg_feature = Bgrenze Nach L2 Bed Einstieg
+_UI_ZUB_Bereichsgrenze_Nach_L2_AttributeGroup_einstiegOhneRueckwSig_feature = Einstieg Ohne Rueckw Sig
+_UI_ZUB_Bereichsgrenze_Nach_L2_AttributeGroup_iDRBCNachGrenze_feature = IDRBC Nach Grenze
+_UI_ZUB_Bereichsgrenze_Nach_L2_AttributeGroup_iDSignalZufahrtsicherungL2oS_feature = ID Signal Zufahrtsicherung L2o S
+_UI_ZUB_Bereichsgrenze_Nach_L2_AttributeGroup_prioritaet_feature = Prioritaet
+_UI_ZUB_Bereichsgrenze_Nach_L2_AttributeGroup_zUBBereichsgrenzeNachL2VonESG_feature = ZUB Bereichsgrenze Nach L2 Von ESG
+_UI_ZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_abstandDatenpunktEHEMFolgesignal_feature = Abstand Datenpunkt EHEM Folgesignal
+_UI_ZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_abstandDatenpunktEPTPI_feature = Abstand Datenpunkt EPTPI
+_UI_ZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_abstandDatenpunktTPIFolgesignal_feature = Abstand Datenpunkt TPI Folgesignal
+_UI_ZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_iDFachtelegramm_feature = ID Fachtelegramm
+_UI_ZUB_Bereichsgrenze_Nach_L2_Von_ESG_AttributeGroup_iDFolgesignal_feature = ID Folgesignal
+_UI_ZUB_Bereichsgrenze_Nach_LZB_AttributeGroup_bgrenzeNachLZBBedEinstieg_feature = Bgrenze Nach LZB Bed Einstieg
+_UI_ZUB_Bereichsgrenze_Nach_LZB_AttributeGroup_harterAusstiegAusL2_feature = Harter Ausstieg Aus L2
+_UI_ZUB_Bereichsgrenze_Nach_LZB_AttributeGroup_prioritaet_feature = Prioritaet
+_UI_ZUB_Bereichsgrenze_Nach_Ohne_AttributeGroup_bgrenzeNachOhneBedEinstieg_feature = Bgrenze Nach Ohne Bed Einstieg
+_UI_ZUB_Bereichsgrenze_Nach_PZB_AttributeGroup_bgrenzeNachPZBBedEinstieg_feature = Bgrenze Nach PZB Bed Einstieg
+_UI_ZUB_Bereichsgrenze_Nach_PZB_AttributeGroup_harterAusstiegAusL2_feature = Harter Ausstieg Aus L2
+_UI_ZUB_Bereichsgrenze_Nach_PZB_AttributeGroup_prioritaet_feature = Prioritaet
+_UI_ZUB_Bereichsgrenze_Nach_Sonstige_AttributeGroup_bezeichnungZUB_feature = Bezeichnung ZUB
+_UI_ZUB_Bereichsgrenze_Nach_Sonstige_AttributeGroup_laengeAusfuehrungsbereich_feature = Laenge Ausfuehrungsbereich
+_UI_ZUB_Bereichsgrenze_Nach_ZBS_AttributeGroup_bgrenzeNachZBSBedEinstieg_feature = Bgrenze Nach ZBS Bed Einstieg
+_UI_ZUB_Bgrenze_RBC_Wechsel_AttributeGroup_bgrenzeRBCWechselBTSKette_feature = Bgrenze RBC Wechsel BTS Kette
+_UI_ZUB_Bgrenze_RBC_Wechsel_AttributeGroup_iDRBCNachGrenze_feature = IDRBC Nach Grenze
+_UI_ZUB_SE_Ausruestung_AttributeGroup_anwendungssystem_feature = Anwendungssystem
+_UI_ZUB_SE_Ausruestung_AttributeGroup_baselineSystemVersion_feature = Baseline System Version
+_UI_ZUB_Streckeneigenschaft_bezeichnung_feature = Bezeichnung
+_UI_ZUB_Streckeneigenschaft_metallteil_feature = Metallteil
+_UI_ZUB_Streckeneigenschaft_oberstrombegrenzungGueterzug_feature = Oberstrombegrenzung Gueterzug
+_UI_ZUB_Streckeneigenschaft_oberstrombegrenzungReisezug_feature = Oberstrombegrenzung Reisezug
+_UI_ZUB_Streckeneigenschaft_verbotAnhalten_feature = Verbot Anhalten
+_UI_ZUB_Streckeneigenschaft_verbotRegenerativeBremse_feature = Verbot Regenerative Bremse
+_UI_ZUB_Streckeneigenschaft_verbotWBArt_feature = Verbot WB Art
+_UI_ZUB_Streckeneigenschaft_zUBSEAusruestung_feature = ZUBSE Ausruestung
+_UI_ZUB_Streckeneigenschaft_Bezeichnung_AttributeGroup_bezeichnungZUBSE_feature = Bezeichnung ZUBSE
+_UI_A_Wert_TypeClass_wert_feature = Wert
+_UI_Anbindung_IB2_TypeClass_wert_feature = Wert
+_UI_Anbindung_IB3_TypeClass_wert_feature = Wert
+_UI_B_Wert_TypeClass_wert_feature = Wert
+_UI_Bedien_Anrueckabschnitt_iDGleisAbschnittPosition_feature = ID Gleis Abschnitt Position
+_UI_Bedien_Anrueckabschnitt_bezeichnung_feature = Bezeichnung
+_UI_Bedien_Anrueckabschnitt_iDGleisAbschnittDarstellen_feature = ID Gleis Abschnitt Darstellen
+_UI_Bedien_Anrueckabschnitt_Bezeichnung_AttributeGroup_bezBedAnrueckabschnitt_feature = Bez Bed Anrueckabschnitt
+_UI_Bedien_Anzeige_Element_bedienAnzeigeElementAllg_feature = Bedien Anzeige Element Allg
+_UI_Bedien_Anzeige_Element_bezeichnung_feature = Bezeichnung
+_UI_Bedien_Anzeige_Element_iDBedienEinrichtungOertlich_feature = ID Bedien Einrichtung Oertlich
+_UI_Bedien_Anzeige_Element_iDVerknuepftesElement_feature = ID Verknuepftes Element
+_UI_Bedien_Anzeige_Element_Allg_AttributeGroup_melder_feature = Melder
+_UI_Bedien_Anzeige_Element_Allg_AttributeGroup_schalter_feature = Schalter
+_UI_Bedien_Anzeige_Element_Allg_AttributeGroup_taste_feature = Taste
+_UI_Bedien_Anzeige_Element_Bezeichnung_AttributeGroup_bezBedAnzeigeElement_feature = Bez Bed Anzeige Element
+_UI_Bedien_Bezirk_bedienBezirkAdressformel_feature = Bedien Bezirk Adressformel
+_UI_Bedien_Bezirk_bedienBezirkAllg_feature = Bedien Bezirk Allg
+_UI_Bedien_Bezirk_bedienBezirkAnhaenge_feature = Bedien Bezirk Anhaenge
+_UI_Bedien_Bezirk_iDBedienZentrale_feature = ID Bedien Zentrale
+_UI_Bedien_Bezirk_Adressformel_AttributeGroup_aWert_feature = AWert
+_UI_Bedien_Bezirk_Adressformel_AttributeGroup_bWert_feature = BWert
+_UI_Bedien_Bezirk_Adressformel_AttributeGroup_cWert_feature = CWert
+_UI_Bedien_Bezirk_Adressformel_AttributeGroup_dDWert_feature = DD Wert
+_UI_Bedien_Bezirk_Adressformel_AttributeGroup_xWert_feature = XWert
+_UI_Bedien_Bezirk_Adressformel_AttributeGroup_yWert_feature = YWert
+_UI_Bedien_Bezirk_Adressformel_AttributeGroup_yYWert_feature = YY Wert
+_UI_Bedien_Bezirk_Allg_AttributeGroup_anbindungIB2_feature = Anbindung IB2
+_UI_Bedien_Bezirk_Allg_AttributeGroup_anbindungIB3_feature = Anbindung IB3
+_UI_Bedien_Bezirk_Allg_AttributeGroup_hersteller_feature = Hersteller
+_UI_Bedien_Bezirk_Allg_AttributeGroup_schrankreihe_feature = Schrankreihe
+_UI_Bedien_Bezirk_Allg_AttributeGroup_steuerbezirksname_feature = Steuerbezirksname
+_UI_Bedien_Bezirk_Allg_AttributeGroup_steuerbezirksnummer_feature = Steuerbezirksnummer
+_UI_Bedien_Bezirk_Anhaenge_AttributeGroup_iDAnhangAnbindungIB2_feature = ID Anhang Anbindung IB2
+_UI_Bedien_Bezirk_Anhaenge_AttributeGroup_iDAnhangAnbindungIB3_feature = ID Anhang Anbindung IB3
+_UI_Bedien_Bezirk_Anhaenge_AttributeGroup_iDAnhangSteuerbezUebersicht_feature = ID Anhang Steuerbez Uebersicht
+_UI_Bedien_Einricht_Bauart_TypeClass_wert_feature = Wert
+_UI_Bedien_Einricht_Oertl_Bez_TypeClass_wert_feature = Wert
+_UI_Bedien_Einricht_Oertlich_Allg_AttributeGroup_bedienEinrichtBauart_feature = Bedien Einricht Bauart
+_UI_Bedien_Einricht_Oertlich_Allg_AttributeGroup_hupeAnschaltzeit_feature = Hupe Anschaltzeit
+_UI_Bedien_Einrichtung_Oertlich_bedienEinrichtOertlichAllg_feature = Bedien Einricht Oertlich Allg
+_UI_Bedien_Einrichtung_Oertlich_bezeichnung_feature = Bezeichnung
+_UI_Bedien_Einrichtung_Oertlich_iDAnhangBenutzeroberflaeche_feature = ID Anhang Benutzeroberflaeche
+_UI_Bedien_Einrichtung_Oertlich_iDAussenelementansteuerung_feature = ID Aussenelementansteuerung
+_UI_Bedien_Einrichtung_Oertlich_iDUnterbringung_feature = ID Unterbringung
+_UI_Bedien_Einrichtung_Oertlich_Bezeichnung_AttributeGroup_bedienEinrichtOertlBez_feature = Bedien Einricht Oertl Bez
+_UI_Bedien_GBT_bedienGBTAllg_feature = Bedien GBT Allg
+_UI_Bedien_GBT_iDAnhangVorgabeGBT_feature = ID Anhang Vorgabe GBT
+_UI_Bedien_GBT_iDBedienBezirk_feature = ID Bedien Bezirk
+_UI_Bedien_GBT_Allg_AttributeGroup_rueckschauzeit_feature = Rueckschauzeit
+_UI_Bedien_GBT_Allg_AttributeGroup_vorschauzeit_feature = Vorschauzeit
+_UI_Bedien_Oberflaeche_bedienOberflaecheAnhaenge_feature = Bedien Oberflaeche Anhaenge
+_UI_Bedien_Oberflaeche_iDBedienBezirk_feature = ID Bedien Bezirk
+_UI_Bedien_Oberflaeche_Anhaenge_AttributeGroup_iDAnhangMonitoraufteilung_feature = ID Anhang Monitoraufteilung
+_UI_Bedien_Oberflaeche_Anhaenge_AttributeGroup_iDAnhangRichtungssinn_feature = ID Anhang Richtungssinn
+_UI_Bedien_Oberflaeche_Anhaenge_AttributeGroup_iDAnhangVorgabeBELU_feature = ID Anhang Vorgabe BELU
+_UI_Bedien_Oberflaeche_Bild_bedienOberflaecheBildAllg_feature = Bedien Oberflaeche Bild Allg
+_UI_Bedien_Oberflaeche_Bild_iDBedienOberflaeche_feature = ID Bedien Oberflaeche
+_UI_Bedien_Oberflaeche_Bild_iDOertlichkeit_feature = ID Oertlichkeit
+_UI_Bedien_Oberflaeche_Bild_Allg_AttributeGroup_oberflaecheBildart_feature = Oberflaeche Bildart
+_UI_Bedien_Oberflaeche_Bild_Allg_AttributeGroup_oberflaecheZustaendigkeit_feature = Oberflaeche Zustaendigkeit
+_UI_Bedien_Oertlichkeit_bedienOertlichkeitKennzahlen_feature = Bedien Oertlichkeit Kennzahlen
+_UI_Bedien_Oertlichkeit_iDBedienBezirk_feature = ID Bedien Bezirk
+_UI_Bedien_Oertlichkeit_iDOertlichkeit_feature = ID Oertlichkeit
+_UI_Bedien_Oertlichkeit_Kennzahlen_AttributeGroup_betriebsstellenbezeichner_feature = Betriebsstellenbezeichner
+_UI_Bedien_Oertlichkeit_Kennzahlen_AttributeGroup_kennzahl_feature = Kennzahl
+_UI_Bedien_Platz_bedienPlatzAllg_feature = Bedien Platz Allg
+_UI_Bedien_Platz_iDAnhangMoebelplanAufriss_feature = ID Anhang Moebelplan Aufriss
+_UI_Bedien_Platz_iDAnhangMoebelplanGrundriss_feature = ID Anhang Moebelplan Grundriss
+_UI_Bedien_Platz_iDUnterbringung_feature = ID Unterbringung
+_UI_Bedien_Platz_iDBedienBezirk_feature = ID Bedien Bezirk
+_UI_Bedien_Platz_iDESTWZentraleinheit_feature = IDESTW Zentraleinheit
+_UI_Bedien_Platz_Allg_AttributeGroup_bedienPlatzArt_feature = Bedien Platz Art
+_UI_Bedien_Platz_Allg_AttributeGroup_bedienplatzbezeichnung_feature = Bedienplatzbezeichnung
+_UI_Bedien_Platz_Allg_AttributeGroup_bedienplatznummer_feature = Bedienplatznummer
+_UI_Bedien_Platz_Allg_AttributeGroup_bedienraumnummer_feature = Bedienraumnummer
+_UI_Bedien_Platz_Art_TypeClass_wert_feature = Wert
+_UI_Bedien_Standort_bezeichnung_feature = Bezeichnung
+_UI_Bedien_Standort_bSOIPAdressblock_feature = BSOIP Adressblock
+_UI_Bedien_Standort_iDUnterbringung_feature = ID Unterbringung
+_UI_Bedien_Standort_Bezeichnung_AttributeGroup_bezeichnungBSO_feature = Bezeichnung BSO
+_UI_Bedien_Zentrale_iDAnhangPlanBedienraum_feature = ID Anhang Plan Bedienraum
+_UI_Bedien_Zentrale_iDAnhangPlanRechnerraum_feature = ID Anhang Plan Rechnerraum
+_UI_Bedien_Zentrale_iDStrecke_feature = ID Strecke
+_UI_Bedien_Zentrale_bezeichnung_feature = Bezeichnung
+_UI_Bedien_Zentrale_iDOertlichkeit_feature = ID Oertlichkeit
+_UI_Bedien_Zentrale_Bezeichnung_AttributeGroup_bezBedZentrale_feature = Bez Bed Zentrale
+_UI_Bedienplatzbezeichnung_TypeClass_wert_feature = Wert
+_UI_Bedienplatznummer_TypeClass_wert_feature = Wert
+_UI_Bedienraumnummer_TypeClass_wert_feature = Wert
+_UI_Betriebsstellenbezeichner_TypeClass_wert_feature = Wert
+_UI_Bez_Bed_Anrueckabschnitt_TypeClass_wert_feature = Wert
+_UI_Bez_Bed_Anzeige_Element_TypeClass_wert_feature = Wert
+_UI_Bez_Bed_Zentrale_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_BSO_TypeClass_wert_feature = Wert
+_UI_BSO_IP_AB_Teilsystem_AttributeGroup_bSOTeilsystemArt_feature = BSO Teilsystem Art
+_UI_BSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockBlau_feature = IP Adressblock Blau
+_UI_BSO_IP_AB_Teilsystem_AttributeGroup_iPAdressblockGrau_feature = IP Adressblock Grau
+_UI_BSO_IP_Adressblock_AttributeGroup_bSOIPABTeilsystem_feature = BSOIPAB Teilsystem
+_UI_BSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV4_feature = IP Adressblock Blau V4
+_UI_BSO_IP_Adressblock_AttributeGroup_iPAdressblockBlauV6_feature = IP Adressblock Blau V6
+_UI_BSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV4_feature = IP Adressblock Grau V4
+_UI_BSO_IP_Adressblock_AttributeGroup_iPAdressblockGrauV6_feature = IP Adressblock Grau V6
+_UI_BSO_IP_Adressblock_AttributeGroup_regionalbereich_feature = Regionalbereich
+_UI_BSO_Teilsystem_Art_TypeClass_wert_feature = Wert
+_UI_C_Wert_TypeClass_wert_feature = Wert
+_UI_DD_Wert_TypeClass_wert_feature = Wert
+_UI_Hupe_Anschaltzeit_TypeClass_wert_feature = Wert
+_UI_Melder_TypeClass_wert_feature = Wert
+_UI_Oberflaeche_Bildart_TypeClass_wert_feature = Wert
+_UI_Oberflaeche_Zustaendigkeit_TypeClass_wert_feature = Wert
+_UI_Rueckschauzeit_TypeClass_wert_feature = Wert
+_UI_Schalter_TypeClass_wert_feature = Wert
+_UI_Schrankreihe_TypeClass_wert_feature = Wert
+_UI_Steuerbezirksname_TypeClass_wert_feature = Wert
+_UI_Steuerbezirksnummer_TypeClass_wert_feature = Wert
+_UI_Taste_TypeClass_wert_feature = Wert
+_UI_Vorschauzeit_TypeClass_wert_feature = Wert
+_UI_X_Wert_TypeClass_wert_feature = Wert
+_UI_Y_Wert_TypeClass_wert_feature = Wert
+_UI_YY_Wert_TypeClass_wert_feature = Wert
+_UI_Auto_Erlaubnisholen_TypeClass_wert_feature = Wert
+_UI_Auto_Erlaubnisruecklauf_TypeClass_wert_feature = Wert
+_UI_Betriebsfuehrung_TypeClass_wert_feature = Wert
+_UI_Block_Anlage_blockAnlageAllg_feature = Block Anlage Allg
+_UI_Block_Anlage_iDBlockElementA_feature = ID Block Element A
+_UI_Block_Anlage_iDBlockElementB_feature = ID Block Element B
+_UI_Block_Anlage_iDGleisBezeichnung_feature = ID Gleis Bezeichnung
+_UI_Block_Anlage_Allg_AttributeGroup_schaltung_feature = Schaltung
+_UI_Block_Anlage_Allg_AttributeGroup_schutzuebertrager_feature = Schutzuebertrager
+_UI_Block_Bauform_TypeClass_wert_feature = Wert
+_UI_Block_Element_blockElementAllg_feature = Block Element Allg
+_UI_Block_Element_blockElementErlaubnis_feature = Block Element Erlaubnis
+_UI_Block_Element_iDBlockStrecke_feature = ID Block Strecke
+_UI_Block_Element_iDRaeumungspruefung_feature = ID Raeumungspruefung
+_UI_Block_Element_iDSignal_feature = ID Signal
+_UI_Block_Element_iDZugschlussmeldung_feature = ID Zugschlussmeldung
+_UI_Block_Element_Allg_AttributeGroup_blockBauform_feature = Block Bauform
+_UI_Block_Element_Allg_AttributeGroup_rueckblockwecker_feature = Rueckblockwecker
+_UI_Block_Element_Allg_AttributeGroup_vorblockwecker_feature = Vorblockwecker
+_UI_Block_Element_Erlaubnis_AttributeGroup_autoErlaubnisholen_feature = Auto Erlaubnisholen
+_UI_Block_Element_Erlaubnis_AttributeGroup_autoErlaubnisruecklauf_feature = Auto Erlaubnisruecklauf
+_UI_Block_Element_Erlaubnis_AttributeGroup_erlaubnisStaendigVorhanden_feature = Erlaubnis Staendig Vorhanden
+_UI_Block_Element_Erlaubnis_AttributeGroup_erlaubnisabgabespeicherung_feature = Erlaubnisabgabespeicherung
+_UI_Block_Element_Erlaubnis_AttributeGroup_erlaubnisholen_feature = Erlaubnisholen
+_UI_Block_Strecke_blockStreckeAllg_feature = Block Strecke Allg
+_UI_Block_Strecke_iDBetriebsstelleNachbar_feature = ID Betriebsstelle Nachbar
+_UI_Block_Strecke_iDKnotenbahnhof_feature = ID Knotenbahnhof
+_UI_Block_Strecke_iDStrecke_feature = ID Strecke
+_UI_Block_Strecke_iDStreckeBremsweg_feature = ID Strecke Bremsweg
+_UI_Block_Strecke_Allg_AttributeGroup_betriebsfuehrung_feature = Betriebsfuehrung
+_UI_Block_Strecke_Allg_AttributeGroup_bremsweg_feature = Bremsweg
+_UI_Block_Strecke_Allg_AttributeGroup_streckeArt_feature = Strecke Art
+_UI_Block_Strecke_Allg_AttributeGroup_streckengeschwindigkeit_feature = Streckengeschwindigkeit
+_UI_Block_Strecke_Allg_AttributeGroup_traktionArtElektrisch_feature = Traktion Art Elektrisch
+_UI_Block_Strecke_Allg_AttributeGroup_zugbeeinflussungArt_feature = Zugbeeinflussung Art
+_UI_Block_Strecke_Allg_AttributeGroup_zusatzinformation_feature = Zusatzinformation
+_UI_Bremsweg_TypeClass_wert_feature = Wert
+_UI_Erlaubnis_Staendig_Vorhanden_TypeClass_wert_feature = Wert
+_UI_Erlaubnisabgabespeicherung_TypeClass_wert_feature = Wert
+_UI_Erlaubnisholen_TypeClass_wert_feature = Wert
+_UI_Rueckblockwecker_TypeClass_wert_feature = Wert
+_UI_Schaltung_TypeClass_wert_feature = Wert
+_UI_Schutzuebertrager_TypeClass_wert_feature = Wert
+_UI_Strecke_Art_TypeClass_wert_feature = Wert
+_UI_Streckengeschwindigkeit_TypeClass_wert_feature = Wert
+_UI_Traktion_Art_Elektrisch_TypeClass_wert_feature = Wert
+_UI_Vorblockwecker_TypeClass_wert_feature = Wert
+_UI_Zugbeeinflussung_Art_TypeClass_wert_feature = Wert
+_UI_Zusatzinformation_TypeClass_wert_feature = Wert
+_UI_Abstand_Gehweg_Fahrbahn_TypeClass_wert_feature = Wert
+_UI_Akustik_Fussgaenger_TypeClass_wert_feature = Wert
+_UI_Ausrichtung_Winkel_TypeClass_wert_feature = Wert
+_UI_Auto_Het_TypeClass_wert_feature = Wert
+_UI_Baulast_TypeClass_wert_feature = Wert
+_UI_Baumprofil_TypeClass_wert_feature = Wert
+_UI_Beeinflussung_Strassenverkehr_TypeClass_wert_feature = Wert
+_UI_Bez_Schrankenantrieb_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_BUE_GFR_Eckpunkt_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_GFR_Element_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_GFR_Tripelspiegel_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Verkehrszeichen_TypeClass_wert_feature = Wert
+_UI_Blitzpfeil_TypeClass_wert_feature = Wert
+_UI_BUE_Abhaengigkeit_Fue_AttributeGroup_autoHet_feature = Auto Het
+_UI_BUE_Abhaengigkeit_Fue_AttributeGroup_fueSchaltfall_feature = Fue Schaltfall
+_UI_BUE_Abhaengigkeit_Fue_AttributeGroup_stoerhaltHaltfall_feature = Stoerhalt Haltfall
+_UI_BUE_Abhaengigkeit_Fue_AttributeGroup_stoerhaltMerkhinweis_feature = Stoerhalt Merkhinweis
+_UI_BUE_Abhaengigkeit_Fue_AttributeGroup_zeitueberschreitungsmeldung_feature = Zeitueberschreitungsmeldung
+_UI_BUE_Anlage_bezeichnung_feature = Bezeichnung
+_UI_BUE_Anlage_bUEAnlageAllg_feature = BUE Anlage Allg
+_UI_BUE_Anlage_iDAEABUEAnschaltung_feature = IDAEABUE Anschaltung
+_UI_BUE_Anlage_iDBUESchnittstelle_feature = IDBUE Schnittstelle
+_UI_BUE_Anlage_Allg_AttributeGroup_bUEBauart_feature = BUE Bauart
+_UI_BUE_Anlage_Allg_AttributeGroup_bUEBuestra_feature = BUE Buestra
+_UI_BUE_Anlage_Allg_AttributeGroup_bUEMitGFR_feature = BUE Mit GFR
+_UI_BUE_Anlage_Allg_AttributeGroup_bUESicherungsart_feature = BUE Sicherungsart
+_UI_BUE_Anlage_Allg_AttributeGroup_bUEStrasse_feature = BUE Strasse
+_UI_BUE_Anlage_Allg_AttributeGroup_bUETechnik_feature = BUE Technik
+_UI_BUE_Anlage_Fuss_Rad_AttributeGroup_fussRadwegArt_feature = Fuss Radweg Art
+_UI_BUE_Anlage_Fuss_Rad_AttributeGroup_fussRadwegSeite_feature = Fuss Radweg Seite
+_UI_BUE_Anlage_Strasse_bUEAnlageFussRad_feature = BUE Anlage Fuss Rad
+_UI_BUE_Anlage_Strasse_bUEAnlageStrasseAllg_feature = BUE Anlage Strasse Allg
+_UI_BUE_Anlage_Strasse_iDBUEAnlage_feature = IDBUE Anlage
+_UI_BUE_Anlage_Strasse_Allg_AttributeGroup_baulast_feature = Baulast
+_UI_BUE_Anlage_Strasse_Allg_AttributeGroup_fahrbahnBefestigung_feature = Fahrbahn Befestigung
+_UI_BUE_Anlage_Strasse_Allg_AttributeGroup_fahrbahnBefestigungGleis_feature = Fahrbahn Befestigung Gleis
+_UI_BUE_Anlage_Strasse_Allg_AttributeGroup_fahrbahnBreite_feature = Fahrbahn Breite
+_UI_BUE_Anlage_Strasse_Allg_AttributeGroup_klassifizierung_feature = Klassifizierung
+_UI_BUE_Anlage_Strasse_Allg_AttributeGroup_kreuzungswinkel_feature = Kreuzungswinkel
+_UI_BUE_Anlage_V_bUEAnlageVAllg_feature = BUE Anlage VAllg
+_UI_BUE_Anlage_V_iDBUEAnlage_feature = IDBUE Anlage
+_UI_BUE_Anlage_V_Allg_AttributeGroup_vMaxSchiene_feature = VMax Schiene
+_UI_BUE_Anlage_V_Allg_AttributeGroup_vMaxStrasse_feature = VMax Strasse
+_UI_BUE_Anlage_V_Allg_AttributeGroup_vMinFussweg_feature = VMin Fussweg
+_UI_BUE_Anlage_V_Allg_AttributeGroup_vMinSchiene_feature = VMin Schiene
+_UI_BUE_Anlage_V_Allg_AttributeGroup_vMinStrasse_feature = VMin Strasse
+_UI_BUE_Ausschaltung_iDBUEGleisbezGefahrraum_feature = IDBUE Gleisbez Gefahrraum
+_UI_BUE_Bauart_TypeClass_wert_feature = Wert
+_UI_BUE_Bedien_Anz_Element_Allg_AttributeGroup_bUEHandschalteinrichtung_feature = BUE Handschalteinrichtung
+_UI_BUE_Bedien_Anz_Element_Allg_AttributeGroup_iDBedienAnzeigeElement_feature = ID Bedien Anzeige Element
+_UI_BUE_Bedien_Anz_Element_Allg_AttributeGroup_iDHandschaltWirkfunktion_feature = ID Handschalt Wirkfunktion
+_UI_BUE_Bedien_Anzeige_Element_bUEBedienAnzElementAllg_feature = BUE Bedien Anz Element Allg
+_UI_BUE_Buestra_TypeClass_wert_feature = Wert
+_UI_BUE_Deckendes_Signal_Zuordnung_iDBUEEinschaltung_feature = IDBUE Einschaltung
+_UI_BUE_Deckendes_Signal_Zuordnung_iDSignal_feature = ID Signal
+_UI_BUE_Deckendes_Signal_Zuordnung_sicherheitsabstand_feature = Sicherheitsabstand
+_UI_BUE_Einschaltung_bUEEinschaltungHp_feature = BUE Einschaltung Hp
+_UI_BUE_Einschaltung_bUEFunktionsueberwachung_feature = BUE Funktionsueberwachung
+_UI_BUE_Einschaltung_Hp_AttributeGroup_einschaltverzErrechnet_feature = Einschaltverz Errechnet
+_UI_BUE_Einschaltung_Hp_AttributeGroup_einschaltverzGewaehlt_feature = Einschaltverz Gewaehlt
+_UI_BUE_Einschaltung_Hp_AttributeGroup_haltezeit_feature = Haltezeit
+_UI_BUE_Einschaltung_Hp_AttributeGroup_kurzzugschaltung_feature = Kurzzugschaltung
+_UI_BUE_Einschaltung_Hp_AttributeGroup_signalverzErrechnet_feature = Signalverz Errechnet
+_UI_BUE_Einschaltung_Hp_AttributeGroup_signalverzGewaehlt_feature = Signalverz Gewaehlt
+_UI_BUE_Einschaltung_Hp_AttributeGroup_teilvorgabezeit_feature = Teilvorgabezeit
+_UI_BUE_Einschaltung_Zuordnung_iDBUEEinschaltung_feature = IDBUE Einschaltung
+_UI_BUE_Einschaltung_Zuordnung_iDBUEGleisbezGefahrraum_feature = IDBUE Gleisbez Gefahrraum
+_UI_BUE_Funktionsueberwachung_TypeClass_wert_feature = Wert
+_UI_BUE_Gefahrraum_Eckpunkt_bezeichnung_feature = Bezeichnung
+_UI_BUE_Gefahrraum_Eckpunkt_iDBUEAnlage_feature = IDBUE Anlage
+_UI_BUE_Gefahrraum_Eckpunkt_Bezeichnung_AttributeGroup_bezeichnungBUEGFREckpunkt_feature = Bezeichnung BUEGFR Eckpunkt
+_UI_BUE_Gleisbezogener_Gefahrraum_ersatzsteckerGleisbezogen_feature = Ersatzstecker Gleisbezogen
+_UI_BUE_Gleisbezogener_Gefahrraum_gleisAmBue_feature = Gleis Am Bue
+_UI_BUE_Gleisbezogener_Gefahrraum_iDBUEAnlage_feature = IDBUE Anlage
+_UI_BUE_Handschalteinrichtung_TypeClass_wert_feature = Wert
+_UI_BUE_Kante_iDBUEAnlage_feature = IDBUE Anlage
+_UI_BUE_Kreuzungsplan_bUEKreuzungsplanKoordinaten_feature = BUE Kreuzungsplan Koordinaten
+_UI_BUE_Kreuzungsplan_iDAnhangKreuzungsplan_feature = ID Anhang Kreuzungsplan
+_UI_BUE_Kreuzungsplan_iDBUEAnlage_feature = IDBUE Anlage
+_UI_BUE_Kreuzungsplan_Koordinaten_AttributeGroup_iDGEOPunkt_feature = IDGEO Punkt
+_UI_BUE_Kreuzungsplan_Koordinaten_AttributeGroup_pixelKoordinateX_feature = Pixel Koordinate X
+_UI_BUE_Kreuzungsplan_Koordinaten_AttributeGroup_pixelKoordinateY_feature = Pixel Koordinate Y
+_UI_BUE_Mit_GFR_TypeClass_wert_feature = Wert
+_UI_BUE_Nachlaufzeit_TypeClass_wert_feature = Wert
+_UI_BUE_Neigung_TypeClass_wert_feature = Wert
+_UI_BUE_Schnittstelle_bUEAbhaengigkeitFue_feature = BUE Abhaengigkeit Fue
+_UI_BUE_Schnittstelle_bUESchnittstelleAllg_feature = BUE Schnittstelle Allg
+_UI_BUE_Schnittstelle_iDStellelement_feature = ID Stellelement
+_UI_BUE_Schnittstelle_Allg_AttributeGroup_bUENachlaufzeit_feature = BUE Nachlaufzeit
+_UI_BUE_Schnittstelle_Allg_AttributeGroup_bUEVorlaufzeit_feature = BUE Vorlaufzeit
+_UI_BUE_Schnittstelle_Allg_AttributeGroup_hpErsatzstecker_feature = Hp Ersatzstecker
+_UI_BUE_Schnittstelle_Allg_AttributeGroup_lFUEImpuls_feature = LFUE Impuls
+_UI_BUE_Sicherungsart_TypeClass_wert_feature = Wert
+_UI_BUE_Sicherungszeit_TypeClass_wert_feature = Wert
+_UI_BUE_Spezifisches_Signal_iDSignal_feature = ID Signal
+_UI_BUE_Spezifisches_Signal_iDBUEAnlage_feature = IDBUE Anlage
+_UI_BUE_Spezifisches_Signal_iDBUEEinschaltung_feature = IDBUE Einschaltung
+_UI_BUE_Strasse_TypeClass_wert_feature = Wert
+_UI_BUE_Technik_TypeClass_wert_feature = Wert
+_UI_BUE_Vorlaufzeit_TypeClass_wert_feature = Wert
+_UI_BUE_WS_Fstr_Zuordnung_iDBUEEinschaltung_feature = IDBUE Einschaltung
+_UI_BUE_WS_Fstr_Zuordnung_iDFstrZugRangier_feature = ID Fstr Zug Rangier
+_UI_Einschaltverz_Errechnet_TypeClass_wert_feature = Wert
+_UI_Einschaltverz_Gewaehlt_TypeClass_wert_feature = Wert
+_UI_Ersatzstecker_Gleisbezogen_TypeClass_wert_feature = Wert
+_UI_Fahrbahn_Befestigung_Gleis_TypeClass_wert_feature = Wert
+_UI_Fahrbahn_Befestigung_TypeClass_wert_feature = Wert
+_UI_Fahrbahn_Breite_TypeClass_wert_feature = Wert
+_UI_Fue_Schaltfall_TypeClass_wert_feature = Wert
+_UI_Fuss_Radweg_Art_TypeClass_wert_feature = Wert
+_UI_Fuss_Radweg_Seite_TypeClass_wert_feature = Wert
+_UI_GFR_Anlage_gFRAnlageAllg_feature = GFR Anlage Allg
+_UI_GFR_Anlage_iDBUEAnlage_feature = IDBUE Anlage
+_UI_GFR_Anlage_Allg_AttributeGroup_bUESicherungszeit_feature = BUE Sicherungszeit
+_UI_GFR_Anlage_Allg_AttributeGroup_gFRArt_feature = GFR Art
+_UI_GFR_Anlage_Allg_AttributeGroup_gFRTyp_feature = GFR Typ
+_UI_GFR_Anlage_Allg_AttributeGroup_hersteller_feature = Hersteller
+_UI_GFR_Art_TypeClass_wert_feature = Wert
+_UI_GFR_Element_bezeichnung_feature = Bezeichnung
+_UI_GFR_Element_iDGFRAnlage_feature = IDGFR Anlage
+_UI_GFR_Element_iDUnterbringung_feature = ID Unterbringung
+_UI_GFR_Element_bUENeigung_feature = BUE Neigung
+_UI_GFR_Element_gFRNeigung_feature = GFR Neigung
+_UI_GFR_Element_Bezeichnung_AttributeGroup_bezeichnungGFRElement_feature = Bezeichnung GFR Element
+_UI_GFR_Neigung_TypeClass_wert_feature = Wert
+_UI_GFR_Tripelspiegel_bezeichnung_feature = Bezeichnung
+_UI_GFR_Tripelspiegel_gFRTripelspiegelAllg_feature = GFR Tripelspiegel Allg
+_UI_GFR_Tripelspiegel_iDGFRAnlage_feature = IDGFR Anlage
+_UI_GFR_Tripelspiegel_Allg_AttributeGroup_montagehoehe_feature = Montagehoehe
+_UI_GFR_Tripelspiegel_Allg_AttributeGroup_pegel_feature = Pegel
+_UI_GFR_Tripelspiegel_Allg_AttributeGroup_winkelAlpha_feature = Winkel Alpha
+_UI_GFR_Tripelspiegel_Bezeichnung_AttributeGroup_bezeichnungGFRTripelspiegel_feature = Bezeichnung GFR Tripelspiegel
+_UI_GFR_Typ_TypeClass_wert_feature = Wert
+_UI_Gitterbehang_TypeClass_wert_feature = Wert
+_UI_Gleis_Am_Bue_TypeClass_wert_feature = Wert
+_UI_Haltezeit_TypeClass_wert_feature = Wert
+_UI_Hp_Ersatzstecker_TypeClass_wert_feature = Wert
+_UI_Klassifizierung_TypeClass_wert_feature = Wert
+_UI_Kontrastblende_TypeClass_wert_feature = Wert
+_UI_Kreuzungswinkel_TypeClass_wert_feature = Wert
+_UI_Kurzzugschaltung_TypeClass_wert_feature = Wert
+_UI_Lagerung_Art_TypeClass_wert_feature = Wert
+_UI_LFUE_Impuls_TypeClass_wert_feature = Wert
+_UI_Lieferlaenge_TypeClass_wert_feature = Wert
+_UI_Montage_Ausgleichsgewichte_TypeClass_wert_feature = Wert
+_UI_Montage_Besonders_TypeClass_wert_feature = Wert
+_UI_Montagehoehe_TypeClass_wert_feature = Wert
+_UI_Optik_Durchmesser_TypeClass_wert_feature = Wert
+_UI_Optik_Symbolmaske_TypeClass_wert_feature = Wert
+_UI_Pegel_TypeClass_wert_feature = Wert
+_UI_Pixel_Koordinate_X_TypeClass_wert_feature = Wert
+_UI_Pixel_Koordinate_Y_TypeClass_wert_feature = Wert
+_UI_Raeumstrecke_DAB_TypeClass_wert_feature = Wert
+_UI_Raeumstrecke_DBK_TypeClass_wert_feature = Wert
+_UI_Raeumstrecke_DCK_TypeClass_wert_feature = Wert
+_UI_Raeumstrecke_DSK_Strich_TypeClass_wert_feature = Wert
+_UI_Raeumstrecke_TypeClass_wert_feature = Wert
+_UI_Richtungspfeil_TypeClass_wert_feature = Wert
+_UI_SA_Schrankenbaum_AttributeGroup_ausrichtung_feature = Ausrichtung
+_UI_SA_Schrankenbaum_AttributeGroup_ausrichtungWinkel_feature = Ausrichtung Winkel
+_UI_SA_Schrankenbaum_AttributeGroup_baumprofil_feature = Baumprofil
+_UI_SA_Schrankenbaum_AttributeGroup_gitterbehang_feature = Gitterbehang
+_UI_SA_Schrankenbaum_AttributeGroup_lagerungArt_feature = Lagerung Art
+_UI_SA_Schrankenbaum_AttributeGroup_lieferlaenge_feature = Lieferlaenge
+_UI_SA_Schrankenbaum_AttributeGroup_montageAusgleichsgewichte_feature = Montage Ausgleichsgewichte
+_UI_SA_Schrankenbaum_AttributeGroup_sperrlaenge_feature = Sperrlaenge
+_UI_Schaltgruppe_TypeClass_wert_feature = Wert
+_UI_Schaltmittel_Fstr_Zuordnung_iDBUEWSFstrZuordnung_feature = IDBUEWS Fstr Zuordnung
+_UI_Schaltmittel_Fstr_Zuordnung_iDSchaltmittelZuordnung_feature = ID Schaltmittel Zuordnung
+_UI_Schrankenantrieb_bezeichnung_feature = Bezeichnung
+_UI_Schrankenantrieb_iDBUEAnlage_feature = IDBUE Anlage
+_UI_Schrankenantrieb_sASchrankenbaum_feature = SA Schrankenbaum
+_UI_Schrankenantrieb_schrankenantriebAllg_feature = Schrankenantrieb Allg
+_UI_Schrankenantrieb_Allg_AttributeGroup_abstandGehwegFahrbahn_feature = Abstand Gehweg Fahrbahn
+_UI_Schrankenantrieb_Allg_AttributeGroup_hersteller_feature = Hersteller
+_UI_Schrankenantrieb_Allg_AttributeGroup_schaltgruppe_feature = Schaltgruppe
+_UI_Schrankenantrieb_Bezeichnung_AttributeGroup_bezSchrankenantrieb_feature = Bez Schrankenantrieb
+_UI_Schutzbuegel_TypeClass_wert_feature = Wert
+_UI_Sicherheitsabstand_TypeClass_wert_feature = Wert
+_UI_Signalverz_Errechnet_TypeClass_wert_feature = Wert
+_UI_Signalverz_Gewaehlt_TypeClass_wert_feature = Wert
+_UI_Sperrlaenge_TypeClass_wert_feature = Wert
+_UI_Sperrstrecke_Fussgaenger_TypeClass_wert_feature = Wert
+_UI_Sperrstrecke_TypeClass_wert_feature = Wert
+_UI_Stoerhalt_Haltfall_TypeClass_wert_feature = Wert
+_UI_Stoerhalt_Merkhinweis_TypeClass_wert_feature = Wert
+_UI_Teilsperrstrecke_TypeClass_wert_feature = Wert
+_UI_Teilvorgabezeit_TypeClass_wert_feature = Wert
+_UI_Tragkopf_Verstellbar_TypeClass_wert_feature = Wert
+_UI_V_Max_Schiene_TypeClass_wert_feature = Wert
+_UI_V_Max_Strasse_TypeClass_wert_feature = Wert
+_UI_V_Min_Fussweg_TypeClass_wert_feature = Wert
+_UI_V_Min_Schiene_TypeClass_wert_feature = Wert
+_UI_V_Min_Strasse_TypeClass_wert_feature = Wert
+_UI_Verkehrszeichen_bezeichnung_feature = Bezeichnung
+_UI_Verkehrszeichen_iDBUEAnlage_feature = IDBUE Anlage
+_UI_Verkehrszeichen_iDUnterbringung_feature = ID Unterbringung
+_UI_Verkehrszeichen_verkehrszeichenAllg_feature = Verkehrszeichen Allg
+_UI_Verkehrszeichen_verkehrszeichenAndreaskreuz_feature = Verkehrszeichen Andreaskreuz
+_UI_Verkehrszeichen_verkehrszeichenLz_feature = Verkehrszeichen Lz
+_UI_Verkehrszeichen_vzSperrstrecke_feature = Vz Sperrstrecke
+_UI_Verkehrszeichen_Allg_AttributeGroup_abstandGehwegFahrbahn_feature = Abstand Gehweg Fahrbahn
+_UI_Verkehrszeichen_Allg_AttributeGroup_ausrichtung_feature = Ausrichtung
+_UI_Verkehrszeichen_Allg_AttributeGroup_ausrichtungWinkel_feature = Ausrichtung Winkel
+_UI_Verkehrszeichen_Andreaskreuz_AttributeGroup_blitzpfeil_feature = Blitzpfeil
+_UI_Verkehrszeichen_Andreaskreuz_AttributeGroup_montageBesonders_feature = Montage Besonders
+_UI_Verkehrszeichen_Andreaskreuz_AttributeGroup_richtungspfeil_feature = Richtungspfeil
+_UI_Verkehrszeichen_Andreaskreuz_AttributeGroup_schutzbuegel_feature = Schutzbuegel
+_UI_Verkehrszeichen_Andreaskreuz_AttributeGroup_zusatzschild_feature = Zusatzschild
+_UI_Verkehrszeichen_Bezeichnung_AttributeGroup_bezeichnungVerkehrszeichen_feature = Bezeichnung Verkehrszeichen
+_UI_Verkehrszeichen_Lz_AttributeGroup_akustikFussgaenger_feature = Akustik Fussgaenger
+_UI_Verkehrszeichen_Lz_AttributeGroup_kontrastblende_feature = Kontrastblende
+_UI_Verkehrszeichen_Lz_AttributeGroup_optikDurchmesser_feature = Optik Durchmesser
+_UI_Verkehrszeichen_Lz_AttributeGroup_optikSymbolmaske_feature = Optik Symbolmaske
+_UI_Verkehrszeichen_Lz_AttributeGroup_schaltgruppe_feature = Schaltgruppe
+_UI_Verkehrszeichen_Lz_AttributeGroup_tragkopfVerstellbar_feature = Tragkopf Verstellbar
+_UI_Verkehrszeichen_Lz_AttributeGroup_vorgeschaltet_feature = Vorgeschaltet
+_UI_Vorgeschaltet_TypeClass_wert_feature = Wert
+_UI_Vz_Sperrstrecke_AttributeGroup_vzSperrstreckeVorgeschaltet_feature = Vz Sperrstrecke Vorgeschaltet
+_UI_Vz_Sperrstrecke_AttributeGroup_sperrstrecke_feature = Sperrstrecke
+_UI_Vz_Sperrstrecke_AttributeGroup_sperrstreckeFussgaenger_feature = Sperrstrecke Fussgaenger
+_UI_Vz_Sperrstrecke_AttributeGroup_vzSperrstreckeSchranke_feature = Vz Sperrstrecke Schranke
+_UI_Vz_Sperrstrecke_Schranke_AttributeGroup_raeumstrecke_feature = Raeumstrecke
+_UI_Vz_Sperrstrecke_Schranke_AttributeGroup_teilsperrstrecke_feature = Teilsperrstrecke
+_UI_Vz_Sperrstrecke_Vorgeschaltet_AttributeGroup_beeinflussungStrassenverkehr_feature = Beeinflussung Strassenverkehr
+_UI_Vz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDAB_feature = Raeumstrecke DAB
+_UI_Vz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDBK_feature = Raeumstrecke DBK
+_UI_Vz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDCK_feature = Raeumstrecke DCK
+_UI_Vz_Sperrstrecke_Vorgeschaltet_AttributeGroup_raeumstreckeDSKStrich_feature = Raeumstrecke DSK Strich
+_UI_Winkel_Alpha_TypeClass_wert_feature = Wert
+_UI_Zeitueberschreitungsmeldung_TypeClass_wert_feature = Wert
+_UI_Zusatzschild_TypeClass_wert_feature = Wert
+_UI_EKW_Kr_Anteil_TypeClass_wert_feature = Wert
+_UI_Fahrt_Ueber_TypeClass_wert_feature = Wert
+_UI_Fla_Freimelde_Zuordnung_flaRaumFreimeldung_feature = Fla Raum Freimeldung
+_UI_Fla_Freimelde_Zuordnung_iDFlaSchutz_feature = ID Fla Schutz
+_UI_Fla_Freimelde_Zuordnung_iDFMAAnlage_feature = IDFMA Anlage
+_UI_Fla_Raum_Freimeldung_TypeClass_wert_feature = Wert
+_UI_Fla_Schutz_flaSchutzAnforderer_feature = Fla Schutz Anforderer
+_UI_Fla_Schutz_flaSchutzSignal_feature = Fla Schutz Signal
+_UI_Fla_Schutz_flaSchutzWGsp_feature = Fla Schutz WGsp
+_UI_Fla_Schutz_flaSchutzWeitergabe_feature = Fla Schutz Weitergabe
+_UI_Fla_Schutz_flaVerzicht_feature = Fla Verzicht
+_UI_Fla_Schutz_Anforderer_AttributeGroup_eKWKrAnteil_feature = EKW Kr Anteil
+_UI_Fla_Schutz_Anforderer_AttributeGroup_fahrtUeber_feature = Fahrt Ueber
+_UI_Fla_Schutz_Anforderer_AttributeGroup_iDAnfordererElement_feature = ID Anforderer Element
+_UI_Fla_Schutz_Signal_AttributeGroup_flaSignalZielsperrung_feature = Fla Signal Zielsperrung
+_UI_Fla_Schutz_Signal_AttributeGroup_iDFlaSignal_feature = ID Fla Signal
+_UI_Fla_Schutz_W_Gsp_AttributeGroup_flaWLage_feature = Fla WLage
+_UI_Fla_Schutz_W_Gsp_AttributeGroup_iDFlaWGspElement_feature = ID Fla WGsp Element
+_UI_Fla_Schutz_Weitergabe_AttributeGroup_iDFlaWeitergabeL_feature = ID Fla Weitergabe L
+_UI_Fla_Schutz_Weitergabe_AttributeGroup_iDFlaWeitergabeR_feature = ID Fla Weitergabe R
+_UI_Fla_Signal_Zielsperrung_TypeClass_wert_feature = Wert
+_UI_Fla_Verzicht_TypeClass_wert_feature = Wert
+_UI_Fla_W_Lage_TypeClass_wert_feature = Wert
+_UI_Fla_Zwieschutz_flaZwieschutzElement_feature = Fla Zwieschutz Element
+_UI_Fla_Zwieschutz_iDWElement_feature = IDW Element
+_UI_Fla_Zwieschutz_zwieschutzArt_feature = Zwieschutz Art
+_UI_Fla_Zwieschutz_Element_AttributeGroup_iDFlaSchutzL_feature = ID Fla Schutz L
+_UI_Fla_Zwieschutz_Element_AttributeGroup_iDFlaSchutzR_feature = ID Fla Schutz R
+_UI_Fla_Zwieschutz_Element_AttributeGroup_massnahmeL_feature = Massnahme L
+_UI_Fla_Zwieschutz_Element_AttributeGroup_massnahmeR_feature = Massnahme R
+_UI_Fla_Zwieschutz_Element_AttributeGroup_nachlaufverhinderung_feature = Nachlaufverhinderung
+_UI_Massnahme_TypeClass_wert_feature = Wert
+_UI_Nachlaufverhinderung_TypeClass_wert_feature = Wert
+_UI_Zwieschutz_Art_TypeClass_wert_feature = Wert
+_UI_Bettungswiderstand_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Kennbuchstabe_TypeClass_wert_feature = Wert
+_UI_FMA_Anlage_bezeichnung_feature = Bezeichnung
+_UI_FMA_Anlage_fMAAnlageAllg_feature = FMA Anlage Allg
+_UI_FMA_Anlage_fMAAnlageElektrMerkmale_feature = FMA Anlage Elektr Merkmale
+_UI_FMA_Anlage_fMAAnlageKaskade_feature = FMA Anlage Kaskade
+_UI_FMA_Anlage_fMAAnlageUebertragungFMinfo_feature = FMA Anlage Uebertragung FMinfo
+_UI_FMA_Anlage_iDGleisAbschnitt_feature = ID Gleis Abschnitt
+_UI_FMA_Anlage_iDGleisfreimeldeInnenanlage_feature = ID Gleisfreimelde Innenanlage
+_UI_FMA_Anlage_Allg_AttributeGroup_fMAArt_feature = FMA Art
+_UI_FMA_Anlage_Allg_AttributeGroup_fMAHilffreimeldung_feature = FMA Hilffreimeldung
+_UI_FMA_Anlage_Allg_AttributeGroup_fMAIsolierung_feature = FMA Isolierung
+_UI_FMA_Anlage_Allg_AttributeGroup_fMATyp_feature = FMA Typ
+_UI_FMA_Anlage_Bezeichnung_AttributeGroup_bezeichnungKennbuchstabe_feature = Bezeichnung Kennbuchstabe
+_UI_FMA_Anlage_Elektr_Merkmale_AttributeGroup_bettungswiderstand_feature = Bettungswiderstand
+_UI_FMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaenge_feature = FMA Laenge
+_UI_FMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeBeeinflusst_feature = FMA Laenge Beeinflusst
+_UI_FMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeE1_feature = FMA Laenge E1
+_UI_FMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeE2_feature = FMA Laenge E2
+_UI_FMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeE3_feature = FMA Laenge E3
+_UI_FMA_Anlage_Elektr_Merkmale_AttributeGroup_fMALaengeS_feature = FMA Laenge S
+_UI_FMA_Anlage_Kaskade_AttributeGroup_fMAKaskadeBezeichnung_feature = FMA Kaskade Bezeichnung
+_UI_FMA_Anlage_Kaskade_AttributeGroup_fMAKaskadeEinzelauswertung_feature = FMA Kaskade Einzelauswertung
+_UI_FMA_Anlage_Uebertragung_FMinfo_AttributeGroup_iDUebertragungFMinfo_feature = ID Uebertragung FMinfo
+_UI_FMA_Anlage_Uebertragung_FMinfo_AttributeGroup_uebertragungFMinfoRichtung_feature = Uebertragung FMinfo Richtung
+_UI_FMA_Anlage_Uebertragung_FMinfo_AttributeGroup_uebertragungFMinfoTyp_feature = Uebertragung FMinfo Typ
+_UI_FMA_Anschluss_Bezeichnung_TypeClass_wert_feature = Wert
+_UI_FMA_Anschluss_Speiserichtung_TypeClass_wert_feature = Wert
+_UI_FMA_Art_TypeClass_wert_feature = Wert
+_UI_FMA_Element_fMAElementAllg_feature = FMA Element Allg
+_UI_FMA_Element_fMAElementAnschluss_feature = FMA Element Anschluss
+_UI_FMA_Element_iDFMAAnlage_feature = IDFMA Anlage
+_UI_FMA_Element_Allg_AttributeGroup_fMAElementArt_feature = FMA Element Art
+_UI_FMA_Element_Allg_AttributeGroup_fMAElementSeilanzahl_feature = FMA Element Seilanzahl
+_UI_FMA_Element_Allg_AttributeGroup_fMAElementSeiltyp_feature = FMA Element Seiltyp
+_UI_FMA_Element_Anschluss_AttributeGroup_fMAAnschlussBezeichnung_feature = FMA Anschluss Bezeichnung
+_UI_FMA_Element_Anschluss_AttributeGroup_fMAAnschlussSpeiserichtung_feature = FMA Anschluss Speiserichtung
+_UI_FMA_Element_Art_TypeClass_wert_feature = Wert
+_UI_FMA_Element_Seilanzahl_TypeClass_wert_feature = Wert
+_UI_FMA_Element_Seiltyp_TypeClass_wert_feature = Wert
+_UI_FMA_Hilffreimeldung_TypeClass_wert_feature = Wert
+_UI_FMA_Isolierung_TypeClass_wert_feature = Wert
+_UI_FMA_Kaskade_Bezeichnung_TypeClass_wert_feature = Wert
+_UI_FMA_Kaskade_Einzelauswertung_TypeClass_wert_feature = Wert
+_UI_FMA_Komponente_bezeichnung_feature = Bezeichnung
+_UI_FMA_Komponente_iDBezugspunkt_feature = ID Bezugspunkt
+_UI_FMA_Komponente_iDFMAgrenze_feature = IDFM Agrenze
+_UI_FMA_Komponente_fMAKomponenteAchszaehlpunkt_feature = FMA Komponente Achszaehlpunkt
+_UI_FMA_Komponente_fMAKomponenteArt_feature = FMA Komponente Art
+_UI_FMA_Komponente_Achszaehlpunkt_AttributeGroup_fMAKomponenteSchienenprofil_feature = FMA Komponente Schienenprofil
+_UI_FMA_Komponente_Achszaehlpunkt_AttributeGroup_fMAKomponenteStromversorgung_feature = FMA Komponente Stromversorgung
+_UI_FMA_Komponente_Achszaehlpunkt_AttributeGroup_fMAKomponenteTyp_feature = FMA Komponente Typ
+_UI_FMA_Komponente_Achszaehlpunkt_AttributeGroup_iDEnergie_feature = ID Energie
+_UI_FMA_Komponente_Achszaehlpunkt_AttributeGroup_iDInformation_feature = ID Information
+_UI_FMA_Komponente_Art_TypeClass_wert_feature = Wert
+_UI_FMA_Komponente_Schienenprofil_TypeClass_wert_feature = Wert
+_UI_FMA_Komponente_Stromversorgung_TypeClass_wert_feature = Wert
+_UI_FMA_Komponente_Typ_TypeClass_wert_feature = Wert
+_UI_FMA_Laenge_Beeinflusst_TypeClass_wert_feature = Wert
+_UI_FMA_Laenge_E1_TypeClass_wert_feature = Wert
+_UI_FMA_Laenge_E2_TypeClass_wert_feature = Wert
+_UI_FMA_Laenge_E3_TypeClass_wert_feature = Wert
+_UI_FMA_Laenge_S_TypeClass_wert_feature = Wert
+_UI_FMA_Laenge_TypeClass_wert_feature = Wert
+_UI_FMA_Typ_TypeClass_wert_feature = Wert
+_UI_Schaltmittel_Funktion_TypeClass_wert_feature = Wert
+_UI_Schaltmittel_Zuordnung_iDAnforderung_feature = ID Anforderung
+_UI_Schaltmittel_Zuordnung_iDSchalter_feature = ID Schalter
+_UI_Schaltmittel_Zuordnung_schaltmittelFunktion_feature = Schaltmittel Funktion
+_UI_Uebertragung_FMinfo_Richtung_TypeClass_wert_feature = Wert
+_UI_Uebertragung_FMinfo_Typ_TypeClass_wert_feature = Wert
+_UI_Zugeinwirkung_bezeichnung_feature = Bezeichnung
+_UI_Zugeinwirkung_iDBezugspunkt_feature = ID Bezugspunkt
+_UI_Zugeinwirkung_zugeinwirkungAllg_feature = Zugeinwirkung Allg
+_UI_Zugeinwirkung_Allg_AttributeGroup_zugeinwirkungArt_feature = Zugeinwirkung Art
+_UI_Zugeinwirkung_Allg_AttributeGroup_zugeinwirkungTyp_feature = Zugeinwirkung Typ
+_UI_Zugeinwirkung_Art_TypeClass_wert_feature = Wert
+_UI_Zugeinwirkung_Typ_TypeClass_wert_feature = Wert
+_UI_Aufloesung_Ssp_Zielgleis_TypeClass_wert_feature = Wert
+_UI_Aufloesung_Verzoegerung_TypeClass_wert_feature = Wert
+_UI_Automatische_Einstellung_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Fstr_DWeg_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Markanter_Punkt_TypeClass_wert_feature = Wert
+_UI_DWeg_Reihenfolge_TypeClass_wert_feature = Wert
+_UI_DWeg_V_Aufwertung_Verzicht_TypeClass_wert_feature = Wert
+_UI_DWeg_V_TypeClass_wert_feature = Wert
+_UI_DWeg_Vorzug_TypeClass_wert_feature = Wert
+_UI_Element_Verschluss_TypeClass_wert_feature = Wert
+_UI_F_Bedienung_TypeClass_wert_feature = Wert
+_UI_Fstr_Abhaengigkeit_iDFstrFahrweg_feature = ID Fstr Fahrweg
+_UI_Fstr_Abhaengigkeit_fstrAbhaengigkeitSsp_feature = Fstr Abhaengigkeit Ssp
+_UI_Fstr_Abhaengigkeit_iDBedienAnzeigeElement_feature = ID Bedien Anzeige Element
+_UI_Fstr_Abhaengigkeit_Ssp_AttributeGroup_aufloesungSspZielgleis_feature = Aufloesung Ssp Zielgleis
+_UI_Fstr_Abhaengigkeit_Ssp_AttributeGroup_iDSchluesselsperre_feature = ID Schluesselsperre
+_UI_Fstr_Aneinander_fstrAneinanderBedienstring_feature = Fstr Aneinander Bedienstring
+_UI_Fstr_Aneinander_Bedienstring_TypeClass_wert_feature = Wert
+_UI_Fstr_Aneinander_Zuordnung_iDFstrAneinander_feature = ID Fstr Aneinander
+_UI_Fstr_Aneinander_Zuordnung_iDFstrZugRangier_feature = ID Fstr Zug Rangier
+_UI_Fstr_Bedienstring_TypeClass_wert_feature = Wert
+_UI_Fstr_DWeg_bezeichnung_feature = Bezeichnung
+_UI_Fstr_DWeg_fstrDWegAllg_feature = Fstr DWeg Allg
+_UI_Fstr_DWeg_fstrDWegSpezifisch_feature = Fstr DWeg Spezifisch
+_UI_Fstr_DWeg_iDFMAAnlageFreimeldung_feature = IDFMA Anlage Freimeldung
+_UI_Fstr_DWeg_iDFstrFahrweg_feature = ID Fstr Fahrweg
+_UI_Fstr_DWeg_iDPZBGefahrpunkt_feature = IDPZB Gefahrpunkt
+_UI_Fstr_DWeg_Allg_AttributeGroup_laengeSoll_feature = Laenge Soll
+_UI_Fstr_DWeg_Allg_AttributeGroup_massgebendeNeigung_feature = Massgebende Neigung
+_UI_Fstr_DWeg_Bezeichnung_AttributeGroup_bezeichnungFstrDWeg_feature = Bezeichnung Fstr DWeg
+_UI_Fstr_DWeg_Spezifisch_AttributeGroup_aufloesungVerzoegerung_feature = Aufloesung Verzoegerung
+_UI_Fstr_DWeg_Spezifisch_AttributeGroup_dWegReihenfolge_feature = DWeg Reihenfolge
+_UI_Fstr_DWeg_Spezifisch_AttributeGroup_dWegV_feature = DWeg V
+_UI_Fstr_DWeg_Spezifisch_AttributeGroup_dWegVAufwertungVerzicht_feature = DWeg VAufwertung Verzicht
+_UI_Fstr_DWeg_Spezifisch_AttributeGroup_iDFMAAnlageZielgleis_feature = IDFMA Anlage Zielgleis
+_UI_Fstr_DWeg_W_Kr_elementVerschluss_feature = Element Verschluss
+_UI_Fstr_DWeg_W_Kr_iDFstrDWeg_feature = ID Fstr DWeg
+_UI_Fstr_DWeg_W_Kr_iDWKrGspElement_feature = IDW Kr Gsp Element
+_UI_Fstr_Fahrweg_fstrVHg_feature = Fstr VHg
+_UI_Fstr_Fahrweg_iDStart_feature = ID Start
+_UI_Fstr_Fahrweg_iDZiel_feature = ID Ziel
+_UI_Fstr_Fahrweg_startSignalCharakter_feature = Start Signal Charakter
+_UI_Fstr_Mittel_Art_TypeClass_wert_feature = Wert
+_UI_Fstr_Mittel_AttributeGroup_fstrMittelArt_feature = Fstr Mittel Art
+_UI_Fstr_Mittel_AttributeGroup_fstrMittelVAufwertung_feature = Fstr Mittel VAufwertung
+_UI_Fstr_Mittel_V_Aufwertung_TypeClass_wert_feature = Wert
+_UI_Fstr_Nichthaltfall_iDFMAAnlage_feature = IDFMA Anlage
+_UI_Fstr_Nichthaltfall_iDFstrFahrweg_feature = ID Fstr Fahrweg
+_UI_Fstr_Rangier_Art_TypeClass_wert_feature = Wert
+_UI_Fstr_Rangier_AttributeGroup_automatischeEinstellung_feature = Automatische Einstellung
+_UI_Fstr_Rangier_AttributeGroup_fstrRangierArt_feature = Fstr Rangier Art
+_UI_Fstr_Rangier_AttributeGroup_iDFMAAnlageRangierFrei_feature = IDFMA Anlage Rangier Frei
+_UI_Fstr_Rangier_AttributeGroup_rangierGegenfahrtausschluss_feature = Rangier Gegenfahrtausschluss
+_UI_Fstr_Rangier_Fla_Zuordnung_iDFlaSchutz_feature = ID Fla Schutz
+_UI_Fstr_Rangier_Fla_Zuordnung_iDFstrRangier_feature = ID Fstr Rangier
+_UI_Fstr_Reihenfolge_TypeClass_wert_feature = Wert
+_UI_Fstr_Signalisierung_iDFstrZugRangier_feature = ID Fstr Zug Rangier
+_UI_Fstr_Signalisierung_iDSignalSignalbegriff_feature = ID Signal Signalbegriff
+_UI_Fstr_Signalisierung_iDSignalSignalbegriffZiel_feature = ID Signal Signalbegriff Ziel
+_UI_Fstr_Umfahrpunkt_iDFstrFahrweg_feature = ID Fstr Fahrweg
+_UI_Fstr_Umfahrpunkt_iDUmfahrpunkt_feature = ID Umfahrpunkt
+_UI_Fstr_V_Hg_TypeClass_wert_feature = Wert
+_UI_Fstr_V_TypeClass_wert_feature = Wert
+_UI_Fstr_Vsigabstand_Verkuerzt_TypeClass_wert_feature = Wert
+_UI_Fstr_Zug_Art_TypeClass_wert_feature = Wert
+_UI_Fstr_Zug_AttributeGroup_automatischeEinstellung_feature = Automatische Einstellung
+_UI_Fstr_Zug_AttributeGroup_fstrVsigabstandVerkuerzt_feature = Fstr Vsigabstand Verkuerzt
+_UI_Fstr_Zug_AttributeGroup_fstrZugArt_feature = Fstr Zug Art
+_UI_Fstr_Zug_AttributeGroup_fstrZugDWeg_feature = Fstr Zug DWeg
+_UI_Fstr_Zug_AttributeGroup_iDBUEEinschaltung_feature = IDBUE Einschaltung
+_UI_Fstr_Zug_AttributeGroup_iDSignalGruppenausfahrt_feature = ID Signal Gruppenausfahrt
+_UI_Fstr_Zug_DWeg_AttributeGroup_dWegVorzug_feature = DWeg Vorzug
+_UI_Fstr_Zug_DWeg_AttributeGroup_iDFstrDWeg_feature = ID Fstr DWeg
+_UI_Fstr_Zug_Rangier_fstrZugRangierAllg_feature = Fstr Zug Rangier Allg
+_UI_Fstr_Zug_Rangier_iDFstrAusschlussBesonders_feature = ID Fstr Ausschluss Besonders
+_UI_Fstr_Zug_Rangier_iDFstrFahrweg_feature = ID Fstr Fahrweg
+_UI_Fstr_Zug_Rangier_fstrMittel_feature = Fstr Mittel
+_UI_Fstr_Zug_Rangier_fstrRangier_feature = Fstr Rangier
+_UI_Fstr_Zug_Rangier_fstrZug_feature = Fstr Zug
+_UI_Fstr_Zug_Rangier_Allg_AttributeGroup_fBedienung_feature = FBedienung
+_UI_Fstr_Zug_Rangier_Allg_AttributeGroup_fstrBedienstring_feature = Fstr Bedienstring
+_UI_Fstr_Zug_Rangier_Allg_AttributeGroup_fstrReihenfolge_feature = Fstr Reihenfolge
+_UI_Fstr_Zug_Rangier_Allg_AttributeGroup_fstrV_feature = Fstr V
+_UI_Laenge_Soll_TypeClass_wert_feature = Wert
+_UI_Markanter_Punkt_bezeichnung_feature = Bezeichnung
+_UI_Markanter_Punkt_iDDWegErlaubnisabhaengig_feature = IDD Weg Erlaubnisabhaengig
+_UI_Markanter_Punkt_iDMarkanteStelle_feature = ID Markante Stelle
+_UI_Markanter_Punkt_Bezeichnung_AttributeGroup_bezeichnungMarkanterPunkt_feature = Bezeichnung Markanter Punkt
+_UI_Massgebende_Neigung_TypeClass_wert_feature = Wert
+_UI_Rangier_Gegenfahrtausschluss_TypeClass_wert_feature = Wert
+_UI_Sonstiger_Punkt_iDBeginnBereich_feature = ID Beginn Bereich
+_UI_Start_Signal_Charakter_TypeClass_wert_feature = Wert
+_UI_Anzeigegefuehrt_ES_Kategorie_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Strecke_TypeClass_wert_feature = Wert
+_UI_GEO_Form_TypeClass_wert_feature = Wert
+_UI_GEO_KAD_TypeClass_wert_feature = Wert
+_UI_GEO_Kante_gEOKanteAllg_feature = GEO Kante Allg
+_UI_GEO_Kante_iDGEOArt_feature = IDGEO Art
+_UI_GEO_Kante_iDGEOKnotenA_feature = IDGEO Knoten A
+_UI_GEO_Kante_iDGEOKnotenB_feature = IDGEO Knoten B
+_UI_GEO_Kante_Allg_AttributeGroup_gEOForm_feature = GEO Form
+_UI_GEO_Kante_Allg_AttributeGroup_gEOKAD_feature = GEOKAD
+_UI_GEO_Kante_Allg_AttributeGroup_gEOLaenge_feature = GEO Laenge
+_UI_GEO_Kante_Allg_AttributeGroup_gEORadiusA_feature = GEO Radius A
+_UI_GEO_Kante_Allg_AttributeGroup_gEORadiusB_feature = GEO Radius B
+_UI_GEO_Kante_Allg_AttributeGroup_gEORichtungswinkel_feature = GEO Richtungswinkel
+_UI_GEO_Kante_Allg_AttributeGroup_planQuelle_feature = Plan Quelle
+_UI_GEO_Knoten_gEOPAD_feature = GEOPAD
+_UI_GEO_Koordinatensystem_TypeClass_wert_feature = Wert
+_UI_GEO_Laenge_TypeClass_wert_feature = Wert
+_UI_GEO_PAD_TypeClass_wert_feature = Wert
+_UI_GEO_Punkt_gEOPunktAllg_feature = GEO Punkt Allg
+_UI_GEO_Punkt_iDGEOKante_feature = IDGEO Kante
+_UI_GEO_Punkt_iDGEOKnoten_feature = IDGEO Knoten
+_UI_GEO_Punkt_Allg_AttributeGroup_gEOKoordinatensystem_feature = GEO Koordinatensystem
+_UI_GEO_Punkt_Allg_AttributeGroup_gKX_feature = GKX
+_UI_GEO_Punkt_Allg_AttributeGroup_gKY_feature = GKY
+_UI_GEO_Punkt_Allg_AttributeGroup_gKZ_feature = GKZ
+_UI_GEO_Punkt_Allg_AttributeGroup_planQuelle_feature = Plan Quelle
+_UI_GEO_Radius_A_TypeClass_wert_feature = Wert
+_UI_GEO_Radius_B_TypeClass_wert_feature = Wert
+_UI_GEO_Richtungswinkel_TypeClass_wert_feature = Wert
+_UI_Geschwindigkeit_TypeClass_wert_feature = Wert
+_UI_Geschwindigkeitsprofil_geschwindigkeitsprofilAllg_feature = Geschwindigkeitsprofil Allg
+_UI_Geschwindigkeitsprofil_Allg_AttributeGroup_anzeigegefuehrtESKategorie_feature = Anzeigegefuehrt ES Kategorie
+_UI_Geschwindigkeitsprofil_Allg_AttributeGroup_geschwindigkeit_feature = Geschwindigkeit
+_UI_Geschwindigkeitsprofil_Allg_AttributeGroup_vProfilArt_feature = VProfil Art
+_UI_GK_X_TypeClass_wert_feature = Wert
+_UI_GK_Y_TypeClass_wert_feature = Wert
+_UI_GK_Z_TypeClass_wert_feature = Wert
+_UI_Hoehenlinie_hoehenlinieAllg_feature = Hoehenlinie Allg
+_UI_Hoehenlinie_iDHoehenpunktA_feature = ID Hoehenpunkt A
+_UI_Hoehenlinie_iDHoehenpunktB_feature = ID Hoehenpunkt B
+_UI_Hoehenlinie_iDTOPKantePfad_feature = IDTOP Kante Pfad
+_UI_Hoehenlinie_Allg_AttributeGroup_hoehenlinieForm_feature = Hoehenlinie Form
+_UI_Hoehenlinie_Allg_AttributeGroup_hoehenlinieLaenge_feature = Hoehenlinie Laenge
+_UI_Hoehenlinie_Allg_AttributeGroup_planQuelle_feature = Plan Quelle
+_UI_Hoehenlinie_Form_TypeClass_wert_feature = Wert
+_UI_Hoehenlinie_Laenge_TypeClass_wert_feature = Wert
+_UI_Hoehenpunkt_hoehenpunktAllg_feature = Hoehenpunkt Allg
+_UI_Hoehenpunkt_Allg_AttributeGroup_gEOPAD_feature = GEOPAD
+_UI_Hoehenpunkt_Allg_AttributeGroup_hoehenpunktDatum_feature = Hoehenpunkt Datum
+_UI_Hoehenpunkt_Allg_AttributeGroup_hoehenpunktHoehe_feature = Hoehenpunkt Hoehe
+_UI_Hoehenpunkt_Allg_AttributeGroup_hSystem_feature = HSystem
+_UI_Hoehenpunkt_Allg_AttributeGroup_neigung_feature = Neigung
+_UI_Hoehenpunkt_Allg_AttributeGroup_planQuelle_feature = Plan Quelle
+_UI_Hoehenpunkt_Datum_TypeClass_wert_feature = Wert
+_UI_Hoehenpunkt_Hoehe_TypeClass_wert_feature = Wert
+_UI_HSystem_TypeClass_wert_feature = Wert
+_UI_Kantenname_TypeClass_wert_feature = Wert
+_UI_Knotenname_TypeClass_wert_feature = Wert
+_UI_Oertlichkeit_bezeichnung_feature = Bezeichnung
+_UI_Oertlichkeit_iDOertlichkeit_feature = ID Oertlichkeit
+_UI_Oertlichkeit_iDOertlichkeitAwanstBedient_feature = ID Oertlichkeit Awanst Bedient
+_UI_Oertlichkeit_iDStreckePunkt_feature = ID Strecke Punkt
+_UI_Oertlichkeit_oertlichkeitAllg_feature = Oertlichkeit Allg
+_UI_Oertlichkeit_Abkuerzung_TypeClass_wert_feature = Wert
+_UI_Oertlichkeit_Allg_AttributeGroup_oertlichkeitArt_feature = Oertlichkeit Art
+_UI_Oertlichkeit_Allg_AttributeGroup_oertlichkeitGueltigAb_feature = Oertlichkeit Gueltig Ab
+_UI_Oertlichkeit_Allg_AttributeGroup_oertlichkeitGueltigBis_feature = Oertlichkeit Gueltig Bis
+_UI_Oertlichkeit_Art_TypeClass_wert_feature = Wert
+_UI_Oertlichkeit_Bezeichnung_AttributeGroup_oertlichkeitAbkuerzung_feature = Oertlichkeit Abkuerzung
+_UI_Oertlichkeit_Bezeichnung_AttributeGroup_oertlichkeitKurzname_feature = Oertlichkeit Kurzname
+_UI_Oertlichkeit_Bezeichnung_AttributeGroup_oertlichkeitLangname_feature = Oertlichkeit Langname
+_UI_Oertlichkeit_Gueltig_Ab_TypeClass_wert_feature = Wert
+_UI_Oertlichkeit_Gueltig_Bis_TypeClass_wert_feature = Wert
+_UI_Oertlichkeit_Kurzname_TypeClass_wert_feature = Wert
+_UI_Oertlichkeit_Langname_TypeClass_wert_feature = Wert
+_UI_Plan_Quelle_TypeClass_wert_feature = Wert
+_UI_Strecke_bezeichnung_feature = Bezeichnung
+_UI_Strecke_Bezeichnung_AttributeGroup_bezeichnungStrecke_feature = Bezeichnung Strecke
+_UI_Strecke_Bremsweg_bremsweg_feature = Bremsweg
+_UI_Strecke_Bremsweg_streckeRichtung_feature = Strecke Richtung
+_UI_Strecke_Meter_TypeClass_wert_feature = Wert
+_UI_Strecke_Punkt_iDGEOKnoten_feature = IDGEO Knoten
+_UI_Strecke_Punkt_iDStrecke_feature = ID Strecke
+_UI_Strecke_Punkt_streckeMeter_feature = Strecke Meter
+_UI_Strecke_Richtung_TypeClass_wert_feature = Wert
+_UI_TB_Art_TypeClass_wert_feature = Wert
+_UI_TB_Beschreibung_TypeClass_wert_feature = Wert
+_UI_Technischer_Bereich_tBArt_feature = TB Art
+_UI_Technischer_Bereich_tBBeschreibung_feature = TB Beschreibung
+_UI_Technischer_Punkt_tPArt_feature = TP Art
+_UI_Technischer_Punkt_tPBeschreibung_feature = TP Beschreibung
+_UI_TOP_Anschluss_A_TypeClass_wert_feature = Wert
+_UI_TOP_Anschluss_B_TypeClass_wert_feature = Wert
+_UI_TOP_Kante_iDTOPKnotenA_feature = IDTOP Knoten A
+_UI_TOP_Kante_iDTOPKnotenB_feature = IDTOP Knoten B
+_UI_TOP_Kante_tOPKanteAllg_feature = TOP Kante Allg
+_UI_TOP_Kante_Allg_AttributeGroup_kantenname_feature = Kantenname
+_UI_TOP_Kante_Allg_AttributeGroup_tOPAnschlussA_feature = TOP Anschluss A
+_UI_TOP_Kante_Allg_AttributeGroup_tOPAnschlussB_feature = TOP Anschluss B
+_UI_TOP_Kante_Allg_AttributeGroup_tOPLaenge_feature = TOP Laenge
+_UI_TOP_Knoten_iDGEOKnoten_feature = IDGEO Knoten
+_UI_TOP_Knoten_knotenname_feature = Knotenname
+_UI_TOP_Laenge_TypeClass_wert_feature = Wert
+_UI_TP_Art_TypeClass_wert_feature = Wert
+_UI_TP_Beschreibung_TypeClass_wert_feature = Wert
+_UI_Ueberhoehung_ueberhoehungAllg_feature = Ueberhoehung Allg
+_UI_Ueberhoehung_Allg_AttributeGroup_gEOPAD_feature = GEOPAD
+_UI_Ueberhoehung_Allg_AttributeGroup_planQuelle_feature = Plan Quelle
+_UI_Ueberhoehung_Allg_AttributeGroup_ueberhoehungDatum_feature = Ueberhoehung Datum
+_UI_Ueberhoehung_Allg_AttributeGroup_ueberhoehungHoehe_feature = Ueberhoehung Hoehe
+_UI_Ueberhoehung_Datum_TypeClass_wert_feature = Wert
+_UI_Ueberhoehung_Hoehe_TypeClass_wert_feature = Wert
+_UI_Ueberhoehungslinie_iDTOPKantePfad_feature = IDTOP Kante Pfad
+_UI_Ueberhoehungslinie_iDUeberhoehungA_feature = ID Ueberhoehung A
+_UI_Ueberhoehungslinie_iDUeberhoehungB_feature = ID Ueberhoehung B
+_UI_Ueberhoehungslinie_ueberhoehungslinieAllg_feature = Ueberhoehungslinie Allg
+_UI_Ueberhoehungslinie_Allg_AttributeGroup_planQuelle_feature = Plan Quelle
+_UI_Ueberhoehungslinie_Allg_AttributeGroup_ueberhoehungslinieForm_feature = Ueberhoehungslinie Form
+_UI_Ueberhoehungslinie_Allg_AttributeGroup_ueberhoehungslinieLaenge_feature = Ueberhoehungslinie Laenge
+_UI_Ueberhoehungslinie_Form_TypeClass_wert_feature = Wert
+_UI_Ueberhoehungslinie_Laenge_TypeClass_wert_feature = Wert
+_UI_V_Profil_Art_TypeClass_wert_feature = Wert
+_UI_Auffahrortung_TypeClass_wert_feature = Wert
+_UI_Austausch_Antriebe_TypeClass_wert_feature = Wert
+_UI_Auswurfrichtung_TypeClass_wert_feature = Wert
+_UI_Besonderes_Fahrwegelement_TypeClass_wert_feature = Wert
+_UI_Elektrischer_Antrieb_Anzahl_TypeClass_wert_feature = Wert
+_UI_Elektrischer_Antrieb_Lage_TypeClass_wert_feature = Wert
+_UI_Element_Lage_TypeClass_wert_feature = Wert
+_UI_Entgleisungsschuh_AttributeGroup_auswurfrichtung_feature = Auswurfrichtung
+_UI_Entgleisungsschuh_AttributeGroup_gleissperrensignal_feature = Gleissperrensignal
+_UI_Entgleisungsschuh_AttributeGroup_schutzschiene_feature = Schutzschiene
+_UI_Geschwindigkeit_L_TypeClass_wert_feature = Wert
+_UI_Geschwindigkeit_R_TypeClass_wert_feature = Wert
+_UI_Gleis_Abschluss_gleisAbschlussArt_feature = Gleis Abschluss Art
+_UI_Gleis_Abschluss_Art_TypeClass_wert_feature = Wert
+_UI_Gleissperre_Betriebsart_TypeClass_wert_feature = Wert
+_UI_Gleissperre_Element_AttributeGroup_gleissperreBetriebsart_feature = Gleissperre Betriebsart
+_UI_Gleissperre_Element_AttributeGroup_gleissperreVorzugslage_feature = Gleissperre Vorzugslage
+_UI_Gleissperre_Vorzugslage_TypeClass_wert_feature = Wert
+_UI_Gleissperrensignal_TypeClass_wert_feature = Wert
+_UI_GZ_Freimeldung_L_AttributeGroup_elementLage_feature = Element Lage
+_UI_GZ_Freimeldung_L_AttributeGroup_iDElement_feature = ID Element
+_UI_GZ_Freimeldung_R_AttributeGroup_elementLage_feature = Element Lage
+_UI_GZ_Freimeldung_R_AttributeGroup_iDElement_feature = ID Element
+_UI_Herzstueck_Antriebe_TypeClass_wert_feature = Wert
+_UI_Isolierfall_TypeClass_wert_feature = Wert
+_UI_Kr_KrW_Seitenzuordnung_TypeClass_wert_feature = Wert
+_UI_Kreuzung_AttributeGroup_elektrischerAntriebAnzahl_feature = Elektrischer Antrieb Anzahl
+_UI_Kreuzung_AttributeGroup_elektrischerAntriebLage_feature = Elektrischer Antrieb Lage
+_UI_Kreuzung_AttributeGroup_geschwindigkeitL_feature = Geschwindigkeit L
+_UI_Kreuzung_AttributeGroup_geschwindigkeitR_feature = Geschwindigkeit R
+_UI_Kreuzungsgleis_TypeClass_wert_feature = Wert
+_UI_Schutzschiene_TypeClass_wert_feature = Wert
+_UI_Stammgleis_TypeClass_wert_feature = Wert
+_UI_Vorzugslage_Automatik_TypeClass_wert_feature = Wert
+_UI_W_Kr_Anlage_iDAnhangDWS_feature = ID Anhang DWS
+_UI_W_Kr_Anlage_iDSignal_feature = ID Signal
+_UI_W_Kr_Anlage_wKrAnlageAllg_feature = WKr Anlage Allg
+_UI_W_Kr_Anlage_Allg_AttributeGroup_isolierfall_feature = Isolierfall
+_UI_W_Kr_Anlage_Allg_AttributeGroup_wKrArt_feature = WKr Art
+_UI_W_Kr_Anlage_Allg_AttributeGroup_wKrGrundform_feature = WKr Grundform
+_UI_W_Kr_Art_TypeClass_wert_feature = Wert
+_UI_W_Kr_Grundform_TypeClass_wert_feature = Wert
+_UI_W_Kr_Gsp_Element_bezeichnung_feature = Bezeichnung
+_UI_W_Kr_Gsp_Element_iDRegelzeichnung_feature = ID Regelzeichnung
+_UI_W_Kr_Gsp_Element_iDStellelement_feature = ID Stellelement
+_UI_W_Kr_Gsp_Element_iDWKrAnlage_feature = IDW Kr Anlage
+_UI_W_Kr_Gsp_Element_iDWeichenlaufkette_feature = ID Weichenlaufkette
+_UI_W_Kr_Gsp_Element_wKrGspElementAllg_feature = WKr Gsp Element Allg
+_UI_W_Kr_Gsp_Element_gleissperreElement_feature = Gleissperre Element
+_UI_W_Kr_Gsp_Element_weicheElement_feature = Weiche Element
+_UI_W_Kr_Gsp_Element_Allg_AttributeGroup_krKrWSeitenzuordnung_feature = Kr Kr WSeitenzuordnung
+_UI_W_Kr_Gsp_Element_Allg_AttributeGroup_vorzugslageAutomatik_feature = Vorzugslage Automatik
+_UI_W_Kr_Gsp_Element_Allg_AttributeGroup_wKrGspStellart_feature = WKr Gsp Stellart
+_UI_W_Kr_Gsp_Komponente_austauschAntriebe_feature = Austausch Antriebe
+_UI_W_Kr_Gsp_Komponente_iDRegelzeichnung_feature = ID Regelzeichnung
+_UI_W_Kr_Gsp_Komponente_iDWKrGspElement_feature = IDW Kr Gsp Element
+_UI_W_Kr_Gsp_Komponente_besonderesFahrwegelement_feature = Besonderes Fahrwegelement
+_UI_W_Kr_Gsp_Komponente_entgleisungsschuh_feature = Entgleisungsschuh
+_UI_W_Kr_Gsp_Komponente_kreuzung_feature = Kreuzung
+_UI_W_Kr_Gsp_Komponente_zungenpaar_feature = Zungenpaar
+_UI_W_Kr_Gsp_Stellart_TypeClass_wert_feature = Wert
+_UI_Weiche_Betriebsart_TypeClass_wert_feature = Wert
+_UI_Weiche_Element_AttributeGroup_auffahrortung_feature = Auffahrortung
+_UI_Weiche_Element_AttributeGroup_gZFreimeldungL_feature = GZ Freimeldung L
+_UI_Weiche_Element_AttributeGroup_gZFreimeldungR_feature = GZ Freimeldung R
+_UI_Weiche_Element_AttributeGroup_iDGrenzzeichen_feature = ID Grenzzeichen
+_UI_Weiche_Element_AttributeGroup_iDSignal_feature = ID Signal
+_UI_Weiche_Element_AttributeGroup_weicheBetriebsart_feature = Weiche Betriebsart
+_UI_Weiche_Element_AttributeGroup_weicheVorzugslage_feature = Weiche Vorzugslage
+_UI_Weiche_Vorzugslage_TypeClass_wert_feature = Wert
+_UI_Weichenlaufkette_bezeichnung_feature = Bezeichnung
+_UI_Weichenlaufkette_Zuordnung_iDSignal_feature = ID Signal
+_UI_Weichenlaufkette_Zuordnung_iDWeichenlaufkette_feature = ID Weichenlaufkette
+_UI_Weichensignal_TypeClass_wert_feature = Wert
+_UI_Zungenpaar_AttributeGroup_elektrischerAntriebAnzahl_feature = Elektrischer Antrieb Anzahl
+_UI_Zungenpaar_AttributeGroup_elektrischerAntriebLage_feature = Elektrischer Antrieb Lage
+_UI_Zungenpaar_AttributeGroup_geschwindigkeitL_feature = Geschwindigkeit L
+_UI_Zungenpaar_AttributeGroup_geschwindigkeitR_feature = Geschwindigkeit R
+_UI_Zungenpaar_AttributeGroup_herzstueckAntriebe_feature = Herzstueck Antriebe
+_UI_Zungenpaar_AttributeGroup_kreuzungsgleis_feature = Kreuzungsgleis
+_UI_Zungenpaar_AttributeGroup_stammgleis_feature = Stammgleis
+_UI_Zungenpaar_AttributeGroup_weichensignal_feature = Weichensignal
+_UI_Zungenpaar_AttributeGroup_zungenpruefkontaktAnzahl_feature = Zungenpruefkontakt Anzahl
+_UI_Zungenpruefkontakt_Anzahl_TypeClass_wert_feature = Wert
+_UI_Baubereich_Art_TypeClass_wert_feature = Wert
+_UI_Bez_Gleis_Bezeichnung_TypeClass_wert_feature = Wert
+_UI_Fahrstrom_TypeClass_wert_feature = Wert
+_UI_Gleis_Abschnitt_bezeichnung_feature = Bezeichnung
+_UI_Gleis_Abschnitt_geschwindigkeit_feature = Geschwindigkeit
+_UI_Gleis_Art_gleisart_feature = Gleisart
+_UI_Gleis_Baubereich_baubereichArt_feature = Baubereich Art
+_UI_Gleis_Bezeichnung_bezeichnung_feature = Bezeichnung
+_UI_Gleis_Bezeichnung_Bezeichnung_AttributeGroup_bezGleisBezeichnung_feature = Bez Gleis Bezeichnung
+_UI_Gleis_Fahrbahn_konstruktion_feature = Konstruktion
+_UI_Gleis_Lichtraum_lichtraumprofil_feature = Lichtraumprofil
+_UI_Gleis_Schaltgruppe_bezeichnung_feature = Bezeichnung
+_UI_Gleis_Schaltgruppe_fahrstrom_feature = Fahrstrom
+_UI_Gleisart_TypeClass_wert_feature = Wert
+_UI_Konstruktion_TypeClass_wert_feature = Wert
+_UI_Lichtraumprofil_TypeClass_wert_feature = Wert
+_UI_Ader_Durchmesser_TypeClass_wert_feature = Wert
+_UI_Ader_Querschnitt_TypeClass_wert_feature = Wert
+_UI_Ader_Reserve_TypeClass_wert_feature = Wert
+_UI_Anzahl_Verseilelemente_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Kabel_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Kabel_Verteilpunkt_TypeClass_wert_feature = Wert
+_UI_Induktionsschutz_TypeClass_wert_feature = Wert
+_UI_Kabel_bezeichnung_feature = Bezeichnung
+_UI_Kabel_iDTrasseKante_feature = ID Trasse Kante
+_UI_Kabel_kabelAllg_feature = Kabel Allg
+_UI_Kabel_kabelElement_feature = Kabel Element
+_UI_Kabel_Allg_AttributeGroup_induktionsschutz_feature = Induktionsschutz
+_UI_Kabel_Allg_AttributeGroup_kabelArt_feature = Kabel Art
+_UI_Kabel_Allg_AttributeGroup_kabelLaenge_feature = Kabel Laenge
+_UI_Kabel_Allg_AttributeGroup_kabelTyp_feature = Kabel Typ
+_UI_Kabel_Allg_AttributeGroup_nagetierschutz_feature = Nagetierschutz
+_UI_Kabel_Art_TypeClass_wert_feature = Wert
+_UI_Kabel_Bezeichnung_AttributeGroup_bezeichnungKabel_feature = Bezeichnung Kabel
+_UI_Kabel_Element_AttributeGroup_aderReserve_feature = Ader Reserve
+_UI_Kabel_Element_AttributeGroup_anzahlVerseilelemente_feature = Anzahl Verseilelemente
+_UI_Kabel_Element_AttributeGroup_verseilart_feature = Verseilart
+_UI_Kabel_Element_AttributeGroup_aderDurchmesser_feature = Ader Durchmesser
+_UI_Kabel_Element_AttributeGroup_aderQuerschnitt_feature = Ader Querschnitt
+_UI_Kabel_Laenge_TypeClass_wert_feature = Wert
+_UI_Kabel_Typ_TypeClass_wert_feature = Wert
+_UI_Kabel_Verteilpunkt_bezeichnung_feature = Bezeichnung
+_UI_Kabel_Verteilpunkt_iDUnterbringung_feature = ID Unterbringung
+_UI_Kabel_Verteilpunkt_kabelVerteilpunktArt_feature = Kabel Verteilpunkt Art
+_UI_Kabel_Verteilpunkt_Art_TypeClass_wert_feature = Wert
+_UI_Kabel_Verteilpunkt_Bezeichnung_AttributeGroup_bezeichnungKabelVerteilpunkt_feature = Bezeichnung Kabel Verteilpunkt
+_UI_Nagetierschutz_TypeClass_wert_feature = Wert
+_UI_Trasse_Kante_iDTrasseKnotenA_feature = ID Trasse Knoten A
+_UI_Trasse_Kante_iDTrasseKnotenB_feature = ID Trasse Knoten B
+_UI_Trasse_Kante_trasseKanteArt_feature = Trasse Kante Art
+_UI_Trasse_Kante_trasseNutzer_feature = Trasse Nutzer
+_UI_Trasse_Kante_Art_TypeClass_wert_feature = Wert
+_UI_Trasse_Knoten_iDAnschlussElement_feature = ID Anschluss Element
+_UI_Trasse_Knoten_iDGEOKnoten_feature = IDGEO Knoten
+_UI_Trasse_Knoten_trasseKnotenArt_feature = Trasse Knoten Art
+_UI_Trasse_Knoten_Art_TypeClass_wert_feature = Wert
+_UI_Trasse_Nutzer_TypeClass_wert_feature = Wert
+_UI_Verseilart_TypeClass_wert_feature = Wert
+_UI_AWU_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_NB_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_NB_Zone_TypeClass_wert_feature = Wert
+_UI_F_ST_Z_TypeClass_wert_feature = Wert
+_UI_FA_FAE_TypeClass_wert_feature = Wert
+_UI_Freie_Stellbarkeit_TypeClass_wert_feature = Wert
+_UI_NB_bezeichnung_feature = Bezeichnung
+_UI_NB_nBArt_feature = NB Art
+_UI_NB_nBFunktionalitaetNBR_feature = NB Funktionalitaet NBR
+_UI_NB_Art_TypeClass_wert_feature = Wert
+_UI_NB_Bedien_Anzeige_Element_iDBedienAnzeigeElement_feature = ID Bedien Anzeige Element
+_UI_NB_Bedien_Anzeige_Element_iDNBZone_feature = IDNB Zone
+_UI_NB_Bedien_Anzeige_Element_nBBedienAnzeigeFunktionen_feature = NB Bedien Anzeige Funktionen
+_UI_NB_Bedien_Anzeige_Funktionen_AttributeGroup_tasteANF_feature = Taste ANF
+_UI_NB_Bedien_Anzeige_Funktionen_AttributeGroup_tasteFGT_feature = Taste FGT
+_UI_NB_Bedien_Anzeige_Funktionen_AttributeGroup_tasteWGT_feature = Taste WGT
+_UI_NB_Bezeichnung_AttributeGroup_bezeichnungNB_feature = Bezeichnung NB
+_UI_NB_Bezeichnung_AttributeGroup_kennzahl_feature = Kennzahl
+_UI_NB_Funktionalitaet_NB_R_AttributeGroup_aWU_feature = AWU
+_UI_NB_Funktionalitaet_NB_R_AttributeGroup_fSTZ_feature = FSTZ
+_UI_NB_Funktionalitaet_NB_R_AttributeGroup_fAFAE_feature = FAFAE
+_UI_NB_Funktionalitaet_NB_R_AttributeGroup_sBUE_feature = SBUE
+_UI_NB_Funktionalitaet_NB_R_AttributeGroup_sLESLS_feature = SLESLS
+_UI_NB_Funktionalitaet_NB_R_AttributeGroup_wHU_feature = WHU
+_UI_NB_Funktionalitaet_NB_R_AttributeGroup_wUS_feature = WUS
+_UI_NB_Grenze_Art_TypeClass_wert_feature = Wert
+_UI_NB_Rueckgabevoraussetzung_TypeClass_wert_feature = Wert
+_UI_NB_Verhaeltnis_Besonders_TypeClass_wert_feature = Wert
+_UI_NB_Zone_bezeichnung_feature = Bezeichnung
+_UI_NB_Zone_iDNB_feature = IDNB
+_UI_NB_Zone_iDNBZone_feature = IDNB Zone
+_UI_NB_Zone_nBZoneAllg_feature = NB Zone Allg
+_UI_NB_Zone_Allg_AttributeGroup_nBVerhaeltnisBesonders_feature = NB Verhaeltnis Besonders
+_UI_NB_Zone_Allg_AttributeGroup_rang_feature = Rang
+_UI_NB_Zone_Allg_TypeClass_wert_feature = Wert
+_UI_NB_Zone_Bezeichnung_AttributeGroup_bezeichnungNBZone_feature = Bezeichnung NB Zone
+_UI_NB_Zone_Element_iDNBElement_feature = IDNB Element
+_UI_NB_Zone_Element_iDNBZone_feature = IDNB Zone
+_UI_NB_Zone_Element_nBZoneElementAllg_feature = NB Zone Element Allg
+_UI_NB_Zone_Element_Allg_AttributeGroup_freieStellbarkeit_feature = Freie Stellbarkeit
+_UI_NB_Zone_Element_Allg_AttributeGroup_nBRueckgabevoraussetzung_feature = NB Rueckgabevoraussetzung
+_UI_NB_Zone_Element_Allg_AttributeGroup_wGspLage_feature = WGsp Lage
+_UI_NB_Zone_Grenze_iDMarkanterPunkt_feature = ID Markanter Punkt
+_UI_NB_Zone_Grenze_iDNBZone_feature = IDNB Zone
+_UI_NB_Zone_Grenze_nBGrenzeArt_feature = NB Grenze Art
+_UI_NB_Zone_Reihenfolgezwang_AttributeGroup_nBZoneAllg_feature = NB Zone Allg
+_UI_Rang_TypeClass_wert_feature = Wert
+_UI_SBUE_TypeClass_wert_feature = Wert
+_UI_SLE_SLS_TypeClass_wert_feature = Wert
+_UI_Taste_ANF_TypeClass_wert_feature = Wert
+_UI_Taste_FGT_TypeClass_wert_feature = Wert
+_UI_Taste_WGT_TypeClass_wert_feature = Wert
+_UI_W_Gsp_Lage_TypeClass_wert_feature = Wert
+_UI_WHU_TypeClass_wert_feature = Wert
+_UI_WUS_TypeClass_wert_feature = Wert
+_UI_GUE_Abstand_Abweichend_TypeClass_wert_feature = Wert
+_UI_GUE_Anordnung_TypeClass_wert_feature = Wert
+_UI_GUE_Bauart_TypeClass_wert_feature = Wert
+_UI_GUE_Energieversorgung_TypeClass_wert_feature = Wert
+_UI_GUE_Messstrecke_TypeClass_wert_feature = Wert
+_UI_INA_Gefahrstelle_AttributeGroup_iDMarkanterPunkt_feature = ID Markanter Punkt
+_UI_INA_Gefahrstelle_AttributeGroup_prioritaetGefahrstelle_feature = Prioritaet Gefahrstelle
+_UI_Messfehler_TypeClass_wert_feature = Wert
+_UI_Prioritaet_Gefahrstelle_TypeClass_wert_feature = Wert
+_UI_Pruefgeschwindigkeit_TypeClass_wert_feature = Wert
+_UI_Pruefzeit_TypeClass_wert_feature = Wert
+_UI_PZB_Abstand_GM_TypeClass_wert_feature = Wert
+_UI_PZB_Art_TypeClass_wert_feature = Wert
+_UI_PZB_Element_iDPZBElementZuordnung_feature = IDPZB Element Zuordnung
+_UI_PZB_Element_pZBArt_feature = PZB Art
+_UI_PZB_Element_iDStellelement_feature = ID Stellelement
+_UI_PZB_Element_iDUnterbringung_feature = ID Unterbringung
+_UI_PZB_Element_pZBElementGM_feature = PZB Element GM
+_UI_PZB_Element_pZBElementGUE_feature = PZB Element GUE
+_UI_PZB_Element_GM_AttributeGroup_pZBAbstandGM_feature = PZB Abstand GM
+_UI_PZB_Element_GM_AttributeGroup_pZBINA_feature = PZBINA
+_UI_PZB_Element_GUE_AttributeGroup_gUEAbstandAbweichend_feature = GUE Abstand Abweichend
+_UI_PZB_Element_GUE_AttributeGroup_gUEAnordnung_feature = GUE Anordnung
+_UI_PZB_Element_GUE_AttributeGroup_gUEBauart_feature = GUE Bauart
+_UI_PZB_Element_GUE_AttributeGroup_gUEEnergieversorgung_feature = GUE Energieversorgung
+_UI_PZB_Element_GUE_AttributeGroup_gUEMessstrecke_feature = GUE Messstrecke
+_UI_PZB_Element_GUE_AttributeGroup_iDPZBElementMitnutzung_feature = IDPZB Element Mitnutzung
+_UI_PZB_Element_GUE_AttributeGroup_messfehler_feature = Messfehler
+_UI_PZB_Element_GUE_AttributeGroup_pruefgeschwindigkeit_feature = Pruefgeschwindigkeit
+_UI_PZB_Element_GUE_AttributeGroup_pruefzeit_feature = Pruefzeit
+_UI_PZB_Element_Zuordnung_pZBElementZuordnungBP_feature = PZB Element Zuordnung BP
+_UI_PZB_Element_Zuordnung_pZBElementZuordnungFstr_feature = PZB Element Zuordnung Fstr
+_UI_PZB_Element_Zuordnung_BP_AttributeGroup_iDPZBElementBezugspunkt_feature = IDPZB Element Bezugspunkt
+_UI_PZB_Element_Zuordnung_BP_AttributeGroup_iNAGefahrstelle_feature = INA Gefahrstelle
+_UI_PZB_Element_Zuordnung_BP_AttributeGroup_pZBElementZuordnungINA_feature = PZB Element Zuordnung INA
+_UI_PZB_Element_Zuordnung_BP_AttributeGroup_wirksamkeit_feature = Wirksamkeit
+_UI_PZB_Element_Zuordnung_Fstr_AttributeGroup_iDFstrZugRangier_feature = ID Fstr Zug Rangier
+_UI_PZB_Element_Zuordnung_Fstr_AttributeGroup_wirksamkeitFstr_feature = Wirksamkeit Fstr
+_UI_PZB_Element_Zuordnung_INA_AttributeGroup_iDAnhangINA_feature = ID Anhang INA
+_UI_PZB_Element_Zuordnung_INA_AttributeGroup_iDBahnsteigKante_feature = ID Bahnsteig Kante
+_UI_PZB_INA_TypeClass_wert_feature = Wert
+_UI_PZB_Zuordnung_Signal_iDPZBElementZuordnung_feature = IDPZB Element Zuordnung
+_UI_PZB_Zuordnung_Signal_iDSignal_feature = ID Signal
+_UI_Wirksamkeit_Fstr_TypeClass_wert_feature = Wert
+_UI_Wirksamkeit_TypeClass_wert_feature = Wert
+_UI_Bild_TypeClass_wert_feature = Wert
+_UI_Regelzeichnung_regelzeichnungAllg_feature = Regelzeichnung Allg
+_UI_Regelzeichnung_Allg_AttributeGroup_bild_feature = Bild
+_UI_Regelzeichnung_Allg_AttributeGroup_rZNummer_feature = RZ Nummer
+_UI_Regelzeichnung_Allg_AttributeGroup_titel_feature = Titel
+_UI_Regelzeichnung_Allg_AttributeGroup_untertitel_feature = Untertitel
+_UI_Regelzeichnung_Parameter_iDRegelzeichnung_feature = ID Regelzeichnung
+_UI_Regelzeichnung_Parameter_regelzeichnungParameterAllg_feature = Regelzeichnung Parameter Allg
+_UI_Regelzeichnung_Parameter_Allg_AttributeGroup_rZParameterName_feature = RZ Parameter Name
+_UI_Regelzeichnung_Parameter_Allg_AttributeGroup_rZParameterWert_feature = RZ Parameter Wert
+_UI_RZ_Nummer_TypeClass_wert_feature = Wert
+_UI_RZ_Parameter_Name_TypeClass_wert_feature = Wert
+_UI_RZ_Parameter_Wert_TypeClass_wert_feature = Wert
+_UI_Titel_TypeClass_wert_feature = Wert
+_UI_Untertitel_TypeClass_wert_feature = Wert
+_UI_Bedienung_Art_TypeClass_wert_feature = Wert
+_UI_Beschreibung_Sonderanlage_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Schloss_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Schluessel_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Sk_TypeClass_wert_feature = Wert
+_UI_BUE_Lage_TypeClass_wert_feature = Wert
+_UI_Gsp_Lage_TypeClass_wert_feature = Wert
+_UI_Hauptschloss_TypeClass_wert_feature = Wert
+_UI_Schloss_bezeichnung_feature = Bezeichnung
+_UI_Schloss_iDSchluessel_feature = ID Schluessel
+_UI_Schloss_schluesselInGrdstEingeschl_feature = Schluessel In Grdst Eingeschl
+_UI_Schloss_schlossBUE_feature = Schloss BUE
+_UI_Schloss_schlossGsp_feature = Schloss Gsp
+_UI_Schloss_schlossSk_feature = Schloss Sk
+_UI_Schloss_schlossSonderanlage_feature = Schloss Sonderanlage
+_UI_Schloss_schlossSsp_feature = Schloss Ssp
+_UI_Schloss_schlossW_feature = Schloss W
+_UI_Schloss_technischBerechtigter_feature = Technisch Berechtigter
+_UI_Schloss_Art_TypeClass_wert_feature = Wert
+_UI_Schloss_Bezeichnung_AttributeGroup_bezeichnungSchloss_feature = Bezeichnung Schloss
+_UI_Schloss_BUE_AttributeGroup_bUELage_feature = BUE Lage
+_UI_Schloss_BUE_AttributeGroup_iDBUEAnlage_feature = IDBUE Anlage
+_UI_Schloss_Gsp_AttributeGroup_gspLage_feature = Gsp Lage
+_UI_Schloss_Gsp_AttributeGroup_iDGspElement_feature = ID Gsp Element
+_UI_Schloss_Sk_AttributeGroup_hauptschloss_feature = Hauptschloss
+_UI_Schloss_Sk_AttributeGroup_iDSchlosskombination_feature = ID Schlosskombination
+_UI_Schloss_Sonderanlage_AttributeGroup_sonderanlageLage_feature = Sonderanlage Lage
+_UI_Schloss_Sonderanlage_AttributeGroup_beschreibungSonderanlage_feature = Beschreibung Sonderanlage
+_UI_Schloss_Sonderanlage_AttributeGroup_iDSonderanlage_feature = ID Sonderanlage
+_UI_Schloss_Ssp_AttributeGroup_iDSchluesselsperre_feature = ID Schluesselsperre
+_UI_Schloss_W_AttributeGroup_iDWKrElement_feature = IDW Kr Element
+_UI_Schloss_W_AttributeGroup_schlossArt_feature = Schloss Art
+_UI_Schloss_W_AttributeGroup_verschlussOrt_feature = Verschluss Ort
+_UI_Schloss_W_AttributeGroup_wAnbaulage_feature = WAnbaulage
+_UI_Schloss_W_AttributeGroup_wLage_feature = WLage
+_UI_Schlosskombination_bezeichnung_feature = Bezeichnung
+_UI_Schlosskombination_iDUnterbringung_feature = ID Unterbringung
+_UI_Schlosskombination_Bezeichnung_AttributeGroup_bezeichnungSk_feature = Bezeichnung Sk
+_UI_Schluessel_bezeichnung_feature = Bezeichnung
+_UI_Schluessel_schluesselAllg_feature = Schluessel Allg
+_UI_Schluessel_Allg_AttributeGroup_schluesselBartform_feature = Schluessel Bartform
+_UI_Schluessel_Allg_AttributeGroup_schluesselGruppe_feature = Schluessel Gruppe
+_UI_Schluessel_Bartform_TypeClass_wert_feature = Wert
+_UI_Schluessel_Bezeichnung_AttributeGroup_bezeichnungSchluessel_feature = Bezeichnung Schluessel
+_UI_Schluessel_Gruppe_TypeClass_wert_feature = Wert
+_UI_Schluessel_In_Grdst_Eingeschl_TypeClass_wert_feature = Wert
+_UI_Schluesselsperre_bedienungArt_feature = Bedienung Art
+_UI_Schluesselsperre_bezeichnung_feature = Bezeichnung
+_UI_Schluesselsperre_iDStellelement_feature = ID Stellelement
+_UI_Schluesselsperre_iDUnterbringung_feature = ID Unterbringung
+_UI_Sonderanlage_Lage_TypeClass_wert_feature = Wert
+_UI_Technisch_Berechtigter_TypeClass_wert_feature = Wert
+_UI_Verschluss_Ort_TypeClass_wert_feature = Wert
+_UI_W_Anbaulage_TypeClass_wert_feature = Wert
+_UI_Anschaltdauer_TypeClass_wert_feature = Wert
+_UI_Auto_Einstellung_TypeClass_wert_feature = Wert
+_UI_Befestigung_Art_TypeClass_wert_feature = Wert
+_UI_Beleuchtet_TypeClass_wert_feature = Wert
+_UI_Besetzte_Ausfahrt_TypeClass_wert_feature = Wert
+_UI_DA_Manuell_TypeClass_wert_feature = Wert
+_UI_Dunkelschaltung_TypeClass_wert_feature = Wert
+_UI_Durchfahrt_TypeClass_wert_feature = Wert
+_UI_Fiktives_Signal_Funktion_TypeClass_wert_feature = Wert
+_UI_Fundament_Art_TypeClass_wert_feature = Wert
+_UI_Funktion_Ohne_Signal_TypeClass_wert_feature = Wert
+_UI_Gegengleis_TypeClass_wert_feature = Wert
+_UI_Geltungsbereich_TypeClass_wert_feature = Wert
+_UI_Geschaltet_TypeClass_wert_feature = Wert
+_UI_Hoehe_Fundamentoberkante_TypeClass_wert_feature = Wert
+_UI_Obere_Lichtpunkthoehe_TypeClass_wert_feature = Wert
+_UI_PZB_Schutzstrecke_Soll_TypeClass_wert_feature = Wert
+_UI_Rahmen_Art_TypeClass_wert_feature = Wert
+_UI_Rahmen_Hoehe_TypeClass_wert_feature = Wert
+_UI_Rangierstrasse_Restaufloesung_TypeClass_wert_feature = Wert
+_UI_Richtpunkt_TypeClass_wert_feature = Wert
+_UI_Richtpunktentfernung_TypeClass_wert_feature = Wert
+_UI_Signal_bezeichnung_feature = Bezeichnung
+_UI_Signal_pZBSchutzstreckeSoll_feature = PZB Schutzstrecke Soll
+_UI_Signal_signalFstr_feature = Signal Fstr
+_UI_Signal_signalFstrAusInselgleis_feature = Signal Fstr Aus Inselgleis
+_UI_Signal_signalFstrS_feature = Signal Fstr S
+_UI_Signal_signalFiktiv_feature = Signal Fiktiv
+_UI_Signal_signalReal_feature = Signal Real
+_UI_Signal_Art_TypeClass_wert_feature = Wert
+_UI_Signal_Befestigung_iDRegelzeichnung_feature = ID Regelzeichnung
+_UI_Signal_Befestigung_signalBefestigungAllg_feature = Signal Befestigung Allg
+_UI_Signal_Befestigung_iDBefestigungBauwerk_feature = ID Befestigung Bauwerk
+_UI_Signal_Befestigung_iDSignalBefestigung_feature = ID Signal Befestigung
+_UI_Signal_Befestigung_Allg_AttributeGroup_befestigungArt_feature = Befestigung Art
+_UI_Signal_Befestigung_Allg_AttributeGroup_fundamentArt_feature = Fundament Art
+_UI_Signal_Befestigung_Allg_AttributeGroup_hoeheFundamentoberkante_feature = Hoehe Fundamentoberkante
+_UI_Signal_Befestigung_Allg_AttributeGroup_obereLichtpunkthoehe_feature = Obere Lichtpunkthoehe
+_UI_Signal_Befestigungsart_TypeClass_wert_feature = Wert
+_UI_Signal_Fank_Zuordnung_iDSignalFank_feature = ID Signal Fank
+_UI_Signal_Fank_Zuordnung_iDSignalStart_feature = ID Signal Start
+_UI_Signal_Fiktiv_AttributeGroup_autoEinstellung_feature = Auto Einstellung
+_UI_Signal_Fiktiv_AttributeGroup_fiktivesSignalFunktion_feature = Fiktives Signal Funktion
+_UI_Signal_Fstr_AttributeGroup_besetzteAusfahrt_feature = Besetzte Ausfahrt
+_UI_Signal_Fstr_AttributeGroup_dAManuell_feature = DA Manuell
+_UI_Signal_Fstr_AttributeGroup_durchfahrt_feature = Durchfahrt
+_UI_Signal_Fstr_AttributeGroup_iDRaZielErlaubnisabhaengig_feature = ID Ra Ziel Erlaubnisabhaengig
+_UI_Signal_Fstr_AttributeGroup_rangierstrasseRestaufloesung_feature = Rangierstrasse Restaufloesung
+_UI_Signal_Fstr_Aus_Inselgleis_AttributeGroup_iDRaFahrtGleichzeitigVerbot_feature = ID Ra Fahrt Gleichzeitig Verbot
+_UI_Signal_Fstr_Aus_Inselgleis_AttributeGroup_iDZgFahrtGleichzeitigVerbot_feature = ID Zg Fahrt Gleichzeitig Verbot
+_UI_Signal_Fstr_S_AttributeGroup_gegengleis_feature = Gegengleis
+_UI_Signal_Fstr_S_AttributeGroup_iDAnrueckverschluss_feature = ID Anrueckverschluss
+_UI_Signal_Fstr_S_AttributeGroup_iDZweitesHaltfallkriterium_feature = ID Zweites Haltfallkriterium
+_UI_Signal_Funktion_TypeClass_wert_feature = Wert
+_UI_Signal_Rahmen_iDRegelzeichnung_feature = ID Regelzeichnung
+_UI_Signal_Rahmen_iDSignal_feature = ID Signal
+_UI_Signal_Rahmen_iDSignalBefestigung_feature = ID Signal Befestigung
+_UI_Signal_Rahmen_iDSignalNachordnung_feature = ID Signal Nachordnung
+_UI_Signal_Rahmen_rahmenArt_feature = Rahmen Art
+_UI_Signal_Rahmen_rahmenHoehe_feature = Rahmen Hoehe
+_UI_Signal_Real_Aktiv_AttributeGroup_autoEinstellung_feature = Auto Einstellung
+_UI_Signal_Real_Aktiv_AttributeGroup_iDStellelement_feature = ID Stellelement
+_UI_Signal_Real_Aktiv_AttributeGroup_sonstigeZulaessigeAnordnung_feature = Sonstige Zulaessige Anordnung
+_UI_Signal_Real_Aktiv_AttributeGroup_tunnelsignal_feature = Tunnelsignal
+_UI_Signal_Real_Aktiv_Schirm_AttributeGroup_richtpunkt_feature = Richtpunkt
+_UI_Signal_Real_Aktiv_Schirm_AttributeGroup_richtpunktentfernung_feature = Richtpunktentfernung
+_UI_Signal_Real_Aktiv_Schirm_AttributeGroup_signalArt_feature = Signal Art
+_UI_Signal_Real_Aktiv_Schirm_AttributeGroup_signalsystem_feature = Signalsystem
+_UI_Signal_Real_Aktiv_Schirm_AttributeGroup_streuscheibeArt_feature = Streuscheibe Art
+_UI_Signal_Real_Aktiv_Schirm_AttributeGroup_streuscheibeBetriebsstellung_feature = Streuscheibe Betriebsstellung
+_UI_Signal_Real_AttributeGroup_dunkelschaltung_feature = Dunkelschaltung
+_UI_Signal_Real_AttributeGroup_funktionOhneSignal_feature = Funktion Ohne Signal
+_UI_Signal_Real_AttributeGroup_geltungsbereich_feature = Geltungsbereich
+_UI_Signal_Real_AttributeGroup_signalBefestigungsart_feature = Signal Befestigungsart
+_UI_Signal_Real_AttributeGroup_signalFunktion_feature = Signal Funktion
+_UI_Signal_Real_AttributeGroup_signalRealAktiv_feature = Signal Real Aktiv
+_UI_Signal_Real_AttributeGroup_signalRealAktivSchirm_feature = Signal Real Aktiv Schirm
+_UI_Signal_Real_AttributeGroup_signalsichtErreichbar_feature = Signalsicht Erreichbar
+_UI_Signal_Real_AttributeGroup_signalsichtMindest_feature = Signalsicht Mindest
+_UI_Signal_Real_AttributeGroup_signalsichtSoll_feature = Signalsicht Soll
+_UI_Signal_Signalbegriff_iDSignalRahmen_feature = ID Signal Rahmen
+_UI_Signal_Signalbegriff_signalSignalbegriffAllg_feature = Signal Signalbegriff Allg
+_UI_Signal_Signalbegriff_signalbegriffID_feature = Signalbegriff ID
+_UI_Signal_Signalbegriff_Allg_AttributeGroup_anschaltdauer_feature = Anschaltdauer
+_UI_Signal_Signalbegriff_Allg_AttributeGroup_beleuchtet_feature = Beleuchtet
+_UI_Signal_Signalbegriff_Allg_AttributeGroup_geschaltet_feature = Geschaltet
+_UI_Signal_Signalbegriff_Allg_AttributeGroup_zs2Ueberwacht_feature = Zs2 Ueberwacht
+_UI_Signalsicht_Erreichbar_TypeClass_wert_feature = Wert
+_UI_Signalsicht_Mindest_TypeClass_wert_feature = Wert
+_UI_Signalsicht_Soll_TypeClass_wert_feature = Wert
+_UI_Signalsystem_TypeClass_wert_feature = Wert
+_UI_Sonstige_Zulaessige_Anordnung_TypeClass_wert_feature = Wert
+_UI_Streuscheibe_Art_TypeClass_wert_feature = Wert
+_UI_Streuscheibe_Betriebsstellung_TypeClass_wert_feature = Wert
+_UI_Tunnelsignal_TypeClass_wert_feature = Wert
+_UI_Zs2_Ueberwacht_TypeClass_wert_feature = Wert
+_UI_Annaeherungsgeschwindigkeit_TypeClass_wert_feature = Wert
+_UI_Anzahl_Wiederhol_ZL_Anstoesse_TypeClass_wert_feature = Wert
+_UI_Deadlockpruefung_TypeClass_wert_feature = Wert
+_UI_DWeg_Prio_TypeClass_wert_feature = Wert
+_UI_Einstellkontrollzeit_TypeClass_wert_feature = Wert
+_UI_Fstr_Bildezeit_TypeClass_wert_feature = Wert
+_UI_FUEM_Auswertung_TypeClass_wert_feature = Wert
+_UI_GK_TypeClass_wert_feature = Wert
+_UI_GKZSS_TypeClass_wert_feature = Wert
+_UI_Lenkabbruchzeit_TypeClass_wert_feature = Wert
+_UI_Lenkziffernstellen_TypeClass_wert_feature = Wert
+_UI_Personal_Reaktionszeit_TypeClass_wert_feature = Wert
+_UI_Sichtzeit_Vorsignal_TypeClass_wert_feature = Wert
+_UI_Signalgruppe_Bezeichner_TypeClass_wert_feature = Wert
+_UI_Tv_GK_TypeClass_wert_feature = Wert
+_UI_Vmax_Annaeherung_TypeClass_wert_feature = Wert
+_UI_ZL_iDESTWZentraleinheit_feature = IDESTW Zentraleinheit
+_UI_ZL_iDZN_feature = IDZN
+_UI_ZL_zLAllg_feature = ZL Allg
+_UI_ZL_zLZN_feature = ZLZN
+_UI_ZL_Allg_AttributeGroup_anzahlWiederholZLAnstoesse_feature = Anzahl Wiederhol ZL Anstoesse
+_UI_ZL_Allg_AttributeGroup_deadlockpruefung_feature = Deadlockpruefung
+_UI_ZL_Allg_AttributeGroup_einstellkontrollzeit_feature = Einstellkontrollzeit
+_UI_ZL_Allg_AttributeGroup_lenkabbruchzeit_feature = Lenkabbruchzeit
+_UI_ZL_Allg_AttributeGroup_personalReaktionszeit_feature = Personal Reaktionszeit
+_UI_ZL_DLP_Abschnitt_iDGleisAbschnitt_feature = ID Gleis Abschnitt
+_UI_ZL_DLP_Abschnitt_iDZLDLPFstr_feature = IDZLDLP Fstr
+_UI_ZL_DLP_Fstr_iDZLFstr_feature = IDZL Fstr
+_UI_ZL_Fstr_iDFstrZugRangier_feature = ID Fstr Zug Rangier
+_UI_ZL_Fstr_iDZL_feature = IDZL
+_UI_ZL_Fstr_iDZLFstr_feature = IDZL Fstr
+_UI_ZL_Fstr_zLFstrAllg_feature = ZL Fstr Allg
+_UI_ZL_Fstr_Allg_AttributeGroup_annaeherungsgeschwindigkeit_feature = Annaeherungsgeschwindigkeit
+_UI_ZL_Fstr_Allg_AttributeGroup_dWegPrio_feature = DWeg Prio
+_UI_ZL_Fstr_Allg_AttributeGroup_fstrBildezeit_feature = Fstr Bildezeit
+_UI_ZL_Fstr_Allg_AttributeGroup_fUEMAuswertung_feature = FUEM Auswertung
+_UI_ZL_Fstr_Allg_AttributeGroup_sichtzeitVorsignal_feature = Sichtzeit Vorsignal
+_UI_ZL_Fstr_Anstoss_iDVorsignal_feature = ID Vorsignal
+_UI_ZL_Fstr_Anstoss_iDZLFstr_feature = IDZL Fstr
+_UI_ZL_Fstr_Anstoss_zLFstrAnstossAllg_feature = ZL Fstr Anstoss Allg
+_UI_ZL_Fstr_Anstoss_zLFstrAnstossGK_feature = ZL Fstr Anstoss GK
+_UI_ZL_Fstr_Anstoss_iDEinschaltpunkt_feature = ID Einschaltpunkt
+_UI_ZL_Fstr_Anstoss_iDZNAnzeigefeldAnstoss_feature = IDZN Anzeigefeld Anstoss
+_UI_ZL_Fstr_Anstoss_Allg_AttributeGroup_gKZSS_feature = GKZSS
+_UI_ZL_Fstr_Anstoss_Allg_AttributeGroup_vmaxAnnaeherung_feature = Vmax Annaeherung
+_UI_ZL_Fstr_Anstoss_Allg_AttributeGroup_zLFstrZuschlag_feature = ZL Fstr Zuschlag
+_UI_ZL_Fstr_Anstoss_GK_AttributeGroup_gK_feature = GK
+_UI_ZL_Fstr_Anstoss_GK_AttributeGroup_tvGK_feature = Tv GK
+_UI_ZL_Fstr_Zuschlag_TypeClass_wert_feature = Wert
+_UI_ZL_Signalgruppe_iDZL_feature = IDZL
+_UI_ZL_Signalgruppe_zLSignalgruppeAllg_feature = ZL Signalgruppe Allg
+_UI_ZL_Signalgruppe_Allg_AttributeGroup_signalgruppeBezeichner_feature = Signalgruppe Bezeichner
+_UI_ZL_Signalgruppe_Zuordnung_iDSignal_feature = ID Signal
+_UI_ZL_Signalgruppe_Zuordnung_iDZLSignalgruppe_feature = IDZL Signalgruppe
+_UI_ZL_ZN_AttributeGroup_lenkziffernstellen_feature = Lenkziffernstellen
+_UI_ZL_ZN_AttributeGroup_zNStellen_feature = ZN Stellen
+_UI_ZN_Stellen_TypeClass_wert_feature = Wert
+_UI_Akustikdauer_Anb_Ann_TypeClass_wert_feature = Wert
+_UI_Akustikdauer_Sonst_TypeClass_wert_feature = Wert
+_UI_Akustikdauer_Voranz_TypeClass_wert_feature = Wert
+_UI_Anschlussnummer_TypeClass_wert_feature = Wert
+_UI_Ausfahrdruck_Gegengleis_TypeClass_wert_feature = Wert
+_UI_Ausfahrdruck_TypeClass_wert_feature = Wert
+_UI_Bedienbarkeit_Anzeigefeld_TypeClass_wert_feature = Wert
+_UI_Besonderes_Schaltkriterium_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Besondere_Anlage_TypeClass_wert_feature = Wert
+_UI_Bf_Kennung_TypeClass_wert_feature = Wert
+_UI_Bf_Nr_ANB_TypeClass_wert_feature = Wert
+_UI_Bf_Nr_TypeClass_wert_feature = Wert
+_UI_Bf_Nr_ZN_A_TypeClass_wert_feature = Wert
+_UI_Durchfahrdruck_TypeClass_wert_feature = Wert
+_UI_Einfahrdruck_Gegengleis_TypeClass_wert_feature = Wert
+_UI_Einfahrdruck_TypeClass_wert_feature = Wert
+_UI_Einwahlstelle_TypeClass_wert_feature = Wert
+_UI_Funktionalitaet_Anzeigefeld_TypeClass_wert_feature = Wert
+_UI_HOA_TypeClass_wert_feature = Wert
+_UI_IP_Adresse_TypeClass_wert_feature = Wert
+_UI_Koppelunterstation_TypeClass_wert_feature = Wert
+_UI_KUs_Zeittelegramm_TypeClass_wert_feature = Wert
+_UI_Meldedruck_TypeClass_wert_feature = Wert
+_UI_Reaktivierungsfunktion_TypeClass_wert_feature = Wert
+_UI_Sichtbarkeit_Anzeigefeld_TypeClass_wert_feature = Wert
+_UI_Telegramm_02_TypeClass_wert_feature = Wert
+_UI_Telegramm_03_TypeClass_wert_feature = Wert
+_UI_Telegramm_04_TypeClass_wert_feature = Wert
+_UI_Telegramm_10_TypeClass_wert_feature = Wert
+_UI_Telegramm_21_TypeClass_wert_feature = Wert
+_UI_Telegramm_30_TypeClass_wert_feature = Wert
+_UI_Telegramm_84_Alle_Fstr_AttributeGroup_iDZLVBus_feature = IDZLV Bus
+_UI_Telegramm_84_Alle_Fstr_AttributeGroup_telegramm84FuerAlleFstr_feature = Telegramm84 Fuer Alle Fstr
+_UI_Telegramm_84_Einzelne_Fstr_AttributeGroup_iDFstrZugRangier_feature = ID Fstr Zug Rangier
+_UI_Telegramm_84_Einzelne_Fstr_AttributeGroup_iDZLVBus_feature = IDZLV Bus
+_UI_Telegramm_84_Fuer_Alle_Fstr_TypeClass_wert_feature = Wert
+_UI_Telegramm_84_Verzicht_TypeClass_wert_feature = Wert
+_UI_Telegramm_85_Alle_Fstr_AttributeGroup_iDZLVBus_feature = IDZLV Bus
+_UI_Telegramm_85_Alle_Fstr_AttributeGroup_telegramm85FuerAlleFstr_feature = Telegramm85 Fuer Alle Fstr
+_UI_Telegramm_85_Einzelne_Fstr_AttributeGroup_iDFstrZugRangier_feature = ID Fstr Zug Rangier
+_UI_Telegramm_85_Einzelne_Fstr_AttributeGroup_iDZLVBus_feature = IDZLV Bus
+_UI_Telegramm_85_Fuer_Alle_Fstr_TypeClass_wert_feature = Wert
+_UI_Telegrammwiederholung_TypeClass_wert_feature = Wert
+_UI_Unterstation_Max_TypeClass_wert_feature = Wert
+_UI_Unterstation_Nr_TypeClass_wert_feature = Wert
+_UI_Verzoegerung_Manuell_Loeschung_TypeClass_wert_feature = Wert
+_UI_Vormeldestart_TypeClass_wert_feature = Wert
+_UI_ZBS_Adresse_TypeClass_wert_feature = Wert
+_UI_ZBS_Anbindung_TypeClass_wert_feature = Wert
+_UI_ZBS_Schnittstelle_TypeClass_wert_feature = Wert
+_UI_Zeitsynchronisation_Funkuhr_TypeClass_wert_feature = Wert
+_UI_ZLV_Bus_bezeichnung_feature = Bezeichnung
+_UI_ZLV_Bus_zLVBusAllg_feature = ZLV Bus Allg
+_UI_ZLV_Bus_Allg_AttributeGroup_unterstationMax_feature = Unterstation Max
+_UI_ZLV_Bus_Allg_AttributeGroup_zNModem_feature = ZN Modem
+_UI_ZLV_Bus_Besondere_Anlage_bezeichnung_feature = Bezeichnung
+_UI_ZLV_Bus_Besondere_Anlage_iDZLVBus_feature = IDZLV Bus
+_UI_ZLV_Bus_Besondere_Anlage_unterstationNr_feature = Unterstation Nr
+_UI_ZLV_Bus_Besondere_Anlage_Bezeichnung_AttributeGroup_bezeichnungBesondereAnlage_feature = Bezeichnung Besondere Anlage
+_UI_ZLV_Bus_Bezeichnung_AttributeGroup_zLVBusNr_feature = ZLV Bus Nr
+_UI_ZLV_Bus_Nr_TypeClass_wert_feature = Wert
+_UI_ZLV_Bus_US_Zuordnung_iDZLVBus_feature = IDZLV Bus
+_UI_ZLV_Bus_US_Zuordnung_iDZNUnterstation_feature = IDZN Unterstation
+_UI_ZLV_Bus_US_Zuordnung_zLVBusUSZuordnungTelegramm_feature = ZLV Bus US Zuordnung Telegramm
+_UI_ZLV_Bus_US_Zuordnung_zLVBusZuordnungAllg_feature = ZLV Bus Zuordnung Allg
+_UI_ZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm02_feature = Telegramm02
+_UI_ZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm03_feature = Telegramm03
+_UI_ZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm04_feature = Telegramm04
+_UI_ZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm10_feature = Telegramm10
+_UI_ZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm21_feature = Telegramm21
+_UI_ZLV_Bus_US_Zuordnung_Telegramm_AttributeGroup_telegramm30_feature = Telegramm30
+_UI_ZLV_Bus_Zuordnung_Allg_AttributeGroup_anschlussnummer_feature = Anschlussnummer
+_UI_ZLV_Bus_Zuordnung_Allg_AttributeGroup_unterstationNr_feature = Unterstation Nr
+_UI_ZN_iDAnhangZNPlanBedienraum_feature = ID Anhang ZN Plan Bedienraum
+_UI_ZN_iDAnhangZNPlanRechnerraum_feature = ID Anhang ZN Plan Rechnerraum
+_UI_ZN_iDOertlichkeit_feature = ID Oertlichkeit
+_UI_ZN_bezeichnungStellwerk_feature = Bezeichnung Stellwerk
+_UI_ZN_iDStellwerk_feature = ID Stellwerk
+_UI_ZN_iDUnterbringung_feature = ID Unterbringung
+_UI_ZN_iDZNUnterstation_feature = IDZN Unterstation
+_UI_ZN_zNAllg_feature = ZN Allg
+_UI_ZN_A_Bedienbezeichner_Frei_TypeClass_wert_feature = Wert
+_UI_ZN_A_Bezeichner_TypeClass_wert_feature = Wert
+_UI_ZN_Akustik_zNAkustikAnzeigefeld_feature = ZN Akustik Anzeigefeld
+_UI_ZN_Akustik_iDZN_feature = IDZN
+_UI_ZN_Akustik_iDZNAnzeigefeld_feature = IDZN Anzeigefeld
+_UI_ZN_Akustik_Anzeigefeld_AttributeGroup_akustikdauerAnbAnn_feature = Akustikdauer Anb Ann
+_UI_ZN_Akustik_Anzeigefeld_AttributeGroup_akustikdauerSonst_feature = Akustikdauer Sonst
+_UI_ZN_Akustik_Anzeigefeld_AttributeGroup_akustikdauerVoranz_feature = Akustikdauer Voranz
+_UI_ZN_Allg_AttributeGroup_einwahlstelle_feature = Einwahlstelle
+_UI_ZN_Allg_AttributeGroup_reaktivierungsfunktion_feature = Reaktivierungsfunktion
+_UI_ZN_Allg_AttributeGroup_zNAnlagentyp_feature = ZN Anlagentyp
+_UI_ZN_Anlagentyp_TypeClass_wert_feature = Wert
+_UI_ZN_Anzeigefeld_iDGleisAbschnitt_feature = ID Gleis Abschnitt
+_UI_ZN_Anzeigefeld_iDZLVBus_feature = IDZLV Bus
+_UI_ZN_Anzeigefeld_iDZN_feature = IDZN
+_UI_ZN_Anzeigefeld_iDZNAnzeigefeld_feature = IDZN Anzeigefeld
+_UI_ZN_Anzeigefeld_zNAnzeigefeldAllg_feature = ZN Anzeigefeld Allg
+_UI_ZN_Anzeigefeld_zNAnzeigefeldBezeichnung_feature = ZN Anzeigefeld Bezeichnung
+_UI_ZN_Anzeigefeld_Allg_AttributeGroup_bedienbarkeitAnzeigefeld_feature = Bedienbarkeit Anzeigefeld
+_UI_ZN_Anzeigefeld_Allg_AttributeGroup_bfNrANB_feature = Bf Nr ANB
+_UI_ZN_Anzeigefeld_Allg_AttributeGroup_bfNrZNA_feature = Bf Nr ZNA
+_UI_ZN_Anzeigefeld_Allg_AttributeGroup_funktionalitaetAnzeigefeld_feature = Funktionalitaet Anzeigefeld
+_UI_ZN_Anzeigefeld_Allg_AttributeGroup_hOA_feature = HOA
+_UI_ZN_Anzeigefeld_Allg_AttributeGroup_sichtbarkeitAnzeigefeld_feature = Sichtbarkeit Anzeigefeld
+_UI_ZN_Anzeigefeld_Allg_AttributeGroup_verzoegerungManuellLoeschung_feature = Verzoegerung Manuell Loeschung
+_UI_ZN_Anzeigefeld_Allg_AttributeGroup_vormeldestart_feature = Vormeldestart
+_UI_ZN_Anzeigefeld_Allg_AttributeGroup_zNAnzeigefeldLoeschkriterium_feature = ZN Anzeigefeld Loeschkriterium
+_UI_ZN_Anzeigefeld_Allg_AttributeGroup_zNFeldOhneAnzeige_feature = ZN Feld Ohne Anzeige
+_UI_ZN_Anzeigefeld_Allg_AttributeGroup_zugvorbereitungsmeldung_feature = Zugvorbereitungsmeldung
+_UI_ZN_Anzeigefeld_Bezeichnung_AttributeGroup_zNABedienbezeichnerFrei_feature = ZNA Bedienbezeichner Frei
+_UI_ZN_Anzeigefeld_Bezeichnung_AttributeGroup_zNABezeichner_feature = ZNA Bezeichner
+_UI_ZN_Anzeigefeld_Loeschkriterium_TypeClass_wert_feature = Wert
+_UI_ZN_Feld_Ohne_Anzeige_TypeClass_wert_feature = Wert
+_UI_ZN_Fortschalt_Krit_Druck_AttributeGroup_ausfahrdruck_feature = Ausfahrdruck
+_UI_ZN_Fortschalt_Krit_Druck_AttributeGroup_ausfahrdruckGegengleis_feature = Ausfahrdruck Gegengleis
+_UI_ZN_Fortschalt_Krit_Druck_AttributeGroup_durchfahrdruck_feature = Durchfahrdruck
+_UI_ZN_Fortschalt_Krit_Druck_AttributeGroup_einfahrdruck_feature = Einfahrdruck
+_UI_ZN_Fortschalt_Krit_Druck_AttributeGroup_einfahrdruckGegengleis_feature = Einfahrdruck Gegengleis
+_UI_ZN_Fortschalt_Krit_Druck_AttributeGroup_meldedruck_feature = Meldedruck
+_UI_ZN_Fortschalt_Krit_Schalt_AttributeGroup_besonderesSchaltkriterium_feature = Besonderes Schaltkriterium
+_UI_ZN_Fortschalt_Krit_Schalt_AttributeGroup_iDFortschaltungStart_feature = ID Fortschaltung Start
+_UI_ZN_Fortschalt_Krit_Schalt_AttributeGroup_telegrammwiederholung_feature = Telegrammwiederholung
+_UI_ZN_Fortschalt_Krit_Schalt_AttributeGroup_zNSchaltkriterium_feature = ZN Schaltkriterium
+_UI_ZN_Fortschalt_Kriterium_iDZN_feature = IDZN
+_UI_ZN_Fortschalt_Kriterium_iDZNFortschaltKritStart_feature = IDZN Fortschalt Krit Start
+_UI_ZN_Fortschalt_Kriterium_iDZNFortschaltKritZiel_feature = IDZN Fortschalt Krit Ziel
+_UI_ZN_Fortschalt_Kriterium_zNFortschaltKritDruck_feature = ZN Fortschalt Krit Druck
+_UI_ZN_Fortschalt_Kriterium_zNFortschaltKritSchalt_feature = ZN Fortschalt Krit Schalt
+_UI_ZN_Modem_TypeClass_wert_feature = Wert
+_UI_ZN_Schaltkriterium_TypeClass_wert_feature = Wert
+_UI_ZN_Telegramm_84_Zuordnung_iDZN_feature = IDZN
+_UI_ZN_Telegramm_84_Zuordnung_telegramm84AlleFstr_feature = Telegramm84 Alle Fstr
+_UI_ZN_Telegramm_84_Zuordnung_telegramm84EinzelneFstr_feature = Telegramm84 Einzelne Fstr
+_UI_ZN_Telegramm_84_Zuordnung_telegramm84Verzicht_feature = Telegramm84 Verzicht
+_UI_ZN_Telegramm_85_Zuordnung_iDZN_feature = IDZN
+_UI_ZN_Telegramm_85_Zuordnung_telegramm85AlleFstr_feature = Telegramm85 Alle Fstr
+_UI_ZN_Telegramm_85_Zuordnung_telegramm85EinzelneFstr_feature = Telegramm85 Einzelne Fstr
+_UI_ZN_Unterstation_iDZNZBS_feature = IDZNZBS
+_UI_ZN_Unterstation_zNUnterstationAllg_feature = ZN Unterstation Allg
+_UI_ZN_Unterstation_Allg_AttributeGroup_bfKennung_feature = Bf Kennung
+_UI_ZN_Unterstation_Allg_AttributeGroup_koppelunterstation_feature = Koppelunterstation
+_UI_ZN_Unterstation_Allg_AttributeGroup_kUsZeittelegramm_feature = KUs Zeittelegramm
+_UI_ZN_Unterstation_Allg_AttributeGroup_zBSAdresse_feature = ZBS Adresse
+_UI_ZN_Unterstation_Allg_AttributeGroup_zBSAnbindung_feature = ZBS Anbindung
+_UI_ZN_Unterstation_Allg_AttributeGroup_zeitsynchronisationFunkuhr_feature = Zeitsynchronisation Funkuhr
+_UI_ZN_Unterstation_Allg_AttributeGroup_zNUnterstationBfNr_feature = ZN Unterstation Bf Nr
+_UI_ZN_Unterstation_Bf_Nr_AttributeGroup_bfNr_feature = Bf Nr
+_UI_ZN_Unterstation_Bf_Nr_AttributeGroup_iDOertlichkeit_feature = ID Oertlichkeit
+_UI_ZN_Unterstation_Bf_Nr_AttributeGroup_prioritaet_feature = Prioritaet
+_UI_ZN_ZBS_iDESTWZentraleinheit_feature = IDESTW Zentraleinheit
+_UI_ZN_ZBS_iPAdresse_feature = IP Adresse
+_UI_ZN_ZBS_zBSSchnittstelle_feature = ZBS Schnittstelle
+_UI_Zugvorbereitungsmeldung_TypeClass_wert_feature = Wert
+_UI_ID_Anforderer_Element_TypeClass_value_feature = Value
+_UI_ID_Anforderer_Element_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Anforderung_TypeClass_value_feature = Value
+_UI_ID_Anforderung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Anhang_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_Anhang_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Anhang_TypeClass_value_feature = Value
+_UI_ID_Anhang_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_AnhangBearbeitungsvermerk_TypeClass_value_feature = Value
+_UI_ID_AnhangBearbeitungsvermerk_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Anschluss_Element_TypeClass_value_feature = Value
+_UI_ID_Anschluss_Element_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ATO_TS_Instanz_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_ATO_TS_Instanz_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ATO_TS_Instanz_TypeClass_value_feature = Value
+_UI_ID_ATO_TS_Instanz_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Ausgabe_Fachdaten_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_Ausgabe_Fachdaten_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Aussenelementansteuerung_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_Aussenelementansteuerung_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Aussenelementansteuerung_TypeClass_value_feature = Value
+_UI_ID_Aussenelementansteuerung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Bahnsteig_Anlage_TypeClass_value_feature = Value
+_UI_ID_Bahnsteig_Anlage_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Bahnsteig_Kante_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_Bahnsteig_Kante_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Bahnsteig_Kante_TypeClass_value_feature = Value
+_UI_ID_Bahnsteig_Kante_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Balise_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_Balise_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Balise_TypeClass_value_feature = Value
+_UI_ID_Balise_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Basis_Objekt_TypeClass_value_feature = Value
+_UI_ID_Basis_Objekt_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Bedien_Anzeige_Element_TypeClass_value_feature = Value
+_UI_ID_Bedien_Anzeige_Element_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Bedien_Bezirk_TypeClass_value_feature = Value
+_UI_ID_Bedien_Bezirk_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Bedien_Einrichtung_Oertlich_TypeClass_value_feature = Value
+_UI_ID_Bedien_Einrichtung_Oertlich_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Bedien_Oberflaeche_TypeClass_value_feature = Value
+_UI_ID_Bedien_Oberflaeche_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Bedien_Standort_TypeClass_value_feature = Value
+_UI_ID_Bedien_Standort_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Bedien_Zentrale_TypeClass_value_feature = Value
+_UI_ID_Bedien_Zentrale_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Befestigung_Bauwerk_TypeClass_value_feature = Value
+_UI_ID_Befestigung_Bauwerk_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Beginn_Bereich_TypeClass_value_feature = Value
+_UI_ID_Beginn_Bereich_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Bezugspunkt_Positionierung_TypeClass_value_feature = Value
+_UI_ID_Bezugspunkt_Positionierung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Bezugspunkt_TypeClass_value_feature = Value
+_UI_ID_Bezugspunkt_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Binaerdaten_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_Binaerdaten_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Block_Anlage_TypeClass_value_feature = Value
+_UI_ID_Block_Anlage_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Block_Element_TypeClass_value_feature = Value
+_UI_ID_Block_Element_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Block_Strecke_TypeClass_value_feature = Value
+_UI_ID_Block_Strecke_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_BUE_Anlage_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_BUE_Anlage_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_BUE_Anlage_TypeClass_value_feature = Value
+_UI_ID_BUE_Anlage_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_BUE_Bedien_Anzeige_Element_TypeClass_value_feature = Value
+_UI_ID_BUE_Bedien_Anzeige_Element_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_BUE_Einschaltung_TypeClass_value_feature = Value
+_UI_ID_BUE_Einschaltung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_BUE_Gleisbezogener_Gefahrraum_TypeClass_value_feature = Value
+_UI_ID_BUE_Gleisbezogener_Gefahrraum_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_BUE_Schnittstelle_TypeClass_value_feature = Value
+_UI_ID_BUE_Schnittstelle_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_BUE_WS_Fstr_Zuordnung_TypeClass_value_feature = Value
+_UI_ID_BUE_WS_Fstr_Zuordnung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Datenpunkt_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_Datenpunkt_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Datenpunkt_TypeClass_value_feature = Value
+_UI_ID_Datenpunkt_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_DP_Bezug_Funktional_TypeClass_value_feature = Value
+_UI_ID_DP_Bezug_Funktional_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Einschaltpunkt_TypeClass_value_feature = Value
+_UI_ID_Einschaltpunkt_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Element_Grenze_TypeClass_value_feature = Value
+_UI_ID_Element_Grenze_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Element_TypeClass_value_feature = Value
+_UI_ID_Element_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Element_Unterbringung_TypeClass_value_feature = Value
+_UI_ID_Element_Unterbringung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Energie_Eingang_TypeClass_value_feature = Value
+_UI_ID_Energie_Eingang_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Energie_TypeClass_value_feature = Value
+_UI_ID_Energie_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ESTW_Zentraleinheit_TypeClass_value_feature = Value
+_UI_ID_ESTW_Zentraleinheit_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ETCS_Kante_TypeClass_value_feature = Value
+_UI_ID_ETCS_Kante_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ETCS_Knoten_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_ETCS_Knoten_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ETCS_Knoten_TypeClass_value_feature = Value
+_UI_ID_ETCS_Knoten_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_EV_Modul_TypeClass_value_feature = Value
+_UI_ID_EV_Modul_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Fachtelegramm_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_Fachtelegramm_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Fachtelegramm_TypeClass_value_feature = Value
+_UI_ID_Fachtelegramm_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Fla_Schutz_TypeClass_value_feature = Value
+_UI_ID_Fla_Schutz_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_FMA_Anlage_Rangier_Frei_TypeClass_value_feature = Value
+_UI_ID_FMA_Anlage_Rangier_Frei_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_FMA_Anlage_TypeClass_value_feature = Value
+_UI_ID_FMA_Anlage_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_FMA_Element_TypeClass_value_feature = Value
+_UI_ID_FMA_Element_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_FMA_Komponente_TypeClass_value_feature = Value
+_UI_ID_FMA_Komponente_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Fortschaltung_Start_TypeClass_value_feature = Value
+_UI_ID_Fortschaltung_Start_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Fstr_Aneinander_TypeClass_value_feature = Value
+_UI_ID_Fstr_Aneinander_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Fstr_Ausschluss_Besonders_TypeClass_value_feature = Value
+_UI_ID_Fstr_Ausschluss_Besonders_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Fstr_DWeg_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_Fstr_DWeg_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Fstr_DWeg_TypeClass_value_feature = Value
+_UI_ID_Fstr_DWeg_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Fstr_Fahrweg_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_Fstr_Fahrweg_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Fstr_Fahrweg_TypeClass_value_feature = Value
+_UI_ID_Fstr_Fahrweg_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Fstr_Zug_Rangier_TypeClass_value_feature = Value
+_UI_ID_Fstr_Zug_Rangier_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_FT_Anschaltbedingung_TypeClass_value_feature = Value
+_UI_ID_FT_Anschaltbedingung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_FT_Fahrweg_Teil_TypeClass_value_feature = Value
+_UI_ID_FT_Fahrweg_Teil_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_GEO_Art_TypeClass_value_feature = Value
+_UI_ID_GEO_Art_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_GEO_Kante_TypeClass_value_feature = Value
+_UI_ID_GEO_Kante_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_GEO_Knoten_TypeClass_value_feature = Value
+_UI_ID_GEO_Knoten_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_GEO_Punkt_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_GEO_Punkt_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_GEO_Punkt_TypeClass_value_feature = Value
+_UI_ID_GEO_Punkt_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_GFR_Anlage_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_GFR_Anlage_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Gleis_Abschnitt_TypeClass_value_feature = Value
+_UI_ID_Gleis_Abschnitt_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Gleis_Bezeichnung_TypeClass_value_feature = Value
+_UI_ID_Gleis_Bezeichnung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Grenzzeichen_TypeClass_value_feature = Value
+_UI_ID_Grenzzeichen_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Handschalt_Wirkfunktion_TypeClass_value_feature = Value
+_UI_ID_Handschalt_Wirkfunktion_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Hoehenpunkt_TypeClass_value_feature = Value
+_UI_ID_Hoehenpunkt_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Information_Eingang_TypeClass_value_feature = Value
+_UI_ID_Information_Eingang_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Information_Primaer_TypeClass_value_feature = Value
+_UI_ID_Information_Primaer_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Komponente_Programmiert_TypeClass_value_feature = Value
+_UI_ID_Komponente_Programmiert_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Lageplan_Blattschnitt_TypeClass_value_feature = Value
+_UI_ID_Lageplan_Blattschnitt_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Lageplan_TypeClass_value_feature = Value
+_UI_ID_Lageplan_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Lageplan_Zustand_TypeClass_value_feature = Value
+_UI_ID_Lageplan_Zustand_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_LEU_Anlage_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_LEU_Anlage_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_LEU_Anlage_TypeClass_value_feature = Value
+_UI_ID_LEU_Anlage_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_LEU_Bezug_Funktional_TypeClass_value_feature = Value
+_UI_ID_LEU_Bezug_Funktional_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_LEU_Schaltkasten_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_LEU_Schaltkasten_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_LO_Einbau_TypeClass_value_feature = Value
+_UI_ID_LO_Einbau_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Markante_Stelle_TypeClass_value_feature = Value
+_UI_ID_Markante_Stelle_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Markanter_Punkt_Gleis_Abschluss_TypeClass_value_feature = Value
+_UI_ID_Markanter_Punkt_Gleis_Abschluss_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Markanter_Punkt_TypeClass_value_feature = Value
+_UI_ID_Markanter_Punkt_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_NB_Element_TypeClass_value_feature = Value
+_UI_ID_NB_Element_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_NB_TypeClass_value_feature = Value
+_UI_ID_NB_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_NB_Zone_TypeClass_value_feature = Value
+_UI_ID_NB_Zone_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Oertlichkeit_Ausgabe_TypeClass_value_feature = Value
+_UI_ID_Oertlichkeit_Ausgabe_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Oertlichkeit_Proxy_TypeClass_value_feature = Value
+_UI_ID_Oertlichkeit_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Oertlichkeit_TypeClass_value_feature = Value
+_UI_ID_Oertlichkeit_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_PlanPro_Schnittstelle_TypeClass_value_feature = Value
+_UI_ID_PlanPro_Schnittstelle_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Planung_Einzel_TypeClass_value_feature = Value
+_UI_ID_Planung_Einzel_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Planungsgrundlage_TypeClass_value_feature = Value
+_UI_ID_Planungsgrundlage_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_PZB_Element_Bezugspunkt_TypeClass_value_feature = Value
+_UI_ID_PZB_Element_Bezugspunkt_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_PZB_Element_Mitnutzung_TypeClass_value_feature = Value
+_UI_ID_PZB_Element_Mitnutzung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_PZB_Element_TypeClass_value_feature = Value
+_UI_ID_PZB_Element_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_PZB_Element_Zuordnung_TypeClass_value_feature = Value
+_UI_ID_PZB_Element_Zuordnung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Quellelement_TypeClass_value_feature = Value
+_UI_ID_Quellelement_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_RBC_TypeClass_value_feature = Value
+_UI_ID_RBC_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Regelzeichnung_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_Regelzeichnung_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Regelzeichnung_TypeClass_value_feature = Value
+_UI_ID_Regelzeichnung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Schalter_TypeClass_value_feature = Value
+_UI_ID_Schalter_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Schaltmittel_Zuordnung_TypeClass_value_feature = Value
+_UI_ID_Schaltmittel_Zuordnung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Schlosskombination_TypeClass_value_feature = Value
+_UI_ID_Schlosskombination_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Schluessel_TypeClass_value_feature = Value
+_UI_ID_Schluessel_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Schluesselsperre_TypeClass_value_feature = Value
+_UI_ID_Schluesselsperre_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Signal_Befestigung_TypeClass_value_feature = Value
+_UI_ID_Signal_Befestigung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Signal_Fank_TypeClass_value_feature = Value
+_UI_ID_Signal_Fank_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Signal_Gleisbezechnung_TypeClass_value_feature = Value
+_UI_ID_Signal_Gleisbezechnung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Signal_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_Signal_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Signal_Rahmen_TypeClass_value_feature = Value
+_UI_ID_Signal_Rahmen_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Signal_Signalbegriff_TypeClass_value_feature = Value
+_UI_ID_Signal_Signalbegriff_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Signal_Start_TypeClass_value_feature = Value
+_UI_ID_Signal_Start_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Signal_TypeClass_value_feature = Value
+_UI_ID_Signal_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Sonderanlage_TypeClass_value_feature = Value
+_UI_ID_Sonderanlage_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Stellelement_TypeClass_value_feature = Value
+_UI_ID_Stellelement_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Stellwerk_TypeClass_value_feature = Value
+_UI_ID_Stellwerk_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Strecke_Bremsweg_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_Strecke_Bremsweg_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Strecke_Punkt_TypeClass_value_feature = Value
+_UI_ID_Strecke_Punkt_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Strecke_TypeClass_value_feature = Value
+_UI_ID_Strecke_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Technischer_Punkt_TypeClass_value_feature = Value
+_UI_ID_Technischer_Punkt_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_TOP_Kante_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_TOP_Kante_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_TOP_Kante_TypeClass_value_feature = Value
+_UI_ID_TOP_Kante_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_TOP_Knoten_TypeClass_value_feature = Value
+_UI_ID_TOP_Knoten_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Trasse_Kante_TypeClass_value_feature = Value
+_UI_ID_Trasse_Kante_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Trasse_Knoten_TypeClass_value_feature = Value
+_UI_ID_Trasse_Knoten_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Ueberhoehung_TypeClass_value_feature = Value
+_UI_ID_Ueberhoehung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Uebertragungsweg_Nach_TypeClass_value_feature = Value
+_UI_ID_Uebertragungsweg_Nach_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Uebertragungsweg_Von_TypeClass_value_feature = Value
+_UI_ID_Uebertragungsweg_Von_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Umfahrpunkt_TypeClass_value_feature = Value
+_UI_ID_Umfahrpunkt_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Unterbringung_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_Unterbringung_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Unterbringung_Technik_TypeClass_value_feature = Value
+_UI_ID_Unterbringung_Technik_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Unterbringung_TypeClass_value_feature = Value
+_UI_ID_Unterbringung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Ur_Objekt_TypeClass_value_feature = Value
+_UI_ID_Ur_Objekt_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Verknuepftes_Element_TypeClass_value_feature = Value
+_UI_ID_Verknuepftes_Element_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_W_Kr_Anlage_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_W_Kr_Anlage_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_W_Kr_Anlage_TypeClass_value_feature = Value
+_UI_ID_W_Kr_Anlage_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_W_Kr_Gsp_Element_TypeClass_value_feature = Value
+_UI_ID_W_Kr_Gsp_Element_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_W_Kr_Gsp_Komponente_TypeClass_value_feature = Value
+_UI_ID_W_Kr_Gsp_Komponente_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Weichenlaufkette_TypeClass_value_feature = Value
+_UI_ID_Weichenlaufkette_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Ziel_TypeClass_value_feature = Value
+_UI_ID_Ziel_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ZL_DLP_Fstr_TypeClass_value_feature = Value
+_UI_ID_ZL_DLP_Fstr_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ZL_Fstr_TypeClass_value_feature = Value
+_UI_ID_ZL_Fstr_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ZL_Signalgruppe_TypeClass_value_feature = Value
+_UI_ID_ZL_Signalgruppe_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ZL_TypeClass_value_feature = Value
+_UI_ID_ZL_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ZLV_Bus_ohne_Proxy_TypeClass_value_feature = Value
+_UI_ID_ZLV_Bus_ohne_Proxy_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ZLV_Bus_TypeClass_value_feature = Value
+_UI_ID_ZLV_Bus_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ZN_Anzeigefeld_Anstoss_TypeClass_value_feature = Value
+_UI_ID_ZN_Anzeigefeld_Anstoss_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ZN_Anzeigefeld_TypeClass_value_feature = Value
+_UI_ID_ZN_Anzeigefeld_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ZN_Fortschalt_Kriterium_TypeClass_value_feature = Value
+_UI_ID_ZN_Fortschalt_Kriterium_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ZN_TypeClass_value_feature = Value
+_UI_ID_ZN_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ZN_Unterstation_TypeClass_value_feature = Value
+_UI_ID_ZN_Unterstation_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_ZN_ZBS_TypeClass_value_feature = Value
+_UI_ID_ZN_ZBS_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Zugeinwirkung_TypeClass_value_feature = Value
+_UI_ID_Zugeinwirkung_TypeClass_invalidReference_feature = Invalid Reference
+_UI_ID_Zweites_Haltfallkriterium_TypeClass_value_feature = Value
+_UI_ID_Zweites_Haltfallkriterium_TypeClass_invalidReference_feature = Invalid Reference
+_UI_Signalbegriff_ID_TypeClass_symbol_feature = Symbol
+_UI_Signalbegriff_ID_TypeClass_anmerkungen_feature = Anmerkungen
+_UI_Signalbegriff_ID_TypeClass_beleuchtbar_feature = Beleuchtbar
+_UI_Signalbegriff_ID_TypeClass_beschreibung_feature = Beschreibung
+_UI_Signalbegriff_ID_TypeClass_geltungsbereichDS_feature = Geltungsbereich DS
+_UI_Signalbegriff_ID_TypeClass_geltungsbereichDV_feature = Geltungsbereich DV
+_UI_Signalbegriff_ID_TypeClass_geltungsbereichSBahnB_feature = Geltungsbereich SBahn B
+_UI_Signalbegriff_ID_TypeClass_geltungsbereichSBahnHH_feature = Geltungsbereich SBahn HH
+_UI_Signalbegriff_ID_TypeClass_gueltigAb_feature = Gueltig Ab
+_UI_Signalbegriff_ID_TypeClass_gueltigBis_feature = Gueltig Bis
+_UI_Signalbegriff_ID_TypeClass_kurzbezeichnungDS_feature = Kurzbezeichnung DS
+_UI_Signalbegriff_ID_TypeClass_kurzbezeichnungDV_feature = Kurzbezeichnung DV
+_UI_Signalbegriff_ID_TypeClass_langbezeichnung_feature = Langbezeichnung
+_UI_Signalbegriff_ID_TypeClass_schaltbar_feature = Schaltbar
+_UI_Signalbegriff_ID_TypeClass_zusatzMoeglich_feature = Zusatz Moeglich
+_UI_Bez_Lageplan_Blattschnitt_TypeClass_wert_feature = Wert
+_UI_Bezeichnung_Lageplan_TypeClass_wert_feature = Wert
+_UI_Darstellung_Polygonzug_TypeClass_wert_feature = Wert
+_UI_Darstellung_Richtungswinkel_Bezeichnung_TypeClass_wert_feature = Wert
+_UI_Darstellung_Richtungswinkel_TypeClass_wert_feature = Wert
+_UI_DocumentRoot_planProLayoutinfo_feature = Plan Pro Layoutinfo
+_UI_Element_Position_elementPositionAllg_feature = Element Position Allg
+_UI_Element_Position_iDLageplanZustand_feature = ID Lageplan Zustand
+_UI_Element_Position_referenzObjektDarstellung_feature = Referenz Objekt Darstellung
+_UI_Element_Position_Allg_AttributeGroup_darstellungGEOPunktBezeichnung_feature = Darstellung GEO Punkt Bezeichnung
+_UI_Element_Position_Allg_AttributeGroup_darstellungRichtungswinkel_feature = Darstellung Richtungswinkel
+_UI_Element_Position_Allg_AttributeGroup_darstellungRichtungswinkelBezeichnung_feature = Darstellung Richtungswinkel Bezeichnung
+_UI_Element_Position_Allg_AttributeGroup_darstellungGEOPunkt_feature = Darstellung GEO Punkt
+_UI_Element_Position_Allg_AttributeGroup_darstellungPolygonzug_feature = Darstellung Polygonzug
+_UI_Element_Stil_elementStilAllg_feature = Element Stil Allg
+_UI_Element_Stil_iDLageplanZustand_feature = ID Lageplan Zustand
+_UI_Element_Stil_referenzObjektDarstellung_feature = Referenz Objekt Darstellung
+_UI_Element_Stil_Allg_AttributeGroup_fuellung_feature = Fuellung
+_UI_Element_Stil_Allg_AttributeGroup_linieArt_feature = Linie Art
+_UI_Element_Stil_Allg_AttributeGroup_linieFarbwert_feature = Linie Farbwert
+_UI_Element_Stil_Allg_AttributeGroup_linieSubart_feature = Linie Subart
+_UI_Fuellung_TypeClass_wert_feature = Wert
+_UI_Lageplan_bezeichnung_feature = Bezeichnung
+_UI_Lageplan_iDLageplanBlattschnitt_feature = ID Lageplan Blattschnitt
+_UI_Lageplan_lageplanArt_feature = Lageplan Art
+_UI_Lageplan_Art_TypeClass_wert_feature = Wert
+_UI_Lageplan_Bezeichnung_AttributeGroup_bezeichnungLageplan_feature = Bezeichnung Lageplan
+_UI_Lageplan_Blattschnitt_bezeichnung_feature = Bezeichnung
+_UI_Lageplan_Blattschnitt_polygonzugAusrichtung_feature = Polygonzug Ausrichtung
+_UI_Lageplan_Blattschnitt_polygonzugBlattschnitt_feature = Polygonzug Blattschnitt
+_UI_Lageplan_Blattschnitt_Bezeichnung_AttributeGroup_bezLageplanBlattschnitt_feature = Bez Lageplan Blattschnitt
+_UI_Lageplan_Zustand_iDLageplan_feature = ID Lageplan
+_UI_Lageplan_Zustand_referenzLSTZustand_feature = Referenz LST Zustand
+_UI_Linie_Art_TypeClass_wert_feature = Wert
+_UI_Linie_Farbwert_TypeClass_wert_feature = Wert
+_UI_Linie_Subart_TypeClass_wert_feature = Wert
+_UI_PlanPro_Layoutinfo_bearbeitungsvermerk_feature = Bearbeitungsvermerk
+_UI_PlanPro_Layoutinfo_elementPosition_feature = Element Position
+_UI_PlanPro_Layoutinfo_elementStil_feature = Element Stil
+_UI_PlanPro_Layoutinfo_lageplan_feature = Lageplan
+_UI_PlanPro_Layoutinfo_lageplanBlattschnitt_feature = Lageplan Blattschnitt
+_UI_PlanPro_Layoutinfo_lageplanZustand_feature = Lageplan Zustand
+_UI_Polygonzug_Ausrichtung_TypeClass_wert_feature = Wert
+_UI_Polygonzug_Blattschnitt_TypeClass_wert_feature = Wert
+_UI_Referenz_LST_Zustand_TypeClass_wert_feature = Wert
+_UI_Referenz_Objekt_Darstellung_TypeClass_wert_feature = Wert
+_UI_ENUMUntergewerkArt_ENUMUntergewerk_Art_ATO_literal = ATO
+_UI_ENUMUntergewerkArt_ENUMUntergewerk_Art_BU_literal = BÜ
+_UI_ENUMUntergewerkArt_ENUMUntergewerk_Art_Kabel_literal = Kabel
+_UI_ENUMAnwendungssystem_ENUMAnwendungssystem_ESG_literal = ESG
+_UI_ENUMAnwendungssystem_ENUMAnwendungssystem_GNT_literal = GNT
+_UI_ENUMAnwendungssystem_ENUMAnwendungssystem_L2_literal = L2
+_UI_ENUMAnwendungssystem_ENUMAnwendungssystem_L2oS_literal = L2oS
+_UI_ENUMAnwendungssystem_ENUMAnwendungssystem_LZB_literal = LZB
+_UI_ENUMAnwendungssystem_ENUMAnwendungssystem_ohne_literal = ohne
+_UI_ENUMAnwendungssystem_ENUMAnwendungssystem_PZB_literal = PZB
+_UI_ENUMAnwendungssystem_ENUMAnwendungssystem_sonstige_literal = sonstige
+_UI_ENUMAnwendungssystem_ENUMAnwendungssystem_ZBS_literal = ZBS
+_UI_ENUMAusrichtung_ENUMAusrichtung_gegen_literal = gegen
+_UI_ENUMAusrichtung_ENUMAusrichtung_in_literal = in
+_UI_ENUMAusrichtung_ENUMAusrichtung_keine_literal = keine
+_UI_ENUMBremsweg_ENUMBremsweg_1000_literal = 1000
+_UI_ENUMBremsweg_ENUMBremsweg_400_literal = 400
+_UI_ENUMBremsweg_ENUMBremsweg_700_literal = 700
+_UI_ENUMBremsweg_ENUMBremsweg_sonstige_literal = sonstige
+_UI_ENUMFahrstrom_ENUMFahrstrom_1200V_DC_Stromschiene_literal = 1200V_DC_Stromschiene
+_UI_ENUMFahrstrom_ENUMFahrstrom_1500V_DC_literal = 1500V_DC
+_UI_ENUMFahrstrom_ENUMFahrstrom_15kV_16_7Hz_literal = 15kV_16_7Hz
+_UI_ENUMFahrstrom_ENUMFahrstrom_2400V_DC_literal = 2400V_DC
+_UI_ENUMFahrstrom_ENUMFahrstrom_25kV_50Hz_literal = 25kV_50Hz
+_UI_ENUMFahrstrom_ENUMFahrstrom_3000V_DC_literal = 3000V_DC
+_UI_ENUMFahrstrom_ENUMFahrstrom_750V_DC_Stromschiene_literal = 750V_DC_Stromschiene
+_UI_ENUMFahrstrom_ENUMFahrstrom_sonstige_literal = sonstige
+_UI_ENUMLinksRechts_ENUMLinksRechts_links_literal = links
+_UI_ENUMLinksRechts_ENUMLinksRechts_rechts_literal = rechts
+_UI_ENUMPruefsummeArt_ENUMPruefsumme_Art_MD4_literal = MD4
+_UI_ENUMPruefsummeArt_ENUMPruefsumme_Art_MD5_literal = MD5
+_UI_ENUMPruefsummeArt_ENUMPruefsumme_Art_SHA1_literal = SHA1
+_UI_ENUMPruefsummeArt_ENUMPruefsumme_Art_SHA256_literal = SHA256
+_UI_ENUMRegionalbereich_ENUMRegionalbereich_Mitte_literal = Mitte
+_UI_ENUMRegionalbereich_ENUMRegionalbereich_Nord_literal = Nord
+_UI_ENUMRegionalbereich_ENUMRegionalbereich_Ost_literal = Ost
+_UI_ENUMRegionalbereich_ENUMRegionalbereich_Süd_literal = Süd
+_UI_ENUMRegionalbereich_ENUMRegionalbereich_Südost_literal = Südost
+_UI_ENUMRegionalbereich_ENUMRegionalbereich_Südwest_literal = Südwest
+_UI_ENUMRegionalbereich_ENUMRegionalbereich_West_literal = West
+_UI_ENUMWirkrichtung_ENUMWirkrichtung_beide_literal = beide
+_UI_ENUMWirkrichtung_ENUMWirkrichtung_gegen_literal = gegen
+_UI_ENUMWirkrichtung_ENUMWirkrichtung_in_literal = in
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Abnahmeniederschrift_literal = Abnahmeniederschrift
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Anbindung_IB2_literal = Anbindung_IB2
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Anbindung_IB3_literal = Anbindung_IB3
+_UI_ENUMAnhangArt_ENUMAnhang_Art_BAST_literal = BAST
+_UI_ENUMAnhangArt_ENUMAnhang_Art_BELU_literal = BELU
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Benutzeroberflaeche_literal = Benutzeroberflaeche
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Bestaetig_Gleichstellung_literal = Bestaetig_Gleichstellung
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Bestaetig_Qualitaetspruefung_literal = Bestaetig_Qualitaetspruefung
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Bestaetig_Uebernahme_literal = Bestaetig_Uebernahme
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Freigabe_Bvb_literal = Freigabe_Bvb
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Genehmigung_AG_Bh_Bhv_literal = Genehmigung_AG_Bh_Bhv
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Material_Besonders_literal = Material_Besonders
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Uebertragungswegeplan_literal = Uebertragungswegeplan
+_UI_ENUMAnhangArt_ENUMAnhang_Art_DWS_literal = DWS
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Erlaeuterungsbericht_literal = Erlaeuterungsbericht
+_UI_ENUMAnhangArt_ENUMAnhang_Art_GEO_literal = GEO
+_UI_ENUMAnhangArt_ENUMAnhang_Art_INA_literal = INA
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Moebelaufstellplan_Aufriss_literal = Moebelaufstellplan_Aufriss
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Moebelaufstellplan_Grundriss_literal = Moebelaufstellplan_Grundriss
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Monitoraufteilung_literal = Monitoraufteilung
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Planungsbuero_Logo_literal = Planungsbuero_Logo
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Planverzeichnis_literal = Planverzeichnis
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Pruefbericht_literal = Pruefbericht
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Raumplan_Bedienraeume_literal = Raumplan_Bedienraeume
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Raumplan_Rechnerraeume_literal = Raumplan_Rechnerraeume
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Regelwerksstand_Besonders_literal = Regelwerksstand_Besonders
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Richtungssinn_literal = Richtungssinn
+_UI_ENUMAnhangArt_ENUMAnhang_Art_sonstige_literal = sonstige
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Steuerbezirksuebersicht_literal = Steuerbezirksuebersicht
+_UI_ENUMAnhangArt_ENUMAnhang_Art_UiG_literal = UiG
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Vorgabe_literal = Vorgabe
+_UI_ENUMAnhangArt_ENUMAnhang_Art_Vorgabe_GBT_literal = Vorgabe_GBT
+_UI_ENUMAnhangArt_ENUMAnhang_Art_VzG_literal = VzG
+_UI_ENUMAnhangArt_ENUMAnhang_Art_ZiE_literal = ZiE
+_UI_ENUMAnhangArt_ENUMAnhang_Art_ZN_Raumplan_Bedienraum_literal = ZN_Raumplan_Bedienraum
+_UI_ENUMAnhangArt_ENUMAnhang_Art_ZN_Raumplan_Rechnerraum_literal = ZN_Raumplan_Rechnerraum
+_UI_ENUMBestandsrelevanz_ENUMBestandsrelevanz_Bestandsdaten_literal = Bestandsdaten
+_UI_ENUMBestandsrelevanz_ENUMBestandsrelevanz_Bestandsdokumentation_literal = Bestandsdokumentation
+_UI_ENUMBestandsrelevanz_ENUMBestandsrelevanz_dauerhaft_literal = dauerhaft
+_UI_ENUMBestandsrelevanz_ENUMBestandsrelevanz_nein_literal = nein
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Anlagentabelle_Transition_literal = Anlagentabelle Transition
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Balisenprüfprotokoll_literal = Balisenprüfprotokoll
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Bedieneinrichtungstabelle_BU_literal = Bedieneinrichtungstabelle BÜ
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Bedieneinrichtungstabelle_Stw_literal = Bedieneinrichtungstabelle Stw
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_BU_Abhängigkeitstabelle_literal = BÜ-Abhängigkeitstabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_BU_Kabellage__und_Ubersichtsplan_literal = BÜ-Kabellage- und Übersichtsplan
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_BU_Kabelübersichtsplan_literal = BÜ-Kabelübersichtsplan
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_BU_Lageplan_ntg_literal = BÜ-Lageplan ntg
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Deadlock_Tabelle_literal = Deadlock-Tabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Durchrutschweg__und_Gefahrpunkttabelle_literal = Durchrutschweg- und Gefahrpunkttabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Elementansteuertabelle_literal = Elementansteuertabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_ESG_Datenpunkttabelle_1_literal = ESG-Datenpunkttabelle 1
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_ESG_Datenpunkttabelle_2_literal = ESG-Datenpunkttabelle 2
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_ESG_Datenpunkttabelle_3_literal = ESG-Datenpunkttabelle 3
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_ETCS_Melde__und_Kommandoanschaltung_Signale__Muka_Signale__literal = ETCS Melde- und Kommandoanschaltung Signale (Muka Signale)
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_ETCS_Melde__und_Kommandoanschaltung_Weichen__Muka_Weichen__literal = ETCS Melde- und Kommandoanschaltung Weichen (Muka Weichen)
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_ETCS_Datenpunkttabelle_literal = ETCS-Datenpunkttabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Flankenschutztabelle_literal = Flankenschutztabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Freimeldetabelle_literal = Freimeldetabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_GFR_Plan_literal = GFR-Plan
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Gleisfreimeldeplan_für_Gleisstromkreise_literal = Gleisfreimeldeplan für Gleisstromkreise
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Gleismagnettabelle_literal = Gleismagnettabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Gleisschaltmitteltabelle_literal = Gleisschaltmitteltabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Inselgleistabelle_literal = Inselgleistabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Kabellageplan_literal = Kabellageplan
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Kabelübersichtsplan_literal = Kabelübersichtsplan
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_LEU_Tabelle_literal = LEU-Tabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Meldedrucktabelle_literal = Meldedrucktabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Nahbedienungstabelle_literal = Nahbedienungstabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Rangierstraßentabelle_literal = Rangierstraßentabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Schlosstabelle_literal = Schlosstabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Sicherungstechnischer_Kreuzungsplan_literal = Sicherungstechnischer Kreuzungsplan
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Sicherungstechnischer_Lageplan_literal = Sicherungstechnischer Lageplan
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Sicherungstechnischer_Ubersichtsplan_literal = Sicherungstechnischer Übersichtsplan
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Sicherungstechnischer_Ubersichtsplan_BU_literal = Sicherungstechnischer Übersichtsplan BÜ
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Signal__und_Schutzstreckentabelle_literal = Signal- und Schutzstreckentabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Signaltabelle_literal = Signaltabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_sonstige_literal = sonstige
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Stammkabelübersichtsplan_literal = Stammkabelübersichtsplan
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Statische_Streckeneigenschaften_literal = Statische Streckeneigenschaften
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Streckenblocktabelle_literal = Streckenblocktabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Tabelle_der_aneinandergereihten_Fahrstraßen_literal = Tabelle der aneinandergereihten Fahrstraßen
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Tabelle_der_ATO_Segment_Profiles_literal = Tabelle der ATO Segment Profiles
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Tabelle_der_ATO_Timing_Points_literal = Tabelle der ATO Timing Points
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Tabelle_der_ATO_TS_Instanzen_literal = Tabelle der ATO-TS Instanzen
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Tabelle_der_Ein__und_Ausstiege_literal = Tabelle der Ein- und Ausstiege
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Tabelle_der_Technik__und_Bedienstandorte_literal = Tabelle der Technik- und Bedienstandorte
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Ubertragungswegtabelle_literal = Übertragungswegtabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Weichenlaufkettentabelle_literal = Weichenlaufkettentabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Weichentabelle_literal = Weichentabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_ZBS_Datenpunkttabelle_1_literal = ZBS-Datenpunkttabelle 1
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_ZBS_Datenpunkttabelle_2_literal = ZBS-Datenpunkttabelle 2
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_ZBS_Datenpunkttabelle_3_literal = ZBS-Datenpunkttabelle 3
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_ZL_Anstoßtabelle_literal = ZL-Anstoßtabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_ZLV_Bus_Ubersichtsplan_literal = ZLV-Bus-Übersichtsplan
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_ZN_Tabelle_literal = ZN-Tabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_ZN_Ubersichtsplan_literal = ZN-Übersichtsplan
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Zugstraßentabelle_literal = Zugstraßentabelle
+_UI_ENUMBVDarstellungInPlan_ENUMBV_Darstellung_In_Plan_Zwieschutzweichentabelle_literal = Zwieschutzweichentabelle
+_UI_ENUMDateityp_ENUMDateityp_jpg_literal = jpg
+_UI_ENUMDateityp_ENUMDateityp_mp4_literal = mp4
+_UI_ENUMDateityp_ENUMDateityp_mpeg_literal = mpeg
+_UI_ENUMDateityp_ENUMDateityp_pdf_literal = pdf
+_UI_ENUMDateityp_ENUMDateityp_png_literal = png
+_UI_ENUMDateityp_ENUMDateityp_tif_literal = tif
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Anhang_literal = Anhang
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ATO_Segment_Profile_literal = ATO_Segment_Profile
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ATO_Timing_Point_literal = ATO_Timing_Point
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ATO_TS_Instanz_literal = ATO_TS_Instanz
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Aussenelementansteuerung_literal = Aussenelementansteuerung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bahnsteig_Anlage_literal = Bahnsteig_Anlage
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bahnsteig_Dach_literal = Bahnsteig_Dach
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bahnsteig_Kante_literal = Bahnsteig_Kante
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bahnsteig_Zugang_literal = Bahnsteig_Zugang
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Balise_literal = Balise
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bearbeitungsvermerk_literal = Bearbeitungsvermerk
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bedien_Anrueckabschnitt_literal = Bedien_Anrueckabschnitt
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bedien_Anzeige_Element_literal = Bedien_Anzeige_Element
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bedien_Bezirk_literal = Bedien_Bezirk
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bedien_Einrichtung_Oertlich_literal = Bedien_Einrichtung_Oertlich
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bedien_GBT_literal = Bedien_GBT
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bedien_Oberflaeche_literal = Bedien_Oberflaeche
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bedien_Oberflaeche_Bild_literal = Bedien_Oberflaeche_Bild
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bedien_Oertlichkeit_literal = Bedien_Oertlichkeit
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bedien_Platz_literal = Bedien_Platz
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bedien_Standort_literal = Bedien_Standort
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Bedien_Zentrale_literal = Bedien_Zentrale
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Binaerdaten_literal = Binaerdaten
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Block_Anlage_literal = Block_Anlage
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Block_Element_literal = Block_Element
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Block_Strecke_literal = Block_Strecke
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_BUE_Anlage_literal = BUE_Anlage
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_BUE_Anlage_Strasse_literal = BUE_Anlage_Strasse
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_BUE_Anlage_V_literal = BUE_Anlage_V
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_BUE_Ausschaltung_literal = BUE_Ausschaltung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_BUE_Bedien_Anzeige_Element_literal = BUE_Bedien_Anzeige_Element
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_BUE_Deckendes_Signal_Zuordnung_literal = BUE_Deckendes_Signal_Zuordnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_BUE_Einschaltung_literal = BUE_Einschaltung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_BUE_Einschaltung_Zuordnung_literal = BUE_Einschaltung_Zuordnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_BUE_Gefahrraum_Eckpunkt_literal = BUE_Gefahrraum_Eckpunkt
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_BUE_Gleisbezogener_Gefahrraum_literal = BUE_Gleisbezogener_Gefahrraum
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_BUE_Kante_literal = BUE_Kante
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_BUE_Kreuzungsplan_literal = BUE_Kreuzungsplan
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_BUE_Schnittstelle_literal = BUE_Schnittstelle
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_BUE_Spezifisches_Signal_literal = BUE_Spezifisches_Signal
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_BUE_WS_Fstr_Zuordnung_literal = BUE_WS_Fstr_Zuordnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Datenpunkt_literal = Datenpunkt
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Datenpunkt_Link_literal = Datenpunkt_Link
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ESTW_Zentraleinheit_literal = ESTW_Zentraleinheit
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ETCS_Kante_literal = ETCS_Kante
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ETCS_Knoten_literal = ETCS_Knoten
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ETCS_Richtungsanzeige_literal = ETCS_Richtungsanzeige
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ETCS_Signal_literal = ETCS_Signal
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ETCS_W_Kr_literal = ETCS_W_Kr
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_EV_Modul_literal = EV_Modul
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Fachtelegramm_literal = Fachtelegramm
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Fla_Freimelde_Zuordnung_literal = Fla_Freimelde_Zuordnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Fla_Schutz_literal = Fla_Schutz
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Fla_Zwieschutz_literal = Fla_Zwieschutz
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_FMA_Anlage_literal = FMA_Anlage
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_FMA_Element_literal = FMA_Element
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_FMA_Komponente_literal = FMA_Komponente
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Fstr_Abhaengigkeit_literal = Fstr_Abhaengigkeit
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Fstr_Aneinander_literal = Fstr_Aneinander
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Fstr_Aneinander_Zuordnung_literal = Fstr_Aneinander_Zuordnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Fstr_DWeg_literal = Fstr_DWeg
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Fstr_DWeg_W_Kr_literal = Fstr_DWeg_W_Kr
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Fstr_Fahrweg_literal = Fstr_Fahrweg
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Fstr_Nichthaltfall_literal = Fstr_Nichthaltfall
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Fstr_Rangier_Fla_Zuordnung_literal = Fstr_Rangier_Fla_Zuordnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Fstr_Signalisierung_literal = Fstr_Signalisierung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Fstr_Umfahrpunkt_literal = Fstr_Umfahrpunkt
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Fstr_Zug_Rangier_literal = Fstr_Zug_Rangier
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_FT_Anschaltbedingung_literal = FT_Anschaltbedingung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_FT_Fahrweg_Teil_literal = FT_Fahrweg_Teil
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_GEO_Kante_literal = GEO_Kante
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_GEO_Knoten_literal = GEO_Knoten
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_GEO_Punkt_literal = GEO_Punkt
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Geschwindigkeitsprofil_literal = Geschwindigkeitsprofil
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_GFR_Anlage_literal = GFR_Anlage
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_GFR_Element_literal = GFR_Element
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_GFR_Tripelspiegel_literal = GFR_Tripelspiegel
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Gleis_Abschluss_literal = Gleis_Abschluss
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Gleis_Abschnitt_literal = Gleis_Abschnitt
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Gleis_Art_literal = Gleis_Art
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Gleis_Baubereich_literal = Gleis_Baubereich
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Gleis_Bezeichnung_literal = Gleis_Bezeichnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Gleis_Fahrbahn_literal = Gleis_Fahrbahn
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Gleis_Lichtraum_literal = Gleis_Lichtraum
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Gleis_Schaltgruppe_literal = Gleis_Schaltgruppe
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Hoehenlinie_literal = Hoehenlinie
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Hoehenpunkt_literal = Hoehenpunkt
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Kabel_literal = Kabel
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Kabel_Verteilpunkt_literal = Kabel_Verteilpunkt
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_LEU_Anlage_literal = LEU_Anlage
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_LEU_Modul_literal = LEU_Modul
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_LEU_Schaltkasten_literal = LEU_Schaltkasten
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Lieferobjekt_literal = Lieferobjekt
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Luft_Telegramm_literal = Luft_Telegramm
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Markanter_Punkt_literal = Markanter_Punkt
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_NB_literal = NB
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_NB_Bedien_Anzeige_Element_literal = NB_Bedien_Anzeige_Element
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_NB_Zone_literal = NB_Zone
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_NB_Zone_Element_literal = NB_Zone_Element
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_NB_Zone_Grenze_literal = NB_Zone_Grenze
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Oertlichkeit_literal = Oertlichkeit
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Prog_Datei_Gruppe_literal = Prog_Datei_Gruppe
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_PZB_Element_literal = PZB_Element
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_PZB_Element_Zuordnung_literal = PZB_Element_Zuordnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_PZB_Zuordnung_Signal_literal = PZB_Zuordnung_Signal
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_RBC_literal = RBC
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Regelzeichnung_literal = Regelzeichnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Regelzeichnung_Parameter_literal = Regelzeichnung_Parameter
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Schaltmittel_Fstr_Zuordnung_literal = Schaltmittel_Fstr_Zuordnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Schaltmittel_Zuordnung_literal = Schaltmittel_Zuordnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Schloss_literal = Schloss
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Schlosskombination_literal = Schlosskombination
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Schluessel_literal = Schluessel
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Schluesselsperre_literal = Schluesselsperre
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Schrankenantrieb_literal = Schrankenantrieb
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Signal_literal = Signal
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Signal_Befestigung_literal = Signal_Befestigung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Signal_Fank_Zuordnung_literal = Signal_Fank_Zuordnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Signal_Rahmen_literal = Signal_Rahmen
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Signal_Signalbegriff_literal = Signal_Signalbegriff
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Sonstiger_Punkt_literal = Sonstiger_Punkt
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Stell_Bereich_literal = Stell_Bereich
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Stellelement_literal = Stellelement
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Strecke_literal = Strecke
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Strecke_Bremsweg_literal = Strecke_Bremsweg
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Strecke_Punkt_literal = Strecke_Punkt
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Technik_Standort_literal = Technik_Standort
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Technischer_Bereich_literal = Technischer_Bereich
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Technischer_Punkt_literal = Technischer_Punkt
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_TOP_Kante_literal = TOP_Kante
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_TOP_Knoten_literal = TOP_Knoten
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Trasse_Kante_literal = Trasse_Kante
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Trasse_Knoten_literal = Trasse_Knoten
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Ueberhoehung_literal = Ueberhoehung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Ueberhoehungslinie_literal = Ueberhoehungslinie
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Uebertragungsweg_literal = Uebertragungsweg
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Unterbringung_literal = Unterbringung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Verkehrszeichen_literal = Verkehrszeichen
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_W_Kr_Anlage_literal = W_Kr_Anlage
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_W_Kr_Gsp_Element_literal = W_Kr_Gsp_Element
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_W_Kr_Gsp_Komponente_literal = W_Kr_Gsp_Komponente
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Weichenlaufkette_literal = Weichenlaufkette
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Weichenlaufkette_Zuordnung_literal = Weichenlaufkette_Zuordnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZBS_Schutzstrecke_literal = ZBS_Schutzstrecke
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZBS_Signal_literal = ZBS_Signal
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZL_literal = ZL
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZL_DLP_Abschnitt_literal = ZL_DLP_Abschnitt
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZL_DLP_Fstr_literal = ZL_DLP_Fstr
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZL_Fstr_literal = ZL_Fstr
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZL_Fstr_Anstoss_literal = ZL_Fstr_Anstoss
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZL_Signalgruppe_literal = ZL_Signalgruppe
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZL_Signalgruppe_Zuordnung_literal = ZL_Signalgruppe_Zuordnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZLV_Bus_literal = ZLV_Bus
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZLV_Bus_Besondere_Anlage_literal = ZLV_Bus_Besondere_Anlage
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZLV_Bus_US_Zuordnung_literal = ZLV_Bus_US_Zuordnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZN_literal = ZN
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZN_Akustik_literal = ZN_Akustik
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZN_Anzeigefeld_literal = ZN_Anzeigefeld
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZN_Fortschalt_Kriterium_literal = ZN_Fortschalt_Kriterium
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZN_Telegramm_84_Zuordnung_literal = ZN_Telegramm_84_Zuordnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZN_Telegramm_85_Zuordnung_literal = ZN_Telegramm_85_Zuordnung
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZN_Unterstation_literal = ZN_Unterstation
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZN_ZBS_literal = ZN_ZBS
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZUB_Bereichsgrenze_literal = ZUB_Bereichsgrenze
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_ZUB_Streckeneigenschaft_literal = ZUB_Streckeneigenschaft
+_UI_ENUMLSTObjektArt_ENUMLST_Objekt_Art_Zugeinwirkung_literal = Zugeinwirkung
+_UI_ENUMObjektzustandBesonders_ENUMObjektzustand_Besonders_am_Standort_angesteuert_nicht_gueltig_literal = am_Standort_angesteuert_nicht_gueltig
+_UI_ENUMObjektzustandBesonders_ENUMObjektzustand_Besonders_am_Standort_angesteuert_ungueltig_abgedeckt_literal = am_Standort_angesteuert_ungueltig_abgedeckt
+_UI_ENUMObjektzustandBesonders_ENUMObjektzustand_Besonders_am_Standort_nicht_angesteuert_abgedeckt_literal = am_Standort_nicht_angesteuert_abgedeckt
+_UI_ENUMObjektzustandBesonders_ENUMObjektzustand_Besonders_am_Standort_nicht_angesteuert_ungueltig_literal = am_Standort_nicht_angesteuert_ungueltig
+_UI_ENUMObjektzustandBesonders_ENUMObjektzustand_Besonders_am_Standort_nicht_angesteuert_vorbereitend_literal = am_Standort_nicht_angesteuert_vorbereitend
+_UI_ENUMObjektzustandBesonders_ENUMObjektzustand_Besonders_sonstige_literal = sonstige
+_UI_ENUMObjektzustandBesonders_ENUMObjektzustand_Besonders_standortfern_angesteuert_ungueltig_literal = standortfern_angesteuert_ungueltig
+_UI_ENUMObjektzustandBesonders_ENUMObjektzustand_Besonders_standortfern_nicht_angesteuert_ungueltig_literal = standortfern_nicht_angesteuert_ungueltig
+_UI_ENUMRolle_ENUMRolle_GEO_Planer_literal = GEO_Planer
+_UI_ENUMRolle_ENUMRolle_GIS_Daten_literal = GIS_Daten
+_UI_ENUMRolle_ENUMRolle_LST_Fachplaner_literal = LST_Fachplaner
+_UI_ENUMRolle_ENUMRolle_ODB2PlanPro_literal = ODB2PlanPro
+_UI_ENUMRolle_ENUMRolle_sonstige_literal = sonstige
+_UI_ENUMAussenelementansteuerungArt_ENUMAussenelementansteuerung_Art_BUE_Anschaltung_literal = BUE_Anschaltung
+_UI_ENUMAussenelementansteuerungArt_ENUMAussenelementansteuerung_Art_EEA_Modul_literal = EEA_Modul
+_UI_ENUMAussenelementansteuerungArt_ENUMAussenelementansteuerung_Art_ESTW_A_literal = ESTW_A
+_UI_ENUMAussenelementansteuerungArt_ENUMAussenelementansteuerung_Art_FeAk_literal = FeAk
+_UI_ENUMAussenelementansteuerungArt_ENUMAussenelementansteuerung_Art_FeAS_literal = FeAS
+_UI_ENUMAussenelementansteuerungArt_ENUMAussenelementansteuerung_Art_GFK_literal = GFK
+_UI_ENUMAussenelementansteuerungArt_ENUMAussenelementansteuerung_Art_Gleisfreimelde_Innenanlage_literal = Gleisfreimelde_Innenanlage
+_UI_ENUMAussenelementansteuerungArt_ENUMAussenelementansteuerung_Art_GVD_literal = GVD
+_UI_ENUMAussenelementansteuerungArt_ENUMAussenelementansteuerung_Art_Objektcontroller_literal = Objektcontroller
+_UI_ENUMAussenelementansteuerungArt_ENUMAussenelementansteuerung_Art_sonstige_literal = sonstige
+_UI_ENUMAussenelementansteuerungArt_ENUMAussenelementansteuerung_Art_virtuelle_Aussenelementansteuerung_literal = virtuelle_Aussenelementansteuerung
+_UI_ENUMBandbreite_ENUMBandbreite_100Mbit_s_literal = 100Mbit_s
+_UI_ENUMBandbreite_ENUMBandbreite_10Mbit_s_literal = 10Mbit_s
+_UI_ENUMBandbreite_ENUMBandbreite_2Mbit_s_literal = 2Mbit_s
+_UI_ENUMBandbreite_ENUMBandbreite_64kbit_s_literal = 64kbit_s
+_UI_ENUMBandbreite_ENUMBandbreite_sonstige_literal = sonstige
+_UI_ENUMEVArt_ENUMEV_Art_andere_Aussenelementansteuerung_literal = andere_Aussenelementansteuerung
+_UI_ENUMEVArt_ENUMEV_Art_Batterie_literal = Batterie
+_UI_ENUMEVArt_ENUMEV_Art_BUE_literal = BUE
+_UI_ENUMEVArt_ENUMEV_Art_ESTW_Zentraleinheit_literal = ESTW_Zentraleinheit
+_UI_ENUMEVArt_ENUMEV_Art_Fahrleitung_literal = Fahrleitung
+_UI_ENUMEVArt_ENUMEV_Art_FeAk_400V_DC_direkt_literal = FeAk_400V_DC_direkt
+_UI_ENUMEVArt_ENUMEV_Art_FeAk_750V_DC_Energiebus_literal = FeAk_750V_DC_Energiebus
+_UI_ENUMEVArt_ENUMEV_Art_Landesnetz_VNB_literal = Landesnetz_VNB
+_UI_ENUMEVArt_ENUMEV_Art_Notstromaggregat_NEA_stationaer_literal = Notstromaggregat_NEA_stationaer
+_UI_ENUMEVArt_ENUMEV_Art_Notstromanschluss_NEA_mobil_literal = Notstromanschluss_NEA_mobil
+_UI_ENUMEVArt_ENUMEV_Art_Solar_literal = Solar
+_UI_ENUMEVArt_ENUMEV_Art_sonstige_literal = sonstige
+_UI_ENUMGFKKategorie_ENUMGFK_Kategorie_gross_literal = gross
+_UI_ENUMGFKKategorie_ENUMGFK_Kategorie_klein_literal = klein
+_UI_ENUMGFKKategorie_ENUMGFK_Kategorie_mittel_literal = mittel
+_UI_ENUMMediumArt_ENUMMedium_Art_Kupfer_ADO8_literal = Kupfer_ADO8
+_UI_ENUMMediumArt_ENUMMedium_Art_Kupfer_KAG_literal = Kupfer_KAG
+_UI_ENUMMediumArt_ENUMMedium_Art_Kupfer_LSA_Plus_literal = Kupfer_LSA_Plus
+_UI_ENUMMediumArt_ENUMMedium_Art_Kupfer_RJ45_literal = Kupfer_RJ45
+_UI_ENUMMediumArt_ENUMMedium_Art_LWL_DIN_literal = LWL_DIN
+_UI_ENUMMediumArt_ENUMMedium_Art_LWL_E2000_literal = LWL_E2000
+_UI_ENUMMediumArt_ENUMMedium_Art_LWL_SC_LC_literal = LWL_SC_LC
+_UI_ENUMMediumArt_ENUMMedium_Art_sonstige_literal = sonstige
+_UI_ENUMNetzArt_ENUMNetz_Art_geschlossen_literal = geschlossen
+_UI_ENUMNetzArt_ENUMNetz_Art_KISA_literal = KISA
+_UI_ENUMNetzArt_ENUMNetz_Art_offen_literal = offen
+_UI_ENUMNetzArt_ENUMNetz_Art_SBI_intern_literal = SBI_intern
+_UI_ENUMNetzArt_ENUMNetz_Art_SG_literal = SG
+_UI_ENUMNetzArt_ENUMNetz_Art_sonstige_literal = sonstige
+_UI_ENUMTechnikArt_ENUMTechnik_Art_analog_FSK_literal = analog_FSK
+_UI_ENUMTechnikArt_ENUMTechnik_Art_Ethernet_literal = Ethernet
+_UI_ENUMTechnikArt_ENUMTechnik_Art_G_703_literal = G_703
+_UI_ENUMTechnikArt_ENUMTechnik_Art_SBI_intern_Kupferkabel_literal = SBI_intern_Kupferkabel
+_UI_ENUMTechnikArt_ENUMTechnik_Art_SBI_intern_LWL_Faser_literal = SBI_intern_LWL_Faser
+_UI_ENUMTechnikArt_ENUMTechnik_Art_sonstige_literal = sonstige
+_UI_ENUMTSOTeilsystemArt_ENUMTSO_Teilsystem_Art_Doku_ZMA_ZL_literal = Doku ZMA ZL
+_UI_ENUMTSOTeilsystemArt_ENUMTSO_Teilsystem_Art_MDM_literal = MDM
+_UI_ENUMTSOTeilsystemArt_ENUMTSO_Teilsystem_Art_RBC_literal = RBC
+_UI_ENUMTSOTeilsystemArt_ENUMTSO_Teilsystem_Art_Transfernetz_mit_SI_LST_literal = Transfernetz mit SI LST
+_UI_ENUMTSOTeilsystemArt_ENUMTSO_Teilsystem_Art_ZE_literal = ZE
+_UI_ENUMTueranschlag_ENUMTueranschlag_abnehmbar_literal = abnehmbar
+_UI_ENUMTueranschlag_ENUMTueranschlag_beidseitig_literal = beidseitig
+_UI_ENUMTueranschlag_ENUMTueranschlag_links_literal = links
+_UI_ENUMTueranschlag_ENUMTueranschlag_oben_literal = oben
+_UI_ENUMTueranschlag_ENUMTueranschlag_rechts_literal = rechts
+_UI_ENUMTueranschlag_ENUMTueranschlag_sonstige_literal = sonstige
+_UI_ENUMTueranschlag_ENUMTueranschlag_unten_literal = unten
+_UI_ENUMUebertragungswegArt_ENUMUebertragungsweg_Art_Bahnuebergang_literal = Bahnuebergang
+_UI_ENUMUebertragungswegArt_ENUMUebertragungsweg_Art_Diagnose_literal = Diagnose
+_UI_ENUMUebertragungswegArt_ENUMUebertragungsweg_Art_ESTW_literal = ESTW
+_UI_ENUMUebertragungswegArt_ENUMUebertragungsweg_Art_sonstige_literal = sonstige
+_UI_ENUMUebertragungswegArt_ENUMUebertragungsweg_Art_ZBS_literal = ZBS
+_UI_ENUMUnterbringungArt_ENUMUnterbringung_Art_Antrieb_literal = Antrieb
+_UI_ENUMUnterbringungArt_ENUMUnterbringung_Art_Gebaeude_literal = Gebaeude
+_UI_ENUMUnterbringungArt_ENUMUnterbringung_Art_keine_literal = keine
+_UI_ENUMUnterbringungArt_ENUMUnterbringung_Art_Schalthaus_literal = Schalthaus
+_UI_ENUMUnterbringungArt_ENUMUnterbringung_Art_Schaltschrank_Schaltkasten_literal = Schaltschrank_Schaltkasten
+_UI_ENUMUnterbringungArt_ENUMUnterbringung_Art_sonstige_literal = sonstige
+_UI_ENUMUnterbringungArt_ENUMUnterbringung_Art_Tafel_literal = Tafel
+_UI_ENUMUnterbringungBefestigung_ENUMUnterbringung_Befestigung_Fundament_literal = Fundament
+_UI_ENUMUnterbringungBefestigung_ENUMUnterbringung_Befestigung_Gebaeude_literal = Gebaeude
+_UI_ENUMUnterbringungBefestigung_ENUMUnterbringung_Befestigung_Mauer_literal = Mauer
+_UI_ENUMUnterbringungBefestigung_ENUMUnterbringung_Befestigung_Pfosten_literal = Pfosten
+_UI_ENUMUnterbringungBefestigung_ENUMUnterbringung_Befestigung_Signalausleger_literal = Signalausleger
+_UI_ENUMUnterbringungBefestigung_ENUMUnterbringung_Befestigung_Signalbruecke_literal = Signalbruecke
+_UI_ENUMUnterbringungBefestigung_ENUMUnterbringung_Befestigung_Signalmast_literal = Signalmast
+_UI_ENUMUnterbringungBefestigung_ENUMUnterbringung_Befestigung_sonstige_literal = sonstige
+_UI_ENUMBahnsteigZugangArt_ENUMBahnsteig_Zugang_Art_Aufzug_literal = Aufzug
+_UI_ENUMBahnsteigZugangArt_ENUMBahnsteig_Zugang_Art_Empfangsgebäude_literal = Empfangsgebäude
+_UI_ENUMBahnsteigZugangArt_ENUMBahnsteig_Zugang_Art_Rampe_literal = Rampe
+_UI_ENUMBahnsteigZugangArt_ENUMBahnsteig_Zugang_Art_sonstige_literal = sonstige
+_UI_ENUMBahnsteigZugangArt_ENUMBahnsteig_Zugang_Art_Treppe_literal = Treppe
+_UI_ENUMBahnsteigZugangArt_ENUMBahnsteig_Zugang_Art_tResi_literal = tResi
+_UI_ENUMBahnsteigZugangArt_ENUMBahnsteig_Zugang_Art_Weg_literal = Weg
+_UI_ENUMSystemhoehe_ENUMSystemhoehe_38_cm_literal = 38_cm
+_UI_ENUMSystemhoehe_ENUMSystemhoehe_55_cm_literal = 55_cm
+_UI_ENUMSystemhoehe_ENUMSystemhoehe_76_cm_literal = 76_cm
+_UI_ENUMSystemhoehe_ENUMSystemhoehe_96_cm_literal = 96_cm
+_UI_ENUMSystemhoehe_ENUMSystemhoehe_sonstige_literal = sonstige
+_UI_ENUMArtBedingung_ENUMArt_Bedingung_Default_literal = Default
+_UI_ENUMArtBedingung_ENUMArt_Bedingung_Festdaten_literal = Festdaten
+_UI_ENUMArtBedingung_ENUMArt_Bedingung_sonstige_literal = sonstige
+_UI_ENUMArtBedingung_ENUMArt_Bedingung_Störtelegramm_literal = Störtelegramm
+_UI_ENUMAusstiegETCSSperre_ENUMAusstieg_ETCS_Sperre_ja_literal = ja
+_UI_ENUMAusstiegETCSSperre_ENUMAusstieg_ETCS_Sperre_nein_literal = nein
+_UI_ENUMAusstiegETCSSperre_ENUMAusstieg_ETCS_Sperre_regulaer_literal = regulaer
+_UI_ENUMBalisenhalter_ENUMBalisenhalter_BSS_85_literal = BSS 85
+_UI_ENUMBalisenhalter_ENUMBalisenhalter_Kolster_literal = Kolster
+_UI_ENUMBalisenhalter_ENUMBalisenhalter_sonstige_literal = sonstige
+_UI_ENUMBalisenhalter_ENUMBalisenhalter_unbekannt_literal = unbekannt
+_UI_ENUMBalisenhalter_ENUMBalisenhalter_Vortok_doppelt_literal = Vortok doppelt
+_UI_ENUMBalisenhalter_ENUMBalisenhalter_Vortok_einfach_literal = Vortok einfach
+_UI_ENUMDPATO_ENUMDP_ATO_Präzisionshalt_literal = Präzisionshalt
+_UI_ENUMDPATO_ENUMDP_ATO_Präzisionshalt_hochpräzise_literal = Präzisionshalt hochpräzise
+_UI_ENUMDPATO_ENUMDP_ATO_sonstige_literal = sonstige
+_UI_ENUMDPBezugFunktionalArt_ENUMDP_Bezug_Funktional_Art_mittelbar_literal = mittelbar
+_UI_ENUMDPBezugFunktionalArt_ENUMDP_Bezug_Funktional_Art_sonstige_literal = sonstige
+_UI_ENUMDPBezugFunktionalArt_ENUMDP_Bezug_Funktional_Art_unmittelbar_literal = unmittelbar
+_UI_ENUMDPLinkArt_ENUMDP_Link_Art_Grund_literal = Grund
+_UI_ENUMDPLinkArt_ENUMDP_Link_Art_Hilfs_literal = Hilfs
+_UI_ENUMDPLinkArt_ENUMDP_Link_Art_sonstige_literal = sonstige
+_UI_ENUMDPTypArt_ENUMDP_Typ_Art_primaer_literal = primaer
+_UI_ENUMDPTypArt_ENUMDP_Typ_Art_sekundaer_literal = sekundaer
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_AA_literal = AA
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_AB_literal = AB
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_AE_E_literal = AE-E
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_AE_L_literal = AE-L
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_AG_E_literal = AG-E
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_AG_L_literal = AG-L
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_AH_literal = AH
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_AM_literal = AM
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_AR_literal = AR
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_AS_literal = AS
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_AT_literal = AT
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_ATS_literal = ATS
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_AV_E_literal = AV-E
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_AV_L_literal = AV-L
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_AW_literal = AW
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_AWP_literal = AWP
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_BMI_literal = BMI
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_BPI_literal = BPI
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_BRI_literal = BRI
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_BW_literal = BW
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_EA_literal = EA
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_EF_literal = EF
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_EH_literal = EH
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_EM_literal = EM
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_EP_literal = EP
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_GLI_literal = GLI
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_HG_literal = HG
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_HS_literal = HS
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_HV_literal = HV
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_LF_S_literal = LF-S
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_LF_V_literal = LF-V
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_LFI_literal = LFI
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_LG_S_literal = LG-S
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_LG_V_literal = LG-V
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_LR_S_literal = LR-S
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_LR_V_literal = LR-V
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_MG_literal = MG
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_MH_literal = MH
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_MP_literal = MP
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_MS_literal = MS
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_MV_literal = MV
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_NV_literal = NV
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_SK_literal = SK
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_SN_literal = SN
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_SP_literal = SP
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_ST_literal = ST
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_TE_E_literal = TE-E
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_TE_L_literal = TE-L
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_TG_E_literal = TG-E
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_TG_L_literal = TG-L
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_TM_E_literal = TM-E
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_TM_L_literal = TM-L
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_TP_literal = TP
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_TV_E_literal = TV-E
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_TV_L_literal = TV-L
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_VP_literal = VP
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_VS_literal = VS
+_UI_ENUMDPTypESG_ENUMDP_Typ_ESG_VW_literal = VW
+_UI_ENUMDPTypGNT_ENUMDP_Typ_GNT_B1_literal = B1
+_UI_ENUMDPTypGNT_ENUMDP_Typ_GNT_B2_literal = B2
+_UI_ENUMDPTypGNT_ENUMDP_Typ_GNT_B3_literal = B3
+_UI_ENUMDPTypGNT_ENUMDP_Typ_GNT_sonstige_literal = sonstige
+_UI_ENUMDPTypTrans_ENUMDP_Typ_Trans_A_literal = A
+_UI_ENUMDPTypTrans_ENUMDP_Typ_Trans_sonstige_literal = sonstige
+_UI_ENUMDPTypTrans_ENUMDP_Typ_Trans_TR_literal = TR
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_RBE_literal = RBE
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_RS_literal = RS
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_RSp_literal = RSp
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_sonstige_literal = sonstige
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZA_literal = ZA
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZBbP_literal = ZBbP
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZBP_literal = ZBP
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZF_literal = ZF
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZH_literal = ZH
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZHF_literal = ZHF
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZLiH_literal = ZLiH
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZLiV_literal = ZLiV
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZO_literal = ZO
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZRE_1_literal = ZRE_1
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZRE_2_literal = ZRE_2
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZRH_literal = ZRH
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZRHF_literal = ZRHF
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZRLa_literal = ZRLa
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZRV_literal = ZRV
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZV_literal = ZV
+_UI_ENUMDPTypZBS_ENUMDP_Typ_ZBS_ZU_literal = ZÜ
+_UI_ENUMEinzeldateiArt_ENUMEinzeldatei_Art_Hilfsdatei_literal = Hilfsdatei
+_UI_ENUMEinzeldateiArt_ENUMEinzeldatei_Art_Ladedatei_literal = Ladedatei
+_UI_ENUMEnergieEingangArt_ENUMEnergie_Eingang_Art_Brennstoffzelle_literal = Brennstoffzelle
+_UI_ENUMEnergieEingangArt_ENUMEnergie_Eingang_Art_Fahrleitung_literal = Fahrleitung
+_UI_ENUMEnergieEingangArt_ENUMEnergie_Eingang_Art_Landesnetz_literal = Landesnetz
+_UI_ENUMEnergieEingangArt_ENUMEnergie_Eingang_Art_Solar_literal = Solar
+_UI_ENUMEnergieEingangArt_ENUMEnergie_Eingang_Art_sonstige_literal = sonstige
+_UI_ENUMETCSKnotenArtSonstige_ENUMETCS_Knoten_Art_Sonstige_Gleisabschluss_literal = Gleisabschluss
+_UI_ENUMETCSKnotenArtSonstige_ENUMETCS_Knoten_Art_Sonstige_Grenze_Ausruestungsbereich_literal = Grenze_Ausruestungsbereich
+_UI_ENUMETCSKnotenArtSonstige_ENUMETCS_Knoten_Art_Sonstige_Grenze_LZB_La_Eingabe_literal = Grenze_LZB_La_Eingabe
+_UI_ENUMETCSKnotenArtSonstige_ENUMETCS_Knoten_Art_Sonstige_Km_Sprung_literal = Km_Sprung
+_UI_ENUMETCSKnotenArtSonstige_ENUMETCS_Knoten_Art_Sonstige_Knotenverschmelzung_literal = Knotenverschmelzung
+_UI_ENUMETCSKnotenArtSonstige_ENUMETCS_Knoten_Art_Sonstige_KrW_literal = KrW
+_UI_ENUMETCSKnotenArtSonstige_ENUMETCS_Knoten_Art_Sonstige_sonstige_literal = sonstige
+_UI_ENUMETCSKnotenArtSonstige_ENUMETCS_Knoten_Art_Sonstige_Streckenende_literal = Streckenende
+_UI_ENUMETCSKnotenArtSonstige_ENUMETCS_Knoten_Art_Sonstige_Streckenwechsel_literal = Streckenwechsel
+_UI_ENUMEVModulArt_ENUMEV_Modul_Art_autonom_literal = autonom
+_UI_ENUMEVModulArt_ENUMEV_Modul_Art_autonom_klein_literal = autonom klein
+_UI_ENUMEVModulArt_ENUMEV_Modul_Art_netzgebunden_literal = netzgebunden
+_UI_ENUMEVModulArt_ENUMEV_Modul_Art_PoP_V_literal = PoP-V
+_UI_ENUMEVModulArt_ENUMEV_Modul_Art_sonstige_literal = sonstige
+_UI_ENUMFTGNTPunktart_ENUMFT_GNT_Punktart_1_literal = 1
+_UI_ENUMFTGNTPunktart_ENUMFT_GNT_Punktart_2_literal = 2
+_UI_ENUMFTGNTPunktart_ENUMFT_GNT_Punktart_3_literal = 3
+_UI_ENUMFTHinweisFunktion_ENUMFT_Hinweis_Funktion_Hp_0_literal = Hp 0
+_UI_ENUMFTHinweisFunktion_ENUMFT_Hinweis_Funktion_Ks_1_literal = Ks 1
+_UI_ENUMFTHinweisFunktion_ENUMFT_Hinweis_Funktion_Ks_2_literal = Ks 2
+_UI_ENUMFTHinweisFunktion_ENUMFT_Hinweis_Funktion_Ortung_literal = Ortung
+_UI_ENUMFTHinweisFunktion_ENUMFT_Hinweis_Funktion_Ra_12_literal = Ra 12
+_UI_ENUMFTHinweisFunktion_ENUMFT_Hinweis_Funktion_Sh_2_Sh_0_literal = Sh 2/Sh 0
+_UI_ENUMFTHinweisFunktion_ENUMFT_Hinweis_Funktion_sonstige_literal = sonstige
+_UI_ENUMFTHinweisFunktion_ENUMFT_Hinweis_Funktion_ZBS_Ende_literal = ZBS Ende
+_UI_ENUMFTHinweisFunktion_ENUMFT_Hinweis_Funktion_ZBS_Ende_1_literal = ZBS Ende 1
+_UI_ENUMFTHinweisFunktion_ENUMFT_Hinweis_Funktion_ZBS_Ende_2_literal = ZBS Ende 2
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_Null_literal = Null
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_RBE_literal = RBE
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_RS_literal = RS
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_RSp_literal = RSp
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_sonstige_literal = sonstige
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZA_literal = ZA
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZBbP_literal = ZBbP
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZBP_literal = ZBP
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZF_literal = ZF
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZH_literal = ZH
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZHF_literal = ZHF
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZLiH_literal = ZLiH
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZLiV_literal = ZLiV
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZO_literal = ZO
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZRE_literal = ZRE
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZRH_literal = ZRH
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZRHF_literal = ZRHF
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZRLa_literal = ZRLa
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZRV_literal = ZRV
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZV_literal = ZV
+_UI_ENUMFTZBSTyp_ENUMFT_ZBS_Typ_ZU_literal = ZÜ
+_UI_ENUMLEUArt_ENUMLEU_Art_LEU_P_literal = LEU-P
+_UI_ENUMLEUArt_ENUMLEU_Art_Voll_LEU_literal = Voll-LEU
+_UI_ENUMMLEVELTR_ENUMM_LEVELTR_L0_literal = L0
+_UI_ENUMMLEVELTR_ENUMM_LEVELTR_L1_literal = L1
+_UI_ENUMMLEVELTR_ENUMM_LEVELTR_L2_literal = L2
+_UI_ENUMMLEVELTR_ENUMM_LEVELTR_L3_literal = L3
+_UI_ENUMMLEVELTR_ENUMM_LEVELTR_sonstige_literal = sonstige
+_UI_ENUMMLEVELTR_ENUMM_LEVELTR_STM_literal = STM
+_UI_ENUMNIDSTM_ENUMNID_STM_ATB_literal = ATB
+_UI_ENUMNIDSTM_ENUMNID_STM_Crocodile_literal = Crocodile
+_UI_ENUMNIDSTM_ENUMNID_STM_EBICAB_900__Poland__literal = EBICAB 900 (Poland)
+_UI_ENUMNIDSTM_ENUMNID_STM_HVB_literal = HVB
+_UI_ENUMNIDSTM_ENUMNID_STM_INDUSI_literal = INDUSI
+_UI_ENUMNIDSTM_ENUMNID_STM_LS_literal = LS
+_UI_ENUMNIDSTM_ENUMNID_STM_MEMOR_IIP_literal = MEMOR II+
+_UI_ENUMNIDSTM_ENUMNID_STM_PZB_LZB_literal = PZB/LZB
+_UI_ENUMNIDSTM_ENUMNID_STM_RPS_literal = RPS
+_UI_ENUMNIDSTM_ENUMNID_STM_SHP_literal = SHP
+_UI_ENUMNIDSTM_ENUMNID_STM_sonstige_literal = sonstige
+_UI_ENUMNIDSTM_ENUMNID_STM_TBL_1_literal = TBL 1
+_UI_ENUMNIDSTM_ENUMNID_STM_TBL_1P_literal = TBL 1+
+_UI_ENUMNIDSTM_ENUMNID_STM_TBL_2_3_literal = TBL 2/3
+_UI_ENUMNIDSTM_ENUMNID_STM_TVM_literal = TVM
+_UI_ENUMNIDSTM_ENUMNID_STM_ZUB121_Signum_literal = ZUB121/Signum
+_UI_ENUMNIDSTM_ENUMNID_STM_ZUB123_literal = ZUB123
+_UI_ENUMPosition_ENUMPosition_am_literal = am
+_UI_ENUMPosition_ENUMPosition_hinter_literal = hinter
+_UI_ENUMPosition_ENUMPosition_vor_literal = vor
+_UI_ENUMSBE_ENUMSBE_1_literal = 1
+_UI_ENUMSBE_ENUMSBE_2_literal = 2
+_UI_ENUMSpannungArt_ENUMSpannung_Art_AC_110_literal = AC 110
+_UI_ENUMSpannungArt_ENUMSpannung_Art_AC_230_literal = AC 230
+_UI_ENUMSpannungArt_ENUMSpannung_Art_AC_400_literal = AC 400
+_UI_ENUMSpannungArt_ENUMSpannung_Art_DC_110_literal = DC 110
+_UI_ENUMSpannungArt_ENUMSpannung_Art_DC_136_literal = DC 136
+_UI_ENUMSpannungArt_ENUMSpannung_Art_DC_24_literal = DC 24
+_UI_ENUMSpannungArt_ENUMSpannung_Art_DC_36_literal = DC 36
+_UI_ENUMSpannungArt_ENUMSpannung_Art_DC_48_literal = DC 48
+_UI_ENUMSpannungArt_ENUMSpannung_Art_DC_60_literal = DC 60
+_UI_ENUMStandortangabeBalisenschild_ENUMStandortangabe_Balisenschild_Signal_literal = Signal
+_UI_ENUMStandortangabeBalisenschild_ENUMStandortangabe_Balisenschild_Signal_Gleis_literal = Signal Gleis
+_UI_ENUMStandortangabeBalisenschild_ENUMStandortangabe_Balisenschild_Streckenkilometer_Gleis_literal = Streckenkilometer Gleis
+_UI_ENUMStandortangabeBalisenschild_ENUMStandortangabe_Balisenschild_Strecke_sonstiger_Standort_literal = Strecke sonstiger Standort
+_UI_ENUMSTZ_ENUMSTZ_2_literal = 2
+_UI_ENUMSTZ_ENUMSTZ_4_literal = 4
+_UI_ENUMVerbotWBArt_ENUMVerbot_WB_Art_Betriebsbremsung_literal = Betriebsbremsung
+_UI_ENUMVerbotWBArt_ENUMVerbot_WB_Art_vollständig_literal = vollständig
+_UI_ENUMVerwendungAlsRueckfall_ENUMVerwendung_Als_Rueckfall_nur_Rückfall_literal = nur Rückfall
+_UI_ENUMVerwendungAlsRueckfall_ENUMVerwendung_Als_Rueckfall_Rückfall_literal = Rückfall
+_UI_ENUMVerwendungAlsRueckfall_ENUMVerwendung_Als_Rueckfall_sonstige_literal = sonstige
+_UI_ENUMWAnschluss_ENUMW_Anschluss_links_literal = links
+_UI_ENUMWAnschluss_ENUMW_Anschluss_rechts_literal = rechts
+_UI_ENUMWAnschluss_ENUMW_Anschluss_Spitze_literal = Spitze
+_UI_ENUMZBSReaktion_ENUMZBS_Reaktion_Meldereaktion_literal = Meldereaktion
+_UI_ENUMZBSReaktion_ENUMZBS_Reaktion_Sicherheitsreaktion_literal = Sicherheitsreaktion
+_UI_ENUMZBSReaktion_ENUMZBS_Reaktion_sonstige_literal = sonstige
+_UI_ENUMAWert_ENUMA_Wert_16_literal = 16
+_UI_ENUMAWert_ENUMA_Wert_32_literal = 32
+_UI_ENUMAWert_ENUMA_Wert_48_literal = 48
+_UI_ENUMAWert_ENUMA_Wert_64_literal = 64
+_UI_ENUMAWert_ENUMA_Wert_80_literal = 80
+_UI_ENUMAWert_ENUMA_Wert_96_literal = 96
+_UI_ENUMAWert_ENUMA_Wert_112_literal = 112
+_UI_ENUMAWert_ENUMA_Wert_128_literal = 128
+_UI_ENUMAWert_ENUMA_Wert_144_literal = 144
+_UI_ENUMAWert_ENUMA_Wert_160_literal = 160
+_UI_ENUMAWert_ENUMA_Wert_176_literal = 176
+_UI_ENUMAWert_ENUMA_Wert_192_literal = 192
+_UI_ENUMAWert_ENUMA_Wert_208_literal = 208
+_UI_ENUMAWert_ENUMA_Wert_224_literal = 224
+_UI_ENUMAWert_ENUMA_Wert_240_literal = 240
+_UI_ENUMBedienEinrichtBauart_ENUMBedien_Einricht_Bauart_Bedienpult_literal = Bedienpult
+_UI_ENUMBedienEinrichtBauart_ENUMBedien_Einricht_Bauart_Bediensaeule_literal = Bediensaeule
+_UI_ENUMBedienEinrichtBauart_ENUMBedien_Einricht_Bauart_Bedientablett_literal = Bedientablett
+_UI_ENUMBedienEinrichtBauart_ENUMBedien_Einricht_Bauart_Bedientafel_literal = Bedientafel
+_UI_ENUMBedienEinrichtBauart_ENUMBedien_Einricht_Bauart_sonstige_literal = sonstige
+_UI_ENUMBedienEinrichtBauart_ENUMBedien_Einricht_Bauart_Stellpult_literal = Stellpult
+_UI_ENUMBedienEinrichtBauart_ENUMBedien_Einricht_Bauart_Stelltisch_literal = Stelltisch
+_UI_ENUMBedienPlatzArt_ENUMBedien_Platz_Art_Not_BPS_literal = Not_BPS
+_UI_ENUMBedienPlatzArt_ENUMBedien_Platz_Art_Not_BPS_abgesetzt_literal = Not_BPS_abgesetzt
+_UI_ENUMBedienPlatzArt_ENUMBedien_Platz_Art_sonstige_literal = sonstige
+_UI_ENUMBedienPlatzArt_ENUMBedien_Platz_Art_Standard_BPS_literal = Standard_BPS
+_UI_ENUMBedienPlatzArt_ENUMBedien_Platz_Art_Standard_BPS_abgesetzt_literal = Standard_BPS_abgesetzt
+_UI_ENUMBSOTeilsystemArt_ENUMBSO_Teilsystem_Art_iBS_literal = iBS
+_UI_ENUMBSOTeilsystemArt_ENUMBSO_Teilsystem_Art_Transfernetz_Bedienung_literal = Transfernetz Bedienung
+_UI_ENUMCWert_ENUMC_Wert_0_literal = 0
+_UI_ENUMCWert_ENUMC_Wert_64_literal = 64
+_UI_ENUMCWert_ENUMC_Wert_128_literal = 128
+_UI_ENUMCWert_ENUMC_Wert_192_literal = 192
+_UI_ENUMMelder_ENUMMelder_Anforderungsempfang_literal = Anforderungsempfang
+_UI_ENUMMelder_ENUMMelder_Anzeige_Betriebszustand_literal = Anzeige_Betriebszustand
+_UI_ENUMMelder_ENUMMelder_Leuchtmelder_ZP_10_literal = Leuchtmelder_ZP_10
+_UI_ENUMMelder_ENUMMelder_Leuchtmelder_ZP_9_literal = Leuchtmelder_ZP_9
+_UI_ENUMMelder_ENUMMelder_Signalanforderung_empfangen_literal = Signalanforderung_empfangen
+_UI_ENUMMelder_ENUMMelder_Signalfahrtmelder_literal = Signalfahrtmelder
+_UI_ENUMMelder_ENUMMelder_Signalhaltmelder_literal = Signalhaltmelder
+_UI_ENUMMelder_ENUMMelder_sonstige_literal = sonstige
+_UI_ENUMMelder_ENUMMelder_Sperrmelder_literal = Sperrmelder
+_UI_ENUMMelder_ENUMMelder_Vorbereitungsmeldung_literal = Vorbereitungsmeldung
+_UI_ENUMMelder_ENUMMelder_Weichenmelder_literal = Weichenmelder
+_UI_ENUMMelder_ENUMMelder_Zielmelder_literal = Zielmelder
+_UI_ENUMOberflaecheBildart_ENUMOberflaeche_Bildart_BERUE_literal = BERUE
+_UI_ENUMOberflaecheBildart_ENUMOberflaeche_Bildart_Lupe_literal = Lupe
+_UI_ENUMOberflaecheBildart_ENUMOberflaeche_Bildart_sonstige_literal = sonstige
+_UI_ENUMSchalter_ENUMSchalter_Gefahrschalter_literal = Gefahrschalter
+_UI_ENUMSchalter_ENUMSchalter_Nothaltschalter_literal = Nothaltschalter
+_UI_ENUMSchalter_ENUMSchalter_Schalter_ein_aus_literal = Schalter_ein_aus
+_UI_ENUMSchalter_ENUMSchalter_Schluesselschalter_DB_21_literal = Schluesselschalter_DB_21
+_UI_ENUMSchalter_ENUMSchalter_Schluesselschalter_Vierkant_literal = Schluesselschalter_Vierkant
+_UI_ENUMSchalter_ENUMSchalter_sonstige_literal = sonstige
+_UI_ENUMSchalter_ENUMSchalter_Vorbereitungsmeldung_literal = Vorbereitungsmeldung
+_UI_ENUMSchalter_ENUMSchalter_Zustimmungstaste_literal = Zustimmungstaste
+_UI_ENUMTaste_ENUMTaste_Ausfahrgruppentaste_ZP_9_10_literal = Ausfahrgruppentaste_ZP_9_10
+_UI_ENUMTaste_ENUMTaste_Bedientaste_ZP_10_literal = Bedientaste_ZP_10
+_UI_ENUMTaste_ENUMTaste_Bedientaste_ZP_9_literal = Bedientaste_ZP_9
+_UI_ENUMTaste_ENUMTaste_Fahrstrassenanforderung_literal = Fahrstrassenanforderung
+_UI_ENUMTaste_ENUMTaste_Fahrstrassenzustimmung_literal = Fahrstrassenzustimmung
+_UI_ENUMTaste_ENUMTaste_Freimeldetaste_literal = Freimeldetaste
+_UI_ENUMTaste_ENUMTaste_Gruppentaste_literal = Gruppentaste
+_UI_ENUMTaste_ENUMTaste_Hilfstaste_literal = Hilfstaste
+_UI_ENUMTaste_ENUMTaste_Loeschtaste_literal = Loeschtaste
+_UI_ENUMTaste_ENUMTaste_Rueckgabetaste_literal = Rueckgabetaste
+_UI_ENUMTaste_ENUMTaste_Schluesseltaste_DB_21_literal = Schluesseltaste_DB_21
+_UI_ENUMTaste_ENUMTaste_Schluesseltaste_Streckenschluessel_literal = Schluesseltaste_Streckenschluessel
+_UI_ENUMTaste_ENUMTaste_Schluesseltaste_Vierkant_literal = Schluesseltaste_Vierkant
+_UI_ENUMTaste_ENUMTaste_Signalanforderung_literal = Signalanforderung
+_UI_ENUMTaste_ENUMTaste_sonstige_literal = sonstige
+_UI_ENUMTaste_ENUMTaste_Umstelltaste_literal = Umstelltaste
+_UI_ENUMTaste_ENUMTaste_Weichenauffahrtaste_literal = Weichenauffahrtaste
+_UI_ENUMTaste_ENUMTaste_Zieltaste_literal = Zieltaste
+_UI_ENUMTaste_ENUMTaste_Zugfertigmeldetaste_literal = Zugfertigmeldetaste
+_UI_ENUMTaste_ENUMTaste_Zugschlussmeldung_literal = Zugschlussmeldung
+_UI_ENUMTaste_ENUMTaste_Zustimmungsanforderung_literal = Zustimmungsanforderung
+_UI_ENUMXWert_ENUMX_Wert_0_literal = 0
+_UI_ENUMXWert_ENUMX_Wert_1_literal = 1
+_UI_ENUMXWert_ENUMX_Wert_5_literal = 5
+_UI_ENUMXWert_ENUMX_Wert_8_literal = 8
+_UI_ENUMXWert_ENUMX_Wert_11_literal = 11
+_UI_ENUMXWert_ENUMX_Wert_12_literal = 12
+_UI_ENUMXWert_ENUMX_Wert_13_literal = 13
+_UI_ENUMXWert_ENUMX_Wert_15_literal = 15
+_UI_ENUMBetriebsfuehrung_ENUMBetriebsfuehrung_eingl_literal = eingl
+_UI_ENUMBetriebsfuehrung_ENUMBetriebsfuehrung_sonstige_literal = sonstige
+_UI_ENUMBetriebsfuehrung_ENUMBetriebsfuehrung_Stichstreckenblock_literal = Stichstreckenblock
+_UI_ENUMBetriebsfuehrung_ENUMBetriebsfuehrung_ZLB_literal = ZLB
+_UI_ENUMBetriebsfuehrung_ENUMBetriebsfuehrung_zweigl_literal = zweigl
+_UI_ENUMBetriebsfuehrung_ENUMBetriebsfuehrung_zweigl_GWB_literal = zweigl_GWB
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_AB64_literal = AB64
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_AB70_literal = AB70
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_Blockanpassung_RB_literal = Blockanpassung_RB
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_DB_Block_literal = DB_Block
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_elektronischer_Block_EBL2000_literal = elektronischer_Block_EBL2000
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_ESTW_Zentralblock_literal = ESTW_Zentralblock
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_ESTW_Zentralblock_mit_Sb_Abschluss_MCL84_literal = ESTW_Zentralblock_mit_Sb_Abschluss_MCL84
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_ESTW_Zentralblock_mit_Sb_Abschluss_SBL60_literal = ESTW_Zentralblock_mit_Sb_Abschluss_SBL60
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_ESTW_Zentralblock_mit_Sb_Abschluss_SBS59_literal = ESTW_Zentralblock_mit_Sb_Abschluss_SBS59
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_ESTW_Zentralblock_mit_Sb_Abschluss_SBS60_literal = ESTW_Zentralblock_mit_Sb_Abschluss_SBS60
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_Felderblock_literal = Felderblock
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_firmenneutrale_Blockschnittstelle_literal = firmenneutrale_Blockschnittstelle
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_ILS_Adapter_literal = ILS-Adapter
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_sonstige_literal = sonstige
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_Selbstblock_SBL60_literal = Selbstblock_SBL60
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_Selbstblock_SBS59_literal = Selbstblock_SBS59
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_Selbstblock_SBS60_literal = Selbstblock_SBS60
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_Relaisblock_RBII60_literal = Relaisblock_RBII60
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_Relaisblock_RBIISp64b_literal = Relaisblock_RBIISp64b
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_Relaisblock_RBIIISp68_literal = Relaisblock_RBIIISp68
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_Zentralblock_ZSB2000_literal = Zentralblock_ZSB2000
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_Zentralblock_ZBS600_literal = Zentralblock_ZBS600
+_UI_ENUMBlockBauform_ENUMBlock_Bauform_Zentralblock_ZBS65_literal = Zentralblock_ZBS65
+_UI_ENUMSchaltung_ENUMSchaltung_3_Drahtschaltung_literal = 3_Drahtschaltung
+_UI_ENUMSchaltung_ENUMSchaltung_6_Drahtschaltung_literal = 6_Drahtschaltung
+_UI_ENUMSchaltung_ENUMSchaltung_9_Drahtschaltung_literal = 9_Drahtschaltung
+_UI_ENUMSchaltung_ENUMSchaltung_sonstige_literal = sonstige
+_UI_ENUMStreckeArt_ENUMStrecke_Art_Hauptbahn_literal = Hauptbahn
+_UI_ENUMStreckeArt_ENUMStrecke_Art_Nebenbahn_literal = Nebenbahn
+_UI_ENUMBaumprofil_ENUMBaumprofil_Rechteck_literal = Rechteck
+_UI_ENUMBaumprofil_ENUMBaumprofil_rund_literal = rund
+_UI_ENUMBaumprofil_ENUMBaumprofil_sonstige_literal = sonstige
+_UI_ENUMBUEBauart_ENUMBUE_Bauart_Bau_Bue_literal = Bau_Bue
+_UI_ENUMBUEBauart_ENUMBUE_Bauart_Bue_literal = Bue
+_UI_ENUMBUEBauart_ENUMBUE_Bauart_ntResi_literal = ntResi
+_UI_ENUMBUEBauart_ENUMBUE_Bauart_tResi_literal = tResi
+_UI_ENUMBUEFunktionsueberwachung_ENUMBUE_Funktionsueberwachung_FSUe_B_literal = FSUe_B
+_UI_ENUMBUEFunktionsueberwachung_ENUMBUE_Funktionsueberwachung_FSUe_E_literal = FSUe_E
+_UI_ENUMBUEFunktionsueberwachung_ENUMBUE_Funktionsueberwachung_FSUe_S_literal = FSUe_S
+_UI_ENUMBUEFunktionsueberwachung_ENUMBUE_Funktionsueberwachung_Fü_literal = Fü
+_UI_ENUMBUEFunktionsueberwachung_ENUMBUE_Funktionsueberwachung_Hp_literal = Hp
+_UI_ENUMBUEFunktionsueberwachung_ENUMBUE_Funktionsueberwachung_Us_literal = Üs
+_UI_ENUMBUEFunktionsueberwachung_ENUMBUE_Funktionsueberwachung_UsOE_literal = ÜsOE
+_UI_ENUMBUEHandschalteinrichtung_ENUMBUE_Handschalteinrichtung_AT_literal = AT
+_UI_ENUMBUEHandschalteinrichtung_ENUMBUE_Handschalteinrichtung_ET_literal = ET
+_UI_ENUMBUEHandschalteinrichtung_ENUMBUE_Handschalteinrichtung_HAT_literal = HAT
+_UI_ENUMBUEHandschalteinrichtung_ENUMBUE_Handschalteinrichtung_HET_literal = HET
+_UI_ENUMBUEHandschalteinrichtung_ENUMBUE_Handschalteinrichtung_RS_literal = RS
+_UI_ENUMBUEHandschalteinrichtung_ENUMBUE_Handschalteinrichtung_RT_ein_aus_literal = RT_ein_aus
+_UI_ENUMBUEHandschalteinrichtung_ENUMBUE_Handschalteinrichtung_RT_ein_RT_aus_literal = RT_ein_RT_aus
+_UI_ENUMBUEHandschalteinrichtung_ENUMBUE_Handschalteinrichtung_sonstige_literal = sonstige
+_UI_ENUMBUEHandschalteinrichtung_ENUMBUE_Handschalteinrichtung_UT_literal = UT
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_A_literal = A
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_A_und_Lf_literal = A_und_Lf
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_A_und_Sprechverbindung_literal = A_und_Sprechverbindung
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_Anrufschranke_und_Sprechverbindung_literal = Anrufschranke_und_Sprechverbindung
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_bgBUe_literal = bgBUe
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_Lz_literal = Lz
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_LzF_literal = LzF
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_LzH_literal = LzH
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_LzH_2F_literal = LzH_2F
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_LzH_F_literal = LzH_F
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_LzHH_literal = LzHH
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_LzHH_2F_literal = LzHH_2F
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_LzHH_F_literal = LzHH_F
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_LzV_literal = LzV
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_P_literal = P
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_P_und_Lf_literal = P_und_Lf
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_P_und_U_literal = P_und_U
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_schluesselabhaengig_literal = schluesselabhaengig
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_sonstige_literal = sonstige
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_Ue_literal = Ue
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_Ue_und_A_literal = Ue_und_A
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_Ue_und_P_literal = Ue_und_P
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_Ue_und_U_literal = Ue_und_U
+_UI_ENUMBUESicherungsart_ENUMBUE_Sicherungsart_Zugpersonal_literal = Zugpersonal
+_UI_ENUMBUETechnik_ENUMBUE_Technik_Anrufschranke_literal = Anrufschranke
+_UI_ENUMBUETechnik_ENUMBUE_Technik_BUEP_93_literal = BUEP_93
+_UI_ENUMBUETechnik_ENUMBUE_Technik_BUES2000_literal = BUES2000
+_UI_ENUMBUETechnik_ENUMBUE_Technik_BUES_72D_literal = BUES_72D
+_UI_ENUMBUETechnik_ENUMBUE_Technik_BUES_72Z_literal = BUES_72Z
+_UI_ENUMBUETechnik_ENUMBUE_Technik_EBUET_80_literal = EBUET_80
+_UI_ENUMBUETechnik_ENUMBUE_Technik_EBUET_80_VB_literal = EBUET_80_VB
+_UI_ENUMBUETechnik_ENUMBUE_Technik_FUE_58_literal = FUE_58
+_UI_ENUMBUETechnik_ENUMBUE_Technik_FUE_60_literal = FUE_60
+_UI_ENUMBUETechnik_ENUMBUE_Technik_HL_64_B_literal = HL_64_B
+_UI_ENUMBUETechnik_ENUMBUE_Technik_HL_64_C_literal = HL_64_C
+_UI_ENUMBUETechnik_ENUMBUE_Technik_HS_64_B_literal = HS_64_B
+_UI_ENUMBUETechnik_ENUMBUE_Technik_HS_64_C_literal = HS_64_C
+_UI_ENUMBUETechnik_ENUMBUE_Technik_keine_literal = keine
+_UI_ENUMBUETechnik_ENUMBUE_Technik_LO1_literal = LO1
+_UI_ENUMBUETechnik_ENUMBUE_Technik_LO1_57_literal = LO1_57
+_UI_ENUMBUETechnik_ENUMBUE_Technik_NE_BUE_90_literal = NE_BUE_90
+_UI_ENUMBUETechnik_ENUMBUE_Technik_RBUEP_literal = RBUEP
+_UI_ENUMBUETechnik_ENUMBUE_Technik_RBUET_literal = RBUET
+_UI_ENUMBUETechnik_ENUMBUE_Technik_SIMIS_LC_literal = SIMIS_LC
+_UI_ENUMBUETechnik_ENUMBUE_Technik_sonstige_literal = sonstige
+_UI_ENUMFueSchaltfall_ENUMFue_Schaltfall_12_literal = 12
+_UI_ENUMFueSchaltfall_ENUMFue_Schaltfall_2_literal = 2
+_UI_ENUMFussRadwegArt_ENUMFuss_Radweg_Art_Fuss_Radweg_abgesetzt_literal = Fuss_Radweg_abgesetzt
+_UI_ENUMFussRadwegArt_ENUMFuss_Radweg_Art_Fuss_Radweg_parallel_literal = Fuss_Radweg_parallel
+_UI_ENUMFussRadwegArt_ENUMFuss_Radweg_Art_Fussweg_abgesetzt_literal = Fussweg_abgesetzt
+_UI_ENUMFussRadwegArt_ENUMFuss_Radweg_Art_Fussweg_parallel_literal = Fussweg_parallel
+_UI_ENUMFussRadwegArt_ENUMFuss_Radweg_Art_Radweg_abgesetzt_literal = Radweg_abgesetzt
+_UI_ENUMFussRadwegArt_ENUMFuss_Radweg_Art_Radweg_parallel_literal = Radweg_parallel
+_UI_ENUMFussRadwegArt_ENUMFuss_Radweg_Art_sonstige_literal = sonstige
+_UI_ENUMFussRadwegSeite_ENUMFuss_Radweg_Seite_beidseitig_literal = beidseitig
+_UI_ENUMFussRadwegSeite_ENUMFuss_Radweg_Seite_Quadrant_1_2_literal = Quadrant_1_2
+_UI_ENUMFussRadwegSeite_ENUMFuss_Radweg_Seite_Quadrant_3_4_literal = Quadrant_3_4
+_UI_ENUMGFRArt_ENUMGFR_Art_automatisch_literal = automatisch
+_UI_ENUMGFRArt_ENUMGFR_Art_mit_Bediener_literal = mit_Bediener
+_UI_ENUMGFRArt_ENUMGFR_Art_sonstige_literal = sonstige
+_UI_ENUMHpErsatzstecker_ENUMHp_Ersatzstecker_Abhaengigkeit_aufgehoben_literal = Abhaengigkeit_aufgehoben
+_UI_ENUMHpErsatzstecker_ENUMHp_Ersatzstecker_sonstige_literal = sonstige
+_UI_ENUMKlassifizierung_ENUMKlassifizierung_Bundestrasse_ausserorts_literal = Bundestrasse_ausserorts
+_UI_ENUMKlassifizierung_ENUMKlassifizierung_Bundestrasse_innerorts_literal = Bundestrasse_innerorts
+_UI_ENUMKlassifizierung_ENUMKlassifizierung_Fussweg_literal = Fussweg
+_UI_ENUMKlassifizierung_ENUMKlassifizierung_Fussweg_Radweg_literal = Fussweg_Radweg
+_UI_ENUMKlassifizierung_ENUMKlassifizierung_Gemeindestrasse_ausserorts_literal = Gemeindestrasse_ausserorts
+_UI_ENUMKlassifizierung_ENUMKlassifizierung_Gemeindestrasse_innerorts_literal = Gemeindestrasse_innerorts
+_UI_ENUMKlassifizierung_ENUMKlassifizierung_Kreisstrasse_ausserorts_literal = Kreisstrasse_ausserorts
+_UI_ENUMKlassifizierung_ENUMKlassifizierung_Kreisstrasse_innerorts_literal = Kreisstrasse_innerorts
+_UI_ENUMKlassifizierung_ENUMKlassifizierung_Landstrasse_ausserorts_literal = Landstrasse_ausserorts
+_UI_ENUMKlassifizierung_ENUMKlassifizierung_Landstrasse_innerorts_literal = Landstrasse_innerorts
+_UI_ENUMKlassifizierung_ENUMKlassifizierung_Privatstrasse_literal = Privatstrasse
+_UI_ENUMKlassifizierung_ENUMKlassifizierung_Privatweg_literal = Privatweg
+_UI_ENUMKlassifizierung_ENUMKlassifizierung_sonstige_literal = sonstige
+_UI_ENUMKlassifizierung_ENUMKlassifizierung_Weg_Forst_Land_literal = Weg_Forst_Land
+_UI_ENUMLagerung_ENUMLagerung_beidseitig_literal = beidseitig
+_UI_ENUMLagerung_ENUMLagerung_einseitig_literal = einseitig
+_UI_ENUMLFUEImpuls_ENUMLFUE_Impuls_1_zu_40_literal = 1_zu_40
+_UI_ENUMLFUEImpuls_ENUMLFUE_Impuls_Dauerimpuls_literal = Dauerimpuls
+_UI_ENUMLFUEImpuls_ENUMLFUE_Impuls_sonstige_literal = sonstige
+_UI_ENUMMontageAusgleichsgewichte_ENUMMontage_Ausgleichsgewichte_beidseitig_literal = beidseitig
+_UI_ENUMMontageAusgleichsgewichte_ENUMMontage_Ausgleichsgewichte_einseitig_literal = einseitig
+_UI_ENUMOptikSymbol_ENUMOptik_Symbol_Fussgaenger_literal = Fussgaenger
+_UI_ENUMOptikSymbol_ENUMOptik_Symbol_Fussgaenger_Radfahrer_literal = Fussgaenger_Radfahrer
+_UI_ENUMOptikSymbol_ENUMOptik_Symbol_Pfeil_links_literal = Pfeil_links
+_UI_ENUMOptikSymbol_ENUMOptik_Symbol_Pfeil_rechts_literal = Pfeil_rechts
+_UI_ENUMOptikSymbol_ENUMOptik_Symbol_Radfahrer_literal = Radfahrer
+_UI_ENUMOptikSymbol_ENUMOptik_Symbol_sonstige_literal = sonstige
+_UI_ENUMRichtungspfeil_ENUMRichtungspfeil_linksweisend_literal = linksweisend
+_UI_ENUMRichtungspfeil_ENUMRichtungspfeil_rechtsweisend_literal = rechtsweisend
+_UI_ENUMRichtungspfeil_ENUMRichtungspfeil_Richtung_Gefahrenstelle_links_literal = Richtung_Gefahrenstelle_links
+_UI_ENUMRichtungspfeil_ENUMRichtungspfeil_Richtung_Gefahrenstelle_rechts_literal = Richtung_Gefahrenstelle_rechts
+_UI_ENUMRichtungspfeil_ENUMRichtungspfeil_sonstige_literal = sonstige
+_UI_ENUMFahrtUeber_ENUMFahrt_Ueber_links_literal = links
+_UI_ENUMFahrtUeber_ENUMFahrt_Ueber_rechts_literal = rechts
+_UI_ENUMFahrtUeber_ENUMFahrt_Ueber_Spitze_literal = Spitze
+_UI_ENUMMassnahme_ENUMMassnahme_Ersatzschutz_literal = Ersatzschutz
+_UI_ENUMMassnahme_ENUMMassnahme_Verschluss_literal = Verschluss
+_UI_ENUMMassnahme_ENUMMassnahme_Verschluss_Ersatzschutz_literal = Verschluss_Ersatzschutz
+_UI_ENUMMassnahme_ENUMMassnahme_Verzicht_literal = Verzicht
+_UI_ENUMZwieschutzArt_ENUMZwieschutz_Art_echt_literal = echt
+_UI_ENUMZwieschutzArt_ENUMZwieschutz_Art_echt_eigen_literal = echt_eigen
+_UI_ENUMZwieschutzArt_ENUMZwieschutz_Art_eigen_literal = eigen
+_UI_ENUMBezeichnungKennbuchstabe_ENUMBezeichnung_Kennbuchstabe_B_literal = B
+_UI_ENUMBezeichnungKennbuchstabe_ENUMBezeichnung_Kennbuchstabe_G_literal = G
+_UI_ENUMBezeichnungKennbuchstabe_ENUMBezeichnung_Kennbuchstabe_K_literal = K
+_UI_ENUMBezeichnungKennbuchstabe_ENUMBezeichnung_Kennbuchstabe_W_literal = W
+_UI_ENUMFMAAnschlussSpeiserichtung_ENUMFMA_Anschluss_Speiserichtung_Ausspeisung_literal = Ausspeisung
+_UI_ENUMFMAAnschlussSpeiserichtung_ENUMFMA_Anschluss_Speiserichtung_Einspeisung_literal = Einspeisung
+_UI_ENUMFMAArt_ENUMFMA_Art_Achszaehlanlage_literal = Achszaehlanlage
+_UI_ENUMFMAArt_ENUMFMA_Art_FTGS_literal = FTGS
+_UI_ENUMFMAArt_ENUMFMA_Art_NF_Gleisstromkreis_literal = NF_Gleisstromkreis
+_UI_ENUMFMAArt_ENUMFMA_Art_sonstige_literal = sonstige
+_UI_ENUMFMAArt_ENUMFMA_Art_TF_Gleisstromkreis_literal = TF_Gleisstromkreis
+_UI_ENUMFMAElementArt_ENUMFMA_Element_Art_Anschlussseile_literal = Anschlussseile
+_UI_ENUMFMAElementArt_ENUMFMA_Element_Art_Drosselspule_literal = Drosselspule
+_UI_ENUMFMAElementArt_ENUMFMA_Element_Art_Endverbinder_literal = Endverbinder
+_UI_ENUMFMAElementArt_ENUMFMA_Element_Art_Endverbinder_modifiziert_literal = Endverbinder_modifiziert
+_UI_ENUMFMAElementArt_ENUMFMA_Element_Art_Kurzschlussverbinder_literal = Kurzschlussverbinder
+_UI_ENUMFMAElementArt_ENUMFMA_Element_Art_Potentialausgleichsverbinder_literal = Potentialausgleichsverbinder
+_UI_ENUMFMAElementArt_ENUMFMA_Element_Art_sonstige_literal = sonstige
+_UI_ENUMFMAElementArt_ENUMFMA_Element_Art_S_Verbinder_literal = S_Verbinder
+_UI_ENUMFMAElementArt_ENUMFMA_Element_Art_Ueberlagerungsverbinder_literal = Ueberlagerungsverbinder
+_UI_ENUMFMAElementSeilanzahl_ENUMFMA_Element_Seilanzahl_1_literal = 1
+_UI_ENUMFMAElementSeilanzahl_ENUMFMA_Element_Seilanzahl_2_literal = 2
+_UI_ENUMFMAElementSeilanzahl_ENUMFMA_Element_Seilanzahl_4_literal = 4
+_UI_ENUMFMAElementSeilanzahl_ENUMFMA_Element_Seilanzahl_sonstige_literal = sonstige
+_UI_ENUMFMAKomponenteArt_ENUMFMA_Komponente_Art_elektrischer_Trennstoss_literal = elektrischer_Trennstoss
+_UI_ENUMFMAKomponenteArt_ENUMFMA_Komponente_Art_Isolierstoss_einschienig_literal = Isolierstoss_einschienig
+_UI_ENUMFMAKomponenteArt_ENUMFMA_Komponente_Art_Isolierstoss_zweischienig_literal = Isolierstoss_zweischienig
+_UI_ENUMIsolierung_ENUMIsolierung_einschienig_L_literal = einschienig_L
+_UI_ENUMIsolierung_ENUMIsolierung_einschienig_R_literal = einschienig_R
+_UI_ENUMIsolierung_ENUMIsolierung_sonstige_literal = sonstige
+_UI_ENUMIsolierung_ENUMIsolierung_zweischienig_literal = zweischienig
+_UI_ENUMSchaltmittelFunktion_ENUMSchaltmittel_Funktion_ARM_literal = ARM
+_UI_ENUMSchaltmittelFunktion_ENUMSchaltmittel_Funktion_ARV_literal = ARV
+_UI_ENUMSchaltmittelFunktion_ENUMSchaltmittel_Funktion_Aus_BUE_literal = Aus_BUE
+_UI_ENUMSchaltmittelFunktion_ENUMSchaltmittel_Funktion_Awanst_literal = Awanst
+_UI_ENUMSchaltmittelFunktion_ENUMSchaltmittel_Funktion_Ein_BUE_literal = Ein_BUE
+_UI_ENUMSchaltmittelFunktion_ENUMSchaltmittel_Funktion_Haltfall_literal = Haltfall
+_UI_ENUMSchaltmittelFunktion_ENUMSchaltmittel_Funktion_Raeumungspruefung_literal = Raeumungspruefung
+_UI_ENUMSchaltmittelFunktion_ENUMSchaltmittel_Funktion_sonstige_literal = sonstige
+_UI_ENUMSchaltmittelFunktion_ENUMSchaltmittel_Funktion_ZL_Anstoss_literal = ZL_Anstoss
+_UI_ENUMSchienenprofil_ENUMSchienenprofil_R65_literal = R65
+_UI_ENUMSchienenprofil_ENUMSchienenprofil_S49_literal = S49
+_UI_ENUMSchienenprofil_ENUMSchienenprofil_S54_literal = S54
+_UI_ENUMSchienenprofil_ENUMSchienenprofil_sonstige_literal = sonstige
+_UI_ENUMSchienenprofil_ENUMSchienenprofil_UIC60_literal = UIC60
+_UI_ENUMUebertragungFMinfoRichtung_ENUMUebertragung_FMinfo_Richtung_gehend_literal = gehend
+_UI_ENUMUebertragungFMinfoRichtung_ENUMUebertragung_FMinfo_Richtung_kommend_literal = kommend
+_UI_ENUMZugeinwirkungArt_ENUMZugeinwirkung_Art_Doppel_Schleife_literal = Doppel_Schleife
+_UI_ENUMZugeinwirkungArt_ENUMZugeinwirkung_Art_Doppel_Sensor_literal = Doppel_Sensor
+_UI_ENUMZugeinwirkungArt_ENUMZugeinwirkung_Art_Dreifach_Schleife_literal = Dreifach_Schleife
+_UI_ENUMZugeinwirkungArt_ENUMZugeinwirkung_Art_Einfach_Schleife_literal = Einfach_Schleife
+_UI_ENUMZugeinwirkungArt_ENUMZugeinwirkung_Art_Einfach_Sensor_literal = Einfach_Sensor
+_UI_ENUMZugeinwirkungArt_ENUMZugeinwirkung_Art_Einfach_Sensor_richtungsabhaengig_literal = Einfach_Sensor_richtungsabhaengig
+_UI_ENUMZugeinwirkungArt_ENUMZugeinwirkung_Art_Isolierte_Schiene_alleinstehend_literal = Isolierte_Schiene_alleinstehend
+_UI_ENUMZugeinwirkungArt_ENUMZugeinwirkung_Art_Isolierte_Schiene_FMA_Anlage_mitbenutzt_literal = Isolierte_Schiene_FMA_Anlage_mitbenutzt
+_UI_ENUMZugeinwirkungArt_ENUMZugeinwirkung_Art_Schienenkontakt_literal = Schienenkontakt
+_UI_ENUMZugeinwirkungArt_ENUMZugeinwirkung_Art_sonstige_literal = sonstige
+_UI_ENUMAufloesungSspZielgleis_ENUMAufloesung_Ssp_Zielgleis_besetzt_literal = besetzt
+_UI_ENUMAufloesungSspZielgleis_ENUMAufloesung_Ssp_Zielgleis_frei_literal = frei
+_UI_ENUMAutomatischeEinstellung_ENUMAutomatische_Einstellung_SB_literal = SB
+_UI_ENUMAutomatischeEinstellung_ENUMAutomatische_Einstellung_ZL_literal = ZL
+_UI_ENUMFstrMittelArt_ENUMFstr_Mittel_Art_ZM_literal = ZM
+_UI_ENUMFstrMittelArt_ENUMFstr_Mittel_Art_ZUM_literal = ZUM
+_UI_ENUMFstrRangierArt_ENUMFstr_Rangier_Art_RR_literal = RR
+_UI_ENUMFstrRangierArt_ENUMFstr_Rangier_Art_RT_literal = RT
+_UI_ENUMFstrRangierArt_ENUMFstr_Rangier_Art_RTU_literal = RTU
+_UI_ENUMFstrRangierArt_ENUMFstr_Rangier_Art_RU_literal = RU
+_UI_ENUMFstrZugArt_ENUMFstr_Zug_Art_B_literal = B
+_UI_ENUMFstrZugArt_ENUMFstr_Zug_Art_ZH_literal = ZH
+_UI_ENUMFstrZugArt_ENUMFstr_Zug_Art_ZR_literal = ZR
+_UI_ENUMFstrZugArt_ENUMFstr_Zug_Art_ZT_literal = ZT
+_UI_ENUMFstrZugArt_ENUMFstr_Zug_Art_ZTU_literal = ZTU
+_UI_ENUMFstrZugArt_ENUMFstr_Zug_Art_ZU_literal = ZU
+_UI_ENUMFstrZugArt_ENUMFstr_Zug_Art_ZUH_literal = ZUH
+_UI_ENUMFstrZugArt_ENUMFstr_Zug_Art_ZZ_literal = ZZ
+_UI_ENUMRangierGegenfahrtausschluss_ENUMRangier_Gegenfahrtausschluss_Inselgleis_frei_literal = Inselgleis_frei
+_UI_ENUMRangierGegenfahrtausschluss_ENUMRangier_Gegenfahrtausschluss_ja_literal = ja
+_UI_ENUMRangierGegenfahrtausschluss_ENUMRangier_Gegenfahrtausschluss_nein_literal = nein
+_UI_ENUMStartSignalCharakter_ENUMStart_Signal_Charakter_Ausfahr_Signal_literal = Ausfahr_Signal
+_UI_ENUMStartSignalCharakter_ENUMStart_Signal_Charakter_Ausfahr_Signal_nachgelagert_literal = Ausfahr_Signal_nachgelagert
+_UI_ENUMStartSignalCharakter_ENUMStart_Signal_Charakter_Block_Signal_literal = Block_Signal
+_UI_ENUMStartSignalCharakter_ENUMStart_Signal_Charakter_Einfahr_Signal_literal = Einfahr_Signal
+_UI_ENUMStartSignalCharakter_ENUMStart_Signal_Charakter_Nachrueck_Signal_literal = Nachrueck_Signal
+_UI_ENUMGEOForm_ENUMGEO_Form_Bogen_literal = Bogen
+_UI_ENUMGEOForm_ENUMGEO_Form_Blosskurve_literal = Blosskurve
+_UI_ENUMGEOForm_ENUMGEO_Form_Bloss_einfach_geschwungen_literal = Bloss_einfach_geschwungen
+_UI_ENUMGEOForm_ENUMGEO_Form_Gerade_literal = Gerade
+_UI_ENUMGEOForm_ENUMGEO_Form_Klothoide_literal = Klothoide
+_UI_ENUMGEOForm_ENUMGEO_Form_Km_Sprung_literal = Km_Sprung
+_UI_ENUMGEOForm_ENUMGEO_Form_Polylinie_literal = Polylinie
+_UI_ENUMGEOForm_ENUMGEO_Form_Richtgerade_Knick_am_Ende_200_gon_literal = Richtgerade_Knick_am_Ende_200_gon
+_UI_ENUMGEOForm_ENUMGEO_Form_sonstige_literal = sonstige
+_UI_ENUMGEOForm_ENUMGEO_Form_S_Form_einfach_geschwungen_literal = S_Form_einfach_geschwungen
+_UI_ENUMGEOForm_ENUMGEO_Form_Uebergangsbogen_S_Form_literal = Uebergangsbogen_S_Form
+_UI_ENUMGEOKoordinatensystem_ENUMGEO_Koordinatensystem_CR0_literal = CR0
+_UI_ENUMGEOKoordinatensystem_ENUMGEO_Koordinatensystem_DR0_literal = DR0
+_UI_ENUMGEOKoordinatensystem_ENUMGEO_Koordinatensystem_ER0_literal = ER0
+_UI_ENUMGEOKoordinatensystem_ENUMGEO_Koordinatensystem_FR0_literal = FR0
+_UI_ENUMGEOKoordinatensystem_ENUMGEO_Koordinatensystem_sonstige_literal = sonstige
+_UI_ENUMHoehenlinieForm_ENUMHoehenlinie_Form_Gerade_literal = Gerade
+_UI_ENUMHoehenlinieForm_ENUMHoehenlinie_Form_Parabel_literal = Parabel
+_UI_ENUMHoehenlinieForm_ENUMHoehenlinie_Form_sonstige_literal = sonstige
+_UI_ENUMHoehenlinieForm_ENUMHoehenlinie_Form_Weichenabzweig_literal = Weichenabzweig
+_UI_ENUMHSystem_ENUMHSystem_DBRH_2003_literal = DBRH_2003
+_UI_ENUMHSystem_ENUMHSystem_DBRH_2016_literal = DBRH_2016
+_UI_ENUMHSystem_ENUMHSystem_DHHN_12_literal = DHHN_12
+_UI_ENUMHSystem_ENUMHSystem_DHHN_2016_literal = DHHN_2016
+_UI_ENUMHSystem_ENUMHSystem_DHHN_85_literal = DHHN_85
+_UI_ENUMHSystem_ENUMHSystem_DHHN_92_literal = DHHN_92
+_UI_ENUMHSystem_ENUMHSystem_HN_56_literal = HN_56
+_UI_ENUMHSystem_ENUMHSystem_HN_76_literal = HN_76
+_UI_ENUMHSystem_ENUMHSystem_sonstige_literal = sonstige
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Abzw_literal = Abzw
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Abzw_Anst_literal = Abzw Anst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Abzw_Awanst_literal = Abzw Awanst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Anst_literal = Anst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Anst_Bk_literal = Anst Bk
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Awanst_literal = Awanst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Awanst_Bk_literal = Awanst Bk
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Bf_literal = Bf
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Bf_Abzw_literal = Bf Abzw
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Bft_literal = Bft
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Bft_Abzw_literal = Bft Abzw
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Bk_literal = Bk
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_BSO_literal = BSO
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_BZ_literal = BZ
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Dkst_literal = Dkst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Gp_literal = Gp
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Hp_literal = Hp
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Hp_Abzw_literal = Hp Abzw
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Hp_Abzw_Anst_literal = Hp Abzw Anst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Hp_Abzw_Awanst_literal = Hp Abzw Awanst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Hp_Anst_literal = Hp Anst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Hp_Anst_Bk_literal = Hp Anst Bk
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Hp_Awanst_literal = Hp Awanst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Hp_Awanst_Bk_literal = Hp Awanst Bk
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Hp_Bft_literal = Hp Bft
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Hp_Bk_literal = Hp Bk
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Hp_Dkst_literal = Hp Dkst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Hp_Ust_literal = Hp Üst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Hp_Ust_Anst_literal = Hp Üst Anst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Hp_Ust_Awanst_literal = Hp Üst Awanst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_LGr_literal = LGr
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_Abzw_literal = NE-Abzw
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_Anst_literal = NE-Anst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_Awanst_literal = NE-Awanst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_Bf_literal = NE-Bf
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_Bft_literal = NE-Bft
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_Bft_Abzw_literal = NE-Bft Abzw
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_Bk_literal = NE-Bk
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_Gp_literal = NE-Gp
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_Hp_literal = NE-Hp
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_Hp_Abzw_literal = NE-Hp Abzw
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_Hp_Anst_literal = NE-Hp Anst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_Hp_Awanst_literal = NE-Hp Awanst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_Hp_Bk_literal = NE-Hp Bk
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_LGr_literal = NE-LGr
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_RBGr_literal = NE-RBGr
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_NE_Ust_literal = NE-Üst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_PDGr_literal = PDGr
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_RBGr_literal = RBGr
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Sbk_literal = Sbk
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_sonstige_literal = sonstige
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Strw_literal = Strw
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_TaW_literal = TaW
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_TSO_literal = TSO
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Ust_literal = Üst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Ust_Anst_literal = Üst Anst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_Ust_Awanst_literal = Üst Awanst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_vp_Abzw_literal = vp-Abzw
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_vp_Anst_literal = vp-Anst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_vp_Awanst_literal = vp-Awanst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_vp_Bf_literal = vp-Bf
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_vp_Bft_literal = vp-Bft
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_vp_Bk_literal = vp-Bk
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_vp_Hp_literal = vp-Hp
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_vp_Hp_Abzw_literal = vp-Hp Abzw
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_vp_Hp_Anst_literal = vp-Hp Anst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_vp_Hp_Anst_Bk_literal = vp-Hp Anst Bk
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_vp_Hp_Awanst_literal = vp-Hp Awanst
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_vp_LGr_literal = vp-LGr
+_UI_ENUMOertlichkeitArt_ENUMOertlichkeit_Art_vp_RBGr_literal = vp-RBGr
+_UI_ENUMPlanQuelle_ENUMPlan_Quelle_Ersatztrassierung_literal = Ersatztrassierung
+_UI_ENUMPlanQuelle_ENUMPlan_Quelle_GIS_literal = GIS
+_UI_ENUMPlanQuelle_ENUMPlan_Quelle_GND_literal = GND
+_UI_ENUMPlanQuelle_ENUMPlan_Quelle_GND_autokorr_literal = GND_autokorr
+_UI_ENUMPlanQuelle_ENUMPlan_Quelle_GND_mankorr_literal = GND_mankorr
+_UI_ENUMPlanQuelle_ENUMPlan_Quelle_Ivl_literal = Ivl
+_UI_ENUMPlanQuelle_ENUMPlan_Quelle_Ivmg_literal = Ivmg
+_UI_ENUMPlanQuelle_ENUMPlan_Quelle_Kopie_literal = Kopie
+_UI_ENUMPlanQuelle_ENUMPlan_Quelle_Neutrassierung_literal = Neutrassierung
+_UI_ENUMPlanQuelle_ENUMPlan_Quelle_Planung_literal = Planung
+_UI_ENUMPlanQuelle_ENUMPlan_Quelle_PT_2_literal = PT 2
+_UI_ENUMPlanQuelle_ENUMPlan_Quelle_sonstige_literal = sonstige
+_UI_ENUMPlanQuelle_ENUMPlan_Quelle_Vermessung_literal = Vermessung
+_UI_ENUMStreckeRichtung_ENUMStrecke_Richtung_a_literal = a
+_UI_ENUMStreckeRichtung_ENUMStrecke_Richtung_b_literal = b
+_UI_ENUMStreckeRichtung_ENUMStrecke_Richtung_sonstige_literal = sonstige
+_UI_ENUMTBArt_ENUMTB_Art_Bahnsteig_ungenutzt_literal = Bahnsteig_ungenutzt
+_UI_ENUMTBArt_ENUMTB_Art_Personenunterfuehrung_literal = Personenunterfuehrung
+_UI_ENUMTBArt_ENUMTB_Art_Bahnsteigabsenkung_literal = Bahnsteigabsenkung
+_UI_ENUMTBArt_ENUMTB_Art_Durchlass_literal = Durchlass
+_UI_ENUMTBArt_ENUMTB_Art_Eisenbahnkreuzungsbauwerk_oben_literal = Eisenbahnkreuzungsbauwerk_oben
+_UI_ENUMTBArt_ENUMTB_Art_Eisenbahnkreuzungsbauwerk_unten_literal = Eisenbahnkreuzungsbauwerk_unten
+_UI_ENUMTBArt_ENUMTB_Art_Eisenbahnueberfuehrung_literal = Eisenbahnueberfuehrung
+_UI_ENUMTBArt_ENUMTB_Art_Schutzwand_links_literal = Schutzwand_links
+_UI_ENUMTBArt_ENUMTB_Art_Schutzwand_rechts_literal = Schutzwand_rechts
+_UI_ENUMTBArt_ENUMTB_Art_sonstige_literal = sonstige
+_UI_ENUMTBArt_ENUMTB_Art_Tunnel_literal = Tunnel
+_UI_ENUMTBArt_ENUMTB_Art_Ueberfuehrung_ueber_Eisenbahn_literal = Ueberfuehrung_ueber_Eisenbahn
+_UI_ENUMTOPAnschluss_ENUMTOP_Anschluss_Ende_literal = Ende
+_UI_ENUMTOPAnschluss_ENUMTOP_Anschluss_Ende_Bestdig_literal = Ende_Bestdig
+_UI_ENUMTOPAnschluss_ENUMTOP_Anschluss_Links_literal = Links
+_UI_ENUMTOPAnschluss_ENUMTOP_Anschluss_Meridiansprung_literal = Meridiansprung
+_UI_ENUMTOPAnschluss_ENUMTOP_Anschluss_RB_Grenze_literal = RB_Grenze
+_UI_ENUMTOPAnschluss_ENUMTOP_Anschluss_Rechts_literal = Rechts
+_UI_ENUMTOPAnschluss_ENUMTOP_Anschluss_Schnitt_literal = Schnitt
+_UI_ENUMTOPAnschluss_ENUMTOP_Anschluss_sonstige_literal = sonstige
+_UI_ENUMTOPAnschluss_ENUMTOP_Anschluss_Spitze_literal = Spitze
+_UI_ENUMTOPAnschluss_ENUMTOP_Anschluss_Streckenwechsel_literal = Streckenwechsel
+_UI_ENUMTOPAnschluss_ENUMTOP_Anschluss_Verbindung_literal = Verbindung
+_UI_ENUMTPArt_ENUMTP_Art_Bahnsteigmonitor_literal = Bahnsteigmonitor
+_UI_ENUMTPArt_ENUMTP_Art_FBOA_literal = FBOA
+_UI_ENUMTPArt_ENUMTP_Art_Bahnsteigspiegel_literal = Bahnsteigspiegel
+_UI_ENUMTPArt_ENUMTP_Art_Gebaeude_literal = Gebaeude
+_UI_ENUMTPArt_ENUMTP_Art_HOA_literal = HOA
+_UI_ENUMTPArt_ENUMTP_Art_sonstige_literal = sonstige
+_UI_ENUMTPArt_ENUMTP_Art_Mast_literal = Mast
+_UI_ENUMTPArt_ENUMTP_Art_Zughaltesensor_literal = Zughaltesensor
+_UI_ENUMUeberhoehungslinieForm_ENUMUeberhoehungslinie_Form_gleichbleibend_literal = gleichbleibend
+_UI_ENUMUeberhoehungslinieForm_ENUMUeberhoehungslinie_Form_Rampe_Bloss_literal = Rampe_Bloss
+_UI_ENUMUeberhoehungslinieForm_ENUMUeberhoehungslinie_Form_Rampe_gerade_literal = Rampe_gerade
+_UI_ENUMUeberhoehungslinieForm_ENUMUeberhoehungslinie_Form_Rampe_S_literal = Rampe_S
+_UI_ENUMUeberhoehungslinieForm_ENUMUeberhoehungslinie_Form_Schere_Bloss_literal = Schere_Bloss
+_UI_ENUMUeberhoehungslinieForm_ENUMUeberhoehungslinie_Form_Schere_S_literal = Schere_S
+_UI_ENUMUeberhoehungslinieForm_ENUMUeberhoehungslinie_Form_sonstige_literal = sonstige
+_UI_ENUMVProfilArt_ENUMV_Profil_Art_anzeigegeführt_literal = anzeigegeführt
+_UI_ENUMVProfilArt_ENUMV_Profil_Art_anzeigegeführt_ES_literal = anzeigegeführt ES
+_UI_ENUMVProfilArt_ENUMV_Profil_Art_signalgeführt_literal = signalgeführt
+_UI_ENUMVProfilArt_ENUMV_Profil_Art_signalgeführt_ES_literal = signalgeführt ES
+_UI_ENUMVProfilArt_ENUMV_Profil_Art_sonstige_literal = sonstige
+_UI_ENUMVProfilArt_ENUMV_Profil_Art_windabhängig_literal = windabhängig
+_UI_ENUMBesonderesFahrwegelement_ENUMBesonderes_Fahrwegelement_abklappbarer_Prellbock_literal = abklappbarer Prellbock
+_UI_ENUMBesonderesFahrwegelement_ENUMBesonderes_Fahrwegelement_bewegliche_Brücke_literal = bewegliche Brücke
+_UI_ENUMBesonderesFahrwegelement_ENUMBesonderes_Fahrwegelement_sonstige_literal = sonstige
+_UI_ENUMBesonderesFahrwegelement_ENUMBesonderes_Fahrwegelement_Wehrkammertor_literal = Wehrkammertor
+_UI_ENUMElektrischerAntriebLage_ENUMElektrischer_Antrieb_Lage_links_literal = links
+_UI_ENUMElektrischerAntriebLage_ENUMElektrischer_Antrieb_Lage_mittig_literal = mittig
+_UI_ENUMElektrischerAntriebLage_ENUMElektrischer_Antrieb_Lage_rechts_literal = rechts
+_UI_ENUMElektrischerAntriebLage_ENUMElektrischer_Antrieb_Lage_sonstige_literal = sonstige
+_UI_ENUMElementLage_ENUMElement_Lage_Abschnitt_literal = Abschnitt
+_UI_ENUMElementLage_ENUMElement_Lage_Weiche_literal = Weiche
+_UI_ENUMElementLage_ENUMElement_Lage_WeicheL_literal = WeicheL
+_UI_ENUMElementLage_ENUMElement_Lage_WeicheR_literal = WeicheR
+_UI_ENUMGleisAbschlussArt_ENUMGleis_Abschluss_Art_Bremsprellbock_literal = Bremsprellbock
+_UI_ENUMGleisAbschlussArt_ENUMGleis_Abschluss_Art_Drehscheibe_literal = Drehscheibe
+_UI_ENUMGleisAbschlussArt_ENUMGleis_Abschluss_Art_Faehranleger_literal = Faehranleger
+_UI_ENUMGleisAbschlussArt_ENUMGleis_Abschluss_Art_Festprellbock_literal = Festprellbock
+_UI_ENUMGleisAbschlussArt_ENUMGleis_Abschluss_Art_fiktiv_literal = fiktiv
+_UI_ENUMGleisAbschlussArt_ENUMGleis_Abschluss_Art_Infrastrukturgrenze_literal = Infrastrukturgrenze
+_UI_ENUMGleisAbschlussArt_ENUMGleis_Abschluss_Art_Kopframpe_literal = Kopframpe
+_UI_ENUMGleisAbschlussArt_ENUMGleis_Abschluss_Art_Schiebebuehne_literal = Schiebebuehne
+_UI_ENUMGleisAbschlussArt_ENUMGleis_Abschluss_Art_Schwellenkreuz_literal = Schwellenkreuz
+_UI_ENUMGleisAbschlussArt_ENUMGleis_Abschluss_Art_sonstige_literal = sonstige
+_UI_ENUMGleissperreBetriebsart_ENUMGleissperre_Betriebsart_abgelegt_literal = abgelegt
+_UI_ENUMGleissperreBetriebsart_ENUMGleissperre_Betriebsart_aufgelegt_literal = aufgelegt
+_UI_ENUMGleissperreBetriebsart_ENUMGleissperre_Betriebsart_Betrieb_literal = Betrieb
+_UI_ENUMGleissperrensignal_ENUMGleissperrensignal_innenbeleuchtet_beidseitig_literal = innenbeleuchtet_beidseitig
+_UI_ENUMGleissperrensignal_ENUMGleissperrensignal_innenbeleuchtet_einseitig_literal = innenbeleuchtet_einseitig
+_UI_ENUMGleissperrensignal_ENUMGleissperrensignal_reflektierend_beidseitig_literal = reflektierend_beidseitig
+_UI_ENUMGleissperrensignal_ENUMGleissperrensignal_reflektierend_einseitig_literal = reflektierend_einseitig
+_UI_ENUMGleissperreVorzugslage_ENUMGleissperre_Vorzugslage_abgelegt_literal = abgelegt
+_UI_ENUMGleissperreVorzugslage_ENUMGleissperre_Vorzugslage_aufgelegt_literal = aufgelegt
+_UI_ENUMWeicheBetriebsart_ENUMWeiche_Betriebsart_Betrieb_literal = Betrieb
+_UI_ENUMWeicheBetriebsart_ENUMWeiche_Betriebsart_links_literal = links
+_UI_ENUMWeicheBetriebsart_ENUMWeiche_Betriebsart_rechts_literal = rechts
+_UI_ENUMWeichensignal_ENUMWeichensignal_innenbeleuchtet_literal = innenbeleuchtet
+_UI_ENUMWeichensignal_ENUMWeichensignal_reflektierend_literal = reflektierend
+_UI_ENUMWKrArt_ENUMW_Kr_Art_ABW_literal = ABW
+_UI_ENUMWKrArt_ENUMW_Kr_Art_ABW_IBW_literal = ABW/IBW
+_UI_ENUMWKrArt_ENUMW_Kr_Art_BKr_literal = BKr
+_UI_ENUMWKrArt_ENUMW_Kr_Art_DBKW_literal = DBKW
+_UI_ENUMWKrArt_ENUMW_Kr_Art_DKW_literal = DKW
+_UI_ENUMWKrArt_ENUMW_Kr_Art_DW_literal = DW
+_UI_ENUMWKrArt_ENUMW_Kr_Art_EABKW_literal = EABKW
+_UI_ENUMWKrArt_ENUMW_Kr_Art_EBKW_literal = EBKW
+_UI_ENUMWKrArt_ENUMW_Kr_Art_EIBKW_literal = EIBKW
+_UI_ENUMWKrArt_ENUMW_Kr_Art_Eins__DW_literal = Eins. DW
+_UI_ENUMWKrArt_ENUMW_Kr_Art_EKW_literal = EKW
+_UI_ENUMWKrArt_ENUMW_Kr_Art_EW_literal = EW
+_UI_ENUMWKrArt_ENUMW_Kr_Art_Flachkreuzung_literal = Flachkreuzung
+_UI_ENUMWKrArt_ENUMW_Kr_Art_IBKr_literal = IBKr
+_UI_ENUMWKrArt_ENUMW_Kr_Art_IBW_literal = IBW
+_UI_ENUMWKrArt_ENUMW_Kr_Art_IBW_ABW_literal = IBW/ABW
+_UI_ENUMWKrArt_ENUMW_Kr_Art_Klothoidenweiche_literal = Klothoidenweiche
+_UI_ENUMWKrArt_ENUMW_Kr_Art_Korbbogenweiche_literal = Korbbogenweiche
+_UI_ENUMWKrArt_ENUMW_Kr_Art_Kr_literal = Kr
+_UI_ENUMWKrArt_ENUMW_Kr_Art_sonstige_literal = sonstige
+_UI_ENUMWKrArt_ENUMW_Kr_Art_Sym__ABW_literal = Sym. ABW
+_UI_ENUMWKrArt_ENUMW_Kr_Art_ZHA_literal = ZHA
+_UI_ENUMWKrArt_ENUMW_Kr_Art_ZHV_ABW_literal = ZHV ABW
+_UI_ENUMWKrArt_ENUMW_Kr_Art_ZHV_IBW_literal = ZHV IBW
+_UI_ENUMWKrGspStellart_ENUMW_Kr_Gsp_Stellart_elektrisch_ferngestellt_literal = elektrisch_ferngestellt
+_UI_ENUMWKrGspStellart_ENUMW_Kr_Gsp_Stellart_elektrisch_ortsgestellt_literal = elektrisch_ortsgestellt
+_UI_ENUMWKrGspStellart_ENUMW_Kr_Gsp_Stellart_mechanisch_ferngestellt_literal = mechanisch_ferngestellt
+_UI_ENUMWKrGspStellart_ENUMW_Kr_Gsp_Stellart_mechanisch_ortsgestellt_literal = mechanisch_ortsgestellt
+_UI_ENUMWKrGspStellart_ENUMW_Kr_Gsp_Stellart_nicht_stellbar_literal = nicht_stellbar
+_UI_ENUMWKrGspStellart_ENUMW_Kr_Gsp_Stellart_Rueckfallweiche_literal = Rueckfallweiche
+_UI_ENUMWKrGspStellart_ENUMW_Kr_Gsp_Stellart_sonstige_literal = sonstige
+_UI_ENUMWKrGspStellart_ENUMW_Kr_Gsp_Stellart_stillgelegt_links_literal = stillgelegt_links
+_UI_ENUMWKrGspStellart_ENUMW_Kr_Gsp_Stellart_stillgelegt_rechts_literal = stillgelegt_rechts
+_UI_ENUMWKrGspStellart_ENUMW_Kr_Gsp_Stellart_unbestimmt_literal = unbestimmt
+_UI_ENUMWKrGspStellart_ENUMW_Kr_Gsp_Stellart_ZHA_literal = ZHA
+_UI_ENUMBaubereichArt_ENUMBaubereich_Art_ausgebaut_literal = ausgebaut
+_UI_ENUMBaubereichArt_ENUMBaubereich_Art_Baugleis_literal = Baugleis
+_UI_ENUMBaubereichArt_ENUMBaubereich_Art_gesperrt_literal = gesperrt
+_UI_ENUMBaubereichArt_ENUMBaubereich_Art_sonstige_literal = sonstige
+_UI_ENUMGleisart_ENUMGleisart_Anschlussgleis_literal = Anschlussgleis
+_UI_ENUMGleisart_ENUMGleisart_Durchgehendes_Hauptgleis_literal = Durchgehendes_Hauptgleis
+_UI_ENUMGleisart_ENUMGleisart_Hauptgleis_literal = Hauptgleis
+_UI_ENUMGleisart_ENUMGleisart_Nebengleis_literal = Nebengleis
+_UI_ENUMGleisart_ENUMGleisart_sonstige_literal = sonstige
+_UI_ENUMGleisart_ENUMGleisart_Streckengleis_literal = Streckengleis
+_UI_ENUMKonstruktion_ENUMKonstruktion_Feste_Fahrbahn_literal = Feste_Fahrbahn
+_UI_ENUMKonstruktion_ENUMKonstruktion_Schutzschiene_links_literal = Schutzschiene_links
+_UI_ENUMKonstruktion_ENUMKonstruktion_Schutzschiene_rechts_literal = Schutzschiene_rechts
+_UI_ENUMKonstruktion_ENUMKonstruktion_sonstige_literal = sonstige
+_UI_ENUMLichtraumprofil_ENUMLichtraumprofil_1SMDR_literal = 1SMDR
+_UI_ENUMLichtraumprofil_ENUMLichtraumprofil_GC_literal = GC
+_UI_ENUMLichtraumprofil_ENUMLichtraumprofil_SBahn_80003_literal = SBahn_80003
+_UI_ENUMLichtraumprofil_ENUMLichtraumprofil_SBahn_Berlin_literal = SBahn_Berlin
+_UI_ENUMLichtraumprofil_ENUMLichtraumprofil_sonstige_literal = sonstige
+_UI_ENUMKabelArt_ENUMKabel_Art_Balisenkabel_literal = Balisenkabel
+_UI_ENUMKabelArt_ENUMKabel_Art_Energie_400V_AC_literal = Energie 400V AC
+_UI_ENUMKabelArt_ENUMKabel_Art_Energie_750V_DC_literal = Energie 750V DC
+_UI_ENUMKabelArt_ENUMKabel_Art_LWL_literal = LWL
+_UI_ENUMKabelArt_ENUMKabel_Art_Signalkabel_adrig_literal = Signalkabel adrig
+_UI_ENUMKabelArt_ENUMKabel_Art_Signalkabel_kombiniert_literal = Signalkabel kombiniert
+_UI_ENUMKabelArt_ENUMKabel_Art_Signalkabel_Sternvierer_literal = Signalkabel Sternvierer
+_UI_ENUMKabelArt_ENUMKabel_Art_sonstige_literal = sonstige
+_UI_ENUMKabelVerteilpunktArt_ENUMKabel_Verteilpunkt_Art_Kabelschrank_literal = Kabelschrank
+_UI_ENUMKabelVerteilpunktArt_ENUMKabel_Verteilpunkt_Art_Kabelverteiler_literal = Kabelverteiler
+_UI_ENUMKabelVerteilpunktArt_ENUMKabel_Verteilpunkt_Art_sonstige_literal = sonstige
+_UI_ENUMTrasseKanteArt_ENUMTrasse_Kante_Art_Erdtrasse_literal = Erdtrasse
+_UI_ENUMTrasseKanteArt_ENUMTrasse_Kante_Art_frei_literal = frei
+_UI_ENUMTrasseKanteArt_ENUMTrasse_Kante_Art_Kabelgestell_Tunnel_literal = Kabelgestell_Tunnel
+_UI_ENUMTrasseKanteArt_ENUMTrasse_Kante_Art_Lufttrasse_literal = Lufttrasse
+_UI_ENUMTrasseKanteArt_ENUMTrasse_Kante_Art_Rohrtrasse_literal = Rohrtrasse
+_UI_ENUMTrasseKanteArt_ENUMTrasse_Kante_Art_sonstige_literal = sonstige
+_UI_ENUMTrasseKanteArt_ENUMTrasse_Kante_Art_Trogtrasse_literal = Trogtrasse
+_UI_ENUMTrasseKanteArt_ENUMTrasse_Kante_Art_Trogtrasse_aufgestaendert_literal = Trogtrasse_aufgestaendert
+_UI_ENUMTrasseKanteArt_ENUMTrasse_Kante_Art_Trogtrasse_Behelf_literal = Trogtrasse_Behelf
+_UI_ENUMTrasseKnotenArt_ENUMTrasse_Knoten_Art_Schacht_literal = Schacht
+_UI_ENUMTrasseKnotenArt_ENUMTrasse_Knoten_Art_sonstige_literal = sonstige
+_UI_ENUMTrasseKnotenArt_ENUMTrasse_Knoten_Art_Trassenabzweig_literal = Trassenabzweig
+_UI_ENUMTrasseKnotenArt_ENUMTrasse_Knoten_Art_Trassenaenderung_literal = Trassenaenderung
+_UI_ENUMTrasseKnotenArt_ENUMTrasse_Knoten_Art_Trassenauslass_literal = Trassenauslass
+_UI_ENUMTrasseKnotenArt_ENUMTrasse_Knoten_Art_Trassenende_literal = Trassenende
+_UI_ENUMTrasseNutzer_ENUMTrasse_Nutzer_DB_Energie_literal = DB_Energie
+_UI_ENUMTrasseNutzer_ENUMTrasse_Nutzer_DB_InfraGO_Fahrweg_literal = DB_InfraGO_Fahrweg
+_UI_ENUMTrasseNutzer_ENUMTrasse_Nutzer_DB_InfraGO_Personenbahnhoefe_literal = DB_InfraGO_Personenbahnhoefe
+_UI_ENUMTrasseNutzer_ENUMTrasse_Nutzer_DB_KT_literal = DB_KT
+_UI_ENUMTrasseNutzer_ENUMTrasse_Nutzer_DB_Netz_literal = DB_Netz
+_UI_ENUMTrasseNutzer_ENUMTrasse_Nutzer_DB_StuS_literal = DB_StuS
+_UI_ENUMTrasseNutzer_ENUMTrasse_Nutzer_Dritte_literal = Dritte
+_UI_ENUMTrasseNutzer_ENUMTrasse_Nutzer_sonstige_literal = sonstige
+_UI_ENUMTrasseNutzer_ENUMTrasse_Nutzer_unbekannt_literal = unbekannt
+_UI_ENUMNBArt_ENUMNB_Art_NB_G_literal = NB_G
+_UI_ENUMNBArt_ENUMNB_Art_NB_R_literal = NB_R
+_UI_ENUMNBArt_ENUMNB_Art_NB_W_literal = NB_W
+_UI_ENUMNBGrenzeArt_ENUMNB_Grenze_Art_ESTW_Bereich_literal = ESTW_Bereich
+_UI_ENUMNBGrenzeArt_ENUMNB_Grenze_Art_NB_Zone_literal = NB_Zone
+_UI_ENUMNBGrenzeArt_ENUMNB_Grenze_Art_Ortsstellbereich_literal = Ortsstellbereich
+_UI_ENUMNBRueckgabevoraussetzung_ENUMNB_Rueckgabevoraussetzung_abgelegt_literal = abgelegt
+_UI_ENUMNBRueckgabevoraussetzung_ENUMNB_Rueckgabevoraussetzung_aufgelegt_literal = aufgelegt
+_UI_ENUMNBRueckgabevoraussetzung_ENUMNB_Rueckgabevoraussetzung_Hp_0_literal = Hp_0
+_UI_ENUMNBRueckgabevoraussetzung_ENUMNB_Rueckgabevoraussetzung_keine_literal = keine
+_UI_ENUMNBRueckgabevoraussetzung_ENUMNB_Rueckgabevoraussetzung_Kennlicht_literal = Kennlicht
+_UI_ENUMNBRueckgabevoraussetzung_ENUMNB_Rueckgabevoraussetzung_links_literal = links
+_UI_ENUMNBRueckgabevoraussetzung_ENUMNB_Rueckgabevoraussetzung_rechts_literal = rechts
+_UI_ENUMNBRueckgabevoraussetzung_ENUMNB_Rueckgabevoraussetzung_Schluessel_eingeschlossen_literal = Schluessel_eingeschlossen
+_UI_ENUMNBVerhaeltnisBesonders_ENUMNB_Verhaeltnis_Besonders_ueberlappend_literal = ueberlappend
+_UI_ENUMNBVerhaeltnisBesonders_ENUMNB_Verhaeltnis_Besonders_vereinigt_literal = vereinigt
+_UI_ENUMWGspLage_ENUMW_Gsp_Lage_abgelegt_literal = abgelegt
+_UI_ENUMWGspLage_ENUMW_Gsp_Lage_aufgelegt_literal = aufgelegt
+_UI_ENUMWGspLage_ENUMW_Gsp_Lage_links_literal = links
+_UI_ENUMWGspLage_ENUMW_Gsp_Lage_rechts_literal = rechts
+_UI_ENUMWGspLage_ENUMW_Gsp_Lage_sonstige_literal = sonstige
+_UI_ENUMGUEAnordnung_ENUMGUE_Anordnung_1_EA_literal = 1_EA
+_UI_ENUMGUEAnordnung_ENUMGUE_Anordnung_2_AE_literal = 2_AE
+_UI_ENUMGUEBauart_ENUMGUE_Bauart_GPE_90R_literal = GPE_90R
+_UI_ENUMGUEBauart_ENUMGUE_Bauart_GUE_60_literal = GUE_60
+_UI_ENUMGUEBauart_ENUMGUE_Bauart_PZ_80_literal = PZ_80
+_UI_ENUMGUEBauart_ENUMGUE_Bauart_sonstige_literal = sonstige
+_UI_ENUMGUEEnergieversorgung_ENUMGUE_Energieversorgung_Solar_literal = Solar
+_UI_ENUMGUEEnergieversorgung_ENUMGUE_Energieversorgung_sonstige_literal = sonstige
+_UI_ENUMGUEEnergieversorgung_ENUMGUE_Energieversorgung_Stellwerk_literal = Stellwerk
+_UI_ENUMMessfehler_ENUMMessfehler_2_bis_3_literal = 2_bis_3
+_UI_ENUMMessfehler_ENUMMessfehler_3_bis_5_literal = 3_bis_5
+_UI_ENUMMessfehler_ENUMMessfehler_5_bis_7_literal = 5_bis_7
+_UI_ENUMMessfehler_ENUMMessfehler_kleiner_4_literal = kleiner_4
+_UI_ENUMMessfehler_ENUMMessfehler_kleiner_5_literal = kleiner_5
+_UI_ENUMPZBArt_ENUMPZB_Art_1000_2000_Hz_literal = 1000_2000_Hz
+_UI_ENUMPZBArt_ENUMPZB_Art_1000_Hz_literal = 1000_Hz
+_UI_ENUMPZBArt_ENUMPZB_Art_2000_Hz_literal = 2000_Hz
+_UI_ENUMPZBArt_ENUMPZB_Art_500_Hz_literal = 500_Hz
+_UI_ENUMWirksamkeit_ENUMWirksamkeit_schaltbar_von_Signal_literal = schaltbar_von_Signal
+_UI_ENUMWirksamkeit_ENUMWirksamkeit_sonstige_literal = sonstige
+_UI_ENUMWirksamkeit_ENUMWirksamkeit_staendig_wirksam_literal = staendig_wirksam
+_UI_ENUMWirksamkeitFstr_ENUMWirksamkeit_Fstr_sonstige_literal = sonstige
+_UI_ENUMWirksamkeitFstr_ENUMWirksamkeit_Fstr_staendig_wirksam_wenn_Fahrstrasse_eingestellt_literal = staendig_wirksam_wenn_Fahrstrasse_eingestellt
+_UI_ENUMWirksamkeitFstr_ENUMWirksamkeit_Fstr_unwirksam_wenn_Fahrstrasse_eingestellt_literal = unwirksam_wenn_Fahrstrasse_eingestellt
+_UI_ENUMBedienungArt_ENUMBedienung_Art_aussen_literal = aussen
+_UI_ENUMBedienungArt_ENUMBedienung_Art_aussen_Awanst_literal = aussen_Awanst
+_UI_ENUMBedienungArt_ENUMBedienung_Art_innen_literal = innen
+_UI_ENUMBUELage_ENUMBUE_Lage_geoeffnet_literal = geoeffnet
+_UI_ENUMBUELage_ENUMBUE_Lage_geschlossen_literal = geschlossen
+_UI_ENUMGspLage_ENUMGsp_Lage_abgelegt_literal = abgelegt
+_UI_ENUMGspLage_ENUMGsp_Lage_aufgelegt_literal = aufgelegt
+_UI_ENUMSchlossArt_ENUMSchloss_Art_HV_73_literal = HV_73
+_UI_ENUMSchlossArt_ENUMSchloss_Art_Prueferschieber_abschliessbar_literal = Prueferschieber_abschliessbar
+_UI_ENUMSchlossArt_ENUMSchloss_Art_Riegelhandschloss_literal = Riegelhandschloss
+_UI_ENUMSchlossArt_ENUMSchloss_Art_sonstige_literal = sonstige
+_UI_ENUMSchlossArt_ENUMSchloss_Art_Weichenschloss_literal = Weichenschloss
+_UI_ENUMSchlossArt_ENUMSchloss_Art_Zungensperre_literal = Zungensperre
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_a_literal = a
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_b_literal = b
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_c_literal = c
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_d_literal = d
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_e_literal = e
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_f_literal = f
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_g_literal = g
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_h_literal = h
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_i_literal = i
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_k_literal = k
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_l_literal = l
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_m_literal = m
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_n_literal = n
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_o_literal = o
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_p_literal = p
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_q_literal = q
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_r_literal = r
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_s_literal = s
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_t_literal = t
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_u_literal = u
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_v_literal = v
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_w_literal = w
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_x_literal = x
+_UI_ENUMSchluesselBartform_ENUMSchluessel_Bartform_z_literal = z
+_UI_ENUMSchluesselGruppe_ENUMSchluessel_Gruppe_0_literal = 0
+_UI_ENUMSchluesselGruppe_ENUMSchluessel_Gruppe_1_literal = 1
+_UI_ENUMSchluesselGruppe_ENUMSchluessel_Gruppe_2_literal = 2
+_UI_ENUMSchluesselGruppe_ENUMSchluessel_Gruppe_3_literal = 3
+_UI_ENUMSchluesselGruppe_ENUMSchluessel_Gruppe_4_literal = 4
+_UI_ENUMSchluesselGruppe_ENUMSchluessel_Gruppe_5_literal = 5
+_UI_ENUMSonderanlageLage_ENUMSonderanlage_Lage_befahrbar_literal = befahrbar
+_UI_ENUMSonderanlageLage_ENUMSonderanlage_Lage_nicht_befahrbar_literal = nicht befahrbar
+_UI_ENUMSonderanlageLage_ENUMSonderanlage_Lage_sonstige_literal = sonstige
+_UI_ENUMVerschlussOrt_ENUMVerschluss_Ort_Herzstück_literal = Herzstück
+_UI_ENUMVerschlussOrt_ENUMVerschluss_Ort_Mitte_literal = Mitte
+_UI_ENUMVerschlussOrt_ENUMVerschluss_Ort_sonstige_literal = sonstige
+_UI_ENUMVerschlussOrt_ENUMVerschluss_Ort_Spitze_literal = Spitze
+_UI_ENUMAnschaltdauer_ENUMAnschaltdauer_G_literal = G
+_UI_ENUMAnschaltdauer_ENUMAnschaltdauer_T_literal = T
+_UI_ENUMAnschaltdauer_ENUMAnschaltdauer_Z_literal = Z
+_UI_ENUMAutoEinstellung_ENUMAuto_Einstellung_SB_literal = SB
+_UI_ENUMAutoEinstellung_ENUMAuto_Einstellung_sonstige_literal = sonstige
+_UI_ENUMAutoEinstellung_ENUMAuto_Einstellung_ZL_literal = ZL
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_andere_literal = andere
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_andere_Sonderkonstruktion_literal = andere Sonderkonstruktion
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Arbeitsbuehne_literal = Arbeitsbuehne
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Bahnsteig_literal = Bahnsteig
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Dach_Decke_literal = Dach_Decke
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Fundament_literal = Fundament
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Konstruktionsteil_literal = Konstruktionsteil
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_OL_Kettenwerk_literal = OL_Kettenwerk
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_OL_Mast_literal = OL_Mast
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Pfahl_literal = Pfahl
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Pfosten_hoch_literal = Pfosten_hoch
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Pfosten_niedrig_literal = Pfosten_niedrig
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Prellbock_literal = Prellbock
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Rahmen_literal = Rahmen
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Regelanordnung_Mast_hoch_literal = Regelanordnung_Mast_hoch
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Regelanordnung_Mast_niedrig_literal = Regelanordnung_Mast_niedrig
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Regelanordnung_Sonstige_hoch_literal = Regelanordnung_Sonstige_hoch
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Regelanordnung_Sonstige_niedrig_literal = Regelanordnung_Sonstige_niedrig
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Schienenfuss_literal = Schienenfuss
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Signalausleger_literal = Signalausleger
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Signalbruecke_literal = Signalbruecke
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Sonderanordnung_Mast_hoch_literal = Sonderanordnung_Mast_hoch
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Sonderanordnung_Mast_niedrig_literal = Sonderanordnung_Mast_niedrig
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_sonstige_literal = sonstige
+_UI_ENUMBefestigungArt_ENUMBefestigung_Art_Wand_literal = Wand
+_UI_ENUMBeleuchtet_ENUMBeleuchtet_angestrahlt_literal = angestrahlt
+_UI_ENUMBeleuchtet_ENUMBeleuchtet_innenbeleuchtet_literal = innenbeleuchtet
+_UI_ENUMBeleuchtet_ENUMBeleuchtet_nein_literal = nein
+_UI_ENUMDurchfahrt_ENUMDurchfahrt_erlaubt_literal = erlaubt
+_UI_ENUMDurchfahrt_ENUMDurchfahrt_nur_mit_Sh1_literal = nur_mit_Sh1
+_UI_ENUMDurchfahrt_ENUMDurchfahrt_verboten_literal = verboten
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_FAP_Start_literal = FAP_Start
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_FAP_Ziel_literal = FAP_Ziel
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Rangier_Start_Ziel_Ne_14_literal = Rangier_Start_Ziel_Ne_14
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Rangier_Start_Ziel_ohne_Signal_literal = Rangier_Start_Ziel_ohne_Signal
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_sonstige_literal = sonstige
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Vsig_virtuell_literal = Vsig_virtuell
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Zentralblock_Start_literal = Zentralblock_Start
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Zentralblock_Ziel_literal = Zentralblock_Ziel
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Zug_Start_Awanst_literal = Zug_Start_Awanst
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Zug_Start_Mittelweiche_literal = Zug_Start_Mittelweiche
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Zug_Start_ohne_Signal_literal = Zug_Start_ohne_Signal
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Zug_Ziel_Awanst_literal = Zug_Ziel_Awanst
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Zug_Ziel_ohne_Signal_literal = Zug_Ziel_ohne_Signal
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Zug_Ziel_Strecke_literal = Zug_Ziel_Strecke
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Zug_Start_Ziel_Bk_literal = Zug_Start_Ziel_Bk
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Zug_Start_Ziel_Bk_mit_Zs_1_literal = Zug_Start_Ziel_Bk_mit_Zs_1
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Zug_Start_Ziel_Bk_mit_Zs_7_literal = Zug_Start_Ziel_Bk_mit_Zs_7
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Zug_Start_Ziel_Ne_14_literal = Zug_Start_Ziel_Ne_14
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Zug_Start_Ziel_Ne_14_mit_Zs_1_literal = Zug_Start_Ziel_Ne_14_mit_Zs_1
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Zug_Start_Ziel_Ne_14_mit_Zs_7_literal = Zug_Start_Ziel_Ne_14_mit_Zs_7
+_UI_ENUMFiktivesSignalFunktion_ENUMFiktives_Signal_Funktion_Zug_Start_Ziel_Ne_14_mit_Zs_8_literal = Zug_Start_Ziel_Ne_14_mit_Zs_8
+_UI_ENUMFundamentArt_ENUMFundament_Art_Betonmonolith_groß_literal = Betonmonolith groß
+_UI_ENUMFundamentArt_ENUMFundament_Art_Betonmonolith_klein_literal = Betonmonolith klein
+_UI_ENUMFundamentArt_ENUMFundament_Art_groß_literal = groß
+_UI_ENUMFundamentArt_ENUMFundament_Art_klein_literal = klein
+_UI_ENUMFundamentArt_ENUMFundament_Art_Rammrohr_groß_literal = Rammrohr groß
+_UI_ENUMFundamentArt_ENUMFundament_Art_Rammrohr_klein_literal = Rammrohr klein
+_UI_ENUMFundamentArt_ENUMFundament_Art_sonstige_literal = sonstige
+_UI_ENUMFunktionOhneSignal_ENUMFunktion_Ohne_Signal_RS_literal = RS
+_UI_ENUMFunktionOhneSignal_ENUMFunktion_Ohne_Signal_sonstige_literal = sonstige
+_UI_ENUMFunktionOhneSignal_ENUMFunktion_Ohne_Signal_ZS_literal = ZS
+_UI_ENUMGeltungsbereich_ENUMGeltungsbereich_DS_literal = DS
+_UI_ENUMGeltungsbereich_ENUMGeltungsbereich_DV_literal = DV
+_UI_ENUMGeltungsbereich_ENUMGeltungsbereich_S_Bahn_B_literal = S-Bahn B
+_UI_ENUMGeltungsbereich_ENUMGeltungsbereich_S_Bahn_HH_literal = S-Bahn HH
+_UI_ENUMRahmenArt_ENUMRahmen_Art_Bezeichnungsschild_literal = Bezeichnungsschild
+_UI_ENUMRahmenArt_ENUMRahmen_Art_Blechtafel_literal = Blechtafel
+_UI_ENUMRahmenArt_ENUMRahmen_Art_Keramikkoerper_literal = Keramikkoerper
+_UI_ENUMRahmenArt_ENUMRahmen_Art_Schirm_literal = Schirm
+_UI_ENUMRahmenArt_ENUMRahmen_Art_sonstige_literal = sonstige
+_UI_ENUMRahmenArt_ENUMRahmen_Art_Zusatzanzeiger_literal = Zusatzanzeiger
+_UI_ENUMSignalArt_ENUMSignal_Art_andere_literal = andere
+_UI_ENUMSignalArt_ENUMSignal_Art_Hauptsignal_literal = Hauptsignal
+_UI_ENUMSignalArt_ENUMSignal_Art_Hauptsperrsignal_literal = Hauptsperrsignal
+_UI_ENUMSignalArt_ENUMSignal_Art_Hauptsperrsignal_Ne_14_Ls_literal = Hauptsperrsignal Ne 14 Ls
+_UI_ENUMSignalArt_ENUMSignal_Art_Mehrabschnittssignal_literal = Mehrabschnittssignal
+_UI_ENUMSignalArt_ENUMSignal_Art_Mehrabschnittssperrsignal_literal = Mehrabschnittssperrsignal
+_UI_ENUMSignalArt_ENUMSignal_Art_Sperrsignal_literal = Sperrsignal
+_UI_ENUMSignalArt_ENUMSignal_Art_Vorsignal_literal = Vorsignal
+_UI_ENUMSignalArt_ENUMSignal_Art_Vorsignalwiederholer_literal = Vorsignalwiederholer
+_UI_ENUMSignalArt_ENUMSignal_Art_Zugdeckungssignal_literal = Zugdeckungssignal
+_UI_ENUMSignalBefestigungsart_ENUMSignal_Befestigungsart_andere_literal = andere
+_UI_ENUMSignalBefestigungsart_ENUMSignal_Befestigungsart_Fundament_literal = Fundament
+_UI_ENUMSignalBefestigungsart_ENUMSignal_Befestigungsart_Mast_literal = Mast
+_UI_ENUMSignalBefestigungsart_ENUMSignal_Befestigungsart_Signalausleger_literal = Signalausleger
+_UI_ENUMSignalBefestigungsart_ENUMSignal_Befestigungsart_Signalbruecke_literal = Signalbruecke
+_UI_ENUMSignalBefestigungsart_ENUMSignal_Befestigungsart_Sonderkonstruktion_literal = Sonderkonstruktion
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Alleinstehendes_Zusatzsignal_literal = Alleinstehendes_Zusatzsignal
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_andere_literal = andere
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Ausfahr_Signal_literal = Ausfahr_Signal
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Ausfahr_Zwischen_Signal_literal = Ausfahr_Zwischen_Signal
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Block_Signal_literal = Block_Signal
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_BUE_Ueberwachungssignal_literal = BUE_Ueberwachungssignal
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Deckungs_Signal_literal = Deckungs_Signal
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Einfahr_Ausfahr_Signal_literal = Einfahr_Ausfahr_Signal
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Einfahr_Block_Signal_literal = Einfahr_Block_Signal
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Einfahr_Signal_literal = Einfahr_Signal
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Gruppenausfahr_Gruppenzwischen_Signal_literal = Gruppenausfahr_Gruppenzwischen_Signal
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Gruppenausfahr_Signal_literal = Gruppenausfahr_Signal
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Gruppenzwischen_Signal_literal = Gruppenzwischen_Signal
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Nachrueck_Signal_literal = Nachrueck_Signal
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Vorsignal_Vorsignalwiederholer_literal = Vorsignal_Vorsignalwiederholer
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Zugdeckungs_Signal_literal = Zugdeckungs_Signal
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Zug_Ziel_Signal_literal = Zug_Ziel_Signal
+_UI_ENUMSignalFunktion_ENUMSignal_Funktion_Zwischen_Signal_literal = Zwischen_Signal
+_UI_ENUMSignalsystem_ENUMSignalsystem_Hl_literal = Hl
+_UI_ENUMSignalsystem_ENUMSignalsystem_HV_literal = HV
+_UI_ENUMSignalsystem_ENUMSignalsystem_Ks_literal = Ks
+_UI_ENUMSignalsystem_ENUMSignalsystem_sonstige_literal = sonstige
+_UI_ENUMSignalsystem_ENUMSignalsystem_SV_literal = SV
+_UI_ENUMSonstigeZulaessigeAnordnung_ENUMSonstige_Zulaessige_Anordnung_Anordnung_des_Signals_rechts_am_Gleis_literal = Anordnung_des_Signals_rechts_am_Gleis
+_UI_ENUMSonstigeZulaessigeAnordnung_ENUMSonstige_Zulaessige_Anordnung_Anordnung_des_Signals_rechts_am_Gleis_ohne_Schachbretttafel_literal = Anordnung_des_Signals_rechts_am_Gleis_ohne_Schachbretttafel
+_UI_ENUMSonstigeZulaessigeAnordnung_ENUMSonstige_Zulaessige_Anordnung_Nichtgeltung_fuer_Fahrten_auf_dem_Gegengleis_literal = Nichtgeltung_fuer_Fahrten_auf_dem_Gegengleis
+_UI_ENUMStreuscheibeArt_ENUMStreuscheibe_Art_HG_literal = HG
+_UI_ENUMStreuscheibeArt_ENUMStreuscheibe_Art_HN_literal = HN
+_UI_ENUMStreuscheibeArt_ENUMStreuscheibe_Art_HRL_literal = HRL
+_UI_ENUMStreuscheibeArt_ENUMStreuscheibe_Art_LED_literal = LED
+_UI_ENUMStreuscheibeArt_ENUMStreuscheibe_Art_ORL_literal = ORL
+_UI_ENUMStreuscheibeArt_ENUMStreuscheibe_Art_sonstige_literal = sonstige
+_UI_ENUMStreuscheibeArt_ENUMStreuscheibe_Art_VRL_literal = VRL
+_UI_ENUMStreuscheibeBetriebsstellung_ENUMStreuscheibe_Betriebsstellung_HG1_literal = HG1
+_UI_ENUMStreuscheibeBetriebsstellung_ENUMStreuscheibe_Betriebsstellung_HG1_gw_literal = HG1_gw
+_UI_ENUMStreuscheibeBetriebsstellung_ENUMStreuscheibe_Betriebsstellung_HG2_literal = HG2
+_UI_ENUMStreuscheibeBetriebsstellung_ENUMStreuscheibe_Betriebsstellung_HG2_gw_literal = HG2_gw
+_UI_ENUMStreuscheibeBetriebsstellung_ENUMStreuscheibe_Betriebsstellung_HG3_literal = HG3
+_UI_ENUMStreuscheibeBetriebsstellung_ENUMStreuscheibe_Betriebsstellung_HG3_gw_literal = HG3_gw
+_UI_ENUMStreuscheibeBetriebsstellung_ENUMStreuscheibe_Betriebsstellung_HG4_literal = HG4
+_UI_ENUMStreuscheibeBetriebsstellung_ENUMStreuscheibe_Betriebsstellung_HG4_gw_literal = HG4_gw
+_UI_ENUMStreuscheibeBetriebsstellung_ENUMStreuscheibe_Betriebsstellung_HL_literal = HL
+_UI_ENUMStreuscheibeBetriebsstellung_ENUMStreuscheibe_Betriebsstellung_HR_literal = HR
+_UI_ENUMStreuscheibeBetriebsstellung_ENUMStreuscheibe_Betriebsstellung_OL_literal = OL
+_UI_ENUMStreuscheibeBetriebsstellung_ENUMStreuscheibe_Betriebsstellung_OR_literal = OR
+_UI_ENUMStreuscheibeBetriebsstellung_ENUMStreuscheibe_Betriebsstellung_sonstige_literal = sonstige
+_UI_ENUMStreuscheibeBetriebsstellung_ENUMStreuscheibe_Betriebsstellung_VL_literal = VL
+_UI_ENUMStreuscheibeBetriebsstellung_ENUMStreuscheibe_Betriebsstellung_VR_literal = VR
+_UI_ENUMTunnelsignal_ENUMTunnelsignal_mit_Dauernachtschaltung_literal = mit_Dauernachtschaltung
+_UI_ENUMTunnelsignal_ENUMTunnelsignal_nein_literal = nein
+_UI_ENUMTunnelsignal_ENUMTunnelsignal_ohne_Dauernachtschaltung_literal = ohne_Dauernachtschaltung
+_UI_ENUMLenkziffernstellen_ENUMLenkziffernstellen_0_literal = 0
+_UI_ENUMLenkziffernstellen_ENUMLenkziffernstellen_1_literal = 1
+_UI_ENUMZNStellen_ENUMZN_Stellen_5_literal = 5
+_UI_ENUMZNStellen_ENUMZN_Stellen_6_literal = 6
+_UI_ENUMAkustikAnbAnn_ENUMAkustik_Anb_Ann_5_s_literal = 5_s
+_UI_ENUMAkustikAnbAnn_ENUMAkustik_Anb_Ann_bis_Ankunft_Zug_literal = bis_Ankunft_Zug
+_UI_ENUMAkustikSonst_ENUMAkustik_Sonst_5_s_literal = 5_s
+_UI_ENUMAkustikSonst_ENUMAkustik_Sonst_keine_literal = keine
+_UI_ENUMBfKennung_ENUMBf_Kennung_20_literal = 20
+_UI_ENUMBfKennung_ENUMBf_Kennung_21_literal = 21
+_UI_ENUMBfKennung_ENUMBf_Kennung_22_literal = 22
+_UI_ENUMBfKennung_ENUMBf_Kennung_23_literal = 23
+_UI_ENUMBfKennung_ENUMBf_Kennung_24_literal = 24
+_UI_ENUMBfKennung_ENUMBf_Kennung_50_literal = 50
+_UI_ENUMBfKennung_ENUMBf_Kennung_51_literal = 51
+_UI_ENUMFunktionalitaetAnzeigefeld_ENUMFunktionalitaet_Anzeigefeld_Anbiete_Annahmefeld_literal = Anbiete_Annahmefeld
+_UI_ENUMFunktionalitaetAnzeigefeld_ENUMFunktionalitaet_Anzeigefeld_Meldeort_literal = Meldeort
+_UI_ENUMFunktionalitaetAnzeigefeld_ENUMFunktionalitaet_Anzeigefeld_sonstige_literal = sonstige
+_UI_ENUMFunktionalitaetAnzeigefeld_ENUMFunktionalitaet_Anzeigefeld_Spiegelfeld_literal = Spiegelfeld
+_UI_ENUMFunktionalitaetAnzeigefeld_ENUMFunktionalitaet_Anzeigefeld_Stapelfeld_literal = Stapelfeld
+_UI_ENUMFunktionalitaetAnzeigefeld_ENUMFunktionalitaet_Anzeigefeld_Voranzeigefeld_literal = Voranzeigefeld
+_UI_ENUMFunktionalitaetAnzeigefeld_ENUMFunktionalitaet_Anzeigefeld_Wandelfeld_literal = Wandelfeld
+_UI_ENUMZBSSchnittstelle_ENUMZBS_Schnittstelle_LOGEM_LGM_28_8_D1_literal = LOGEM_LGM_28_8_D1
+_UI_ENUMZBSSchnittstelle_ENUMZBS_Schnittstelle_NOKIA_ECM_FAST_14400_literal = NOKIA_ECM_FAST_14400
+_UI_ENUMZBSSchnittstelle_ENUMZBS_Schnittstelle_NOKIA_ECM_FAST_19200_literal = NOKIA_ECM_FAST_19200
+_UI_ENUMZBSSchnittstelle_ENUMZBS_Schnittstelle_sonstige_literal = sonstige
+_UI_ENUMZNAnlagentyp_ENUMZN_Anlagentyp_sonstige_literal = sonstige
+_UI_ENUMZNAnlagentyp_ENUMZN_Anlagentyp_ZN_B950_literal = ZN_B950
+_UI_ENUMZNAnlagentyp_ENUMZN_Anlagentyp_ZN_SuB_literal = ZN_SuB
+_UI_ENUMZNAnlagentyp_ENUMZN_Anlagentyp_ZNE_L2000_literal = ZNE_L2000
+_UI_ENUMZNAnlagentyp_ENUMZN_Anlagentyp_ZNL_2000_literal = ZNL_2000
+_UI_ENUMZNAnlagentyp_ENUMZN_Anlagentyp_ZNL_800_literal = ZNL_800
+_UI_ENUMZNAnlagentyp_ENUMZN_Anlagentyp_ZNP_801_literal = ZNP_801
+_UI_ENUMZNAnlagentyp_ENUMZN_Anlagentyp_ZNS_801_literal = ZNS_801
+_UI_ENUMZNAnlagentyp_ENUMZN_Anlagentyp_ZNS_901_literal = ZNS_901
+_UI_ENUMZNAnlagentyp_ENUMZN_Anlagentyp_ZNS_901R_literal = ZNS_901R
+_UI_ENUMZNAnzeigefeldLoeschkriterium_ENUMZN_Anzeigefeld_Loeschkriterium_automatisch_nach_30_s_literal = automatisch_nach_30_s
+_UI_ENUMZNAnzeigefeldLoeschkriterium_ENUMZN_Anzeigefeld_Loeschkriterium_Fahrstrasse_aufgeloest_literal = Fahrstrasse_aufgeloest
+_UI_ENUMZNAnzeigefeldLoeschkriterium_ENUMZN_Anzeigefeld_Loeschkriterium_Fortschaltung_beim_Nachbarn_literal = Fortschaltung_beim_Nachbarn
+_UI_ENUMZNAnzeigefeldLoeschkriterium_ENUMZN_Anzeigefeld_Loeschkriterium_haendisch_literal = haendisch
+_UI_ENUMZNAnzeigefeldLoeschkriterium_ENUMZN_Anzeigefeld_Loeschkriterium_Rueckblock_eingegangen_literal = Rueckblock_eingegangen
+_UI_ENUMZNAnzeigefeldLoeschkriterium_ENUMZN_Anzeigefeld_Loeschkriterium_sonstige_literal = sonstige
+_UI_ENUMZNModem_ENUMZN_Modem_LOGEM_1200_MD_literal = LOGEM_1200_MD
+_UI_ENUMZNModem_ENUMZN_Modem_NOKIA_1200_SE_literal = NOKIA_1200_SE
+_UI_ENUMZNModem_ENUMZN_Modem_SCADA_NG_literal = SCADA_NG
+_UI_ENUMZNModem_ENUMZN_Modem_sonstige_literal = sonstige
+_UI_ENUMZNSchaltkriterium_ENUMZN_Schaltkriterium_Gleis_belegen_literal = Gleis_belegen
+_UI_ENUMZNSchaltkriterium_ENUMZN_Schaltkriterium_Gleis_belegen_und_davor_freifahren_literal = Gleis_belegen_und_davor_freifahren
+_UI_ENUMZNSchaltkriterium_ENUMZN_Schaltkriterium_Gleis_freifahren_literal = Gleis_freifahren
+_UI_ENUMZNSchaltkriterium_ENUMZN_Schaltkriterium_kein_literal = kein
+_UI_ENUMZNSchaltkriterium_ENUMZN_Schaltkriterium_manuell_literal = manuell
+_UI_ENUMZNSchaltkriterium_ENUMZN_Schaltkriterium_Signalhaltfall_Hauptsignal_literal = Signalhaltfall_Hauptsignal
+_UI_ENUMZNSchaltkriterium_ENUMZN_Schaltkriterium_Signalhaltfall_Rangiersignal_literal = Signalhaltfall_Rangiersignal
+_UI_ENUMZNSchaltkriterium_ENUMZN_Schaltkriterium_sonstige_literal = sonstige
+_UI_ENUMFuellung_ENUMFuellung_doppelte_Schraffur_literal = doppelte Schraffur
+_UI_ENUMFuellung_ENUMFuellung_einfache_Schraffur_literal = einfache Schraffur
+_UI_ENUMFuellung_ENUMFuellung_einfache_Schraffur_gestrichelt_literal = einfache Schraffur gestrichelt
+_UI_ENUMFuellung_ENUMFuellung_sonstige_literal = sonstige
+_UI_ENUMLageplanArt_ENUMLageplan_Art_BU_Kreuzungsplan_LST_literal = BÜ Kreuzungsplan LST
+_UI_ENUMLageplanArt_ENUMLageplan_Art_BU_Sicherungstechn__Lage__und_Kabelübersichtsplan_literal = BÜ Sicherungstechn. Lage- und Kabelübersichtsplan
+_UI_ENUMLageplanArt_ENUMLageplan_Art_Gleisfreimeldeplan_für_Gleisstromkreise_literal = Gleisfreimeldeplan für Gleisstromkreise
+_UI_ENUMLageplanArt_ENUMLageplan_Art_Kabellageplan_literal = Kabellageplan
+_UI_ENUMLageplanArt_ENUMLageplan_Art_Kabelübersichtsplan_literal = Kabelübersichtsplan
+_UI_ENUMLageplanArt_ENUMLageplan_Art_Sicherungstechnischer_Lageplan_literal = Sicherungstechnischer Lageplan
+_UI_ENUMLageplanArt_ENUMLageplan_Art_Sicherungstechnischer_Ubersichtsplan_literal = Sicherungstechnischer Übersichtsplan
+_UI_ENUMLageplanArt_ENUMLageplan_Art_sonstige_literal = sonstige
+_UI_ENUMLageplanArt_ENUMLageplan_Art_Stammkabelübersichtsplan_literal = Stammkabelübersichtsplan
+_UI_ENUMLageplanArt_ENUMLageplan_Art_ZLV_Bus_Ubersichtsplan_literal = ZLV-Bus-Übersichtsplan
+_UI_ENUMLageplanArt_ENUMLageplan_Art_ZN_Ubersichtsplan_literal = ZN-Übersichtsplan
+_UI_ENUMLinieArt_ENUMLinie_Art_Punktlinie_literal = Punktlinie
+_UI_ENUMLinieArt_ENUMLinie_Art_Strich_Dreipunktlinie_literal = Strich-Dreipunktlinie
+_UI_ENUMLinieArt_ENUMLinie_Art_Strich_Punktlinie_literal = Strich-Punktlinie
+_UI_ENUMLinieArt_ENUMLinie_Art_Strich_Strichlinie_literal = Strich-Strichlinie
+_UI_ENUMLinieArt_ENUMLinie_Art_Strich_Zweipunktlinie_literal = Strich-Zweipunktlinie
+_UI_ENUMLinieArt_ENUMLinie_Art_Strich_Zweistrichlinie_literal = Strich-Zweistrichlinie
+_UI_ENUMLinieArt_ENUMLinie_Art_Strichlinie_literal = Strichlinie
+_UI_ENUMLinieArt_ENUMLinie_Art_Strichlinie_lang_literal = Strichlinie lang
+_UI_ENUMLinieArt_ENUMLinie_Art_Volllinie_literal = Volllinie
+_UI_ENUMLinieArt_ENUMLinie_Art_Zweistrich_Dreipunktlinie_literal = Zweistrich-Dreipunktlinie
+_UI_ENUMLinieArt_ENUMLinie_Art_Zweistrich_Punktlinie_literal = Zweistrich-Punktlinie
+_UI_ENUMLinieArt_ENUMLinie_Art_Zweistrich_Zweipunktlinie_literal = Zweistrich-Zweipunktlinie
+_UI_ENUMLinieSubart_ENUMLinie_Subart_breit_literal = breit
+_UI_ENUMLinieSubart_ENUMLinie_Subart_extrabreit_literal = extrabreit
+_UI_ENUMLinieSubart_ENUMLinie_Subart_schmal_literal = schmal
+_UI_TemporaryIntegration_primaryPlanningIDReferences_feature = Primary Planning ID References
+_UI_TemporaryIntegration_primaryLayout_feature = Primary Layout
+_UI_TemporaryIntegration_secondaryLayout_feature = Secondary Layout
+_UI_TemporaryIntegration_compositeyout_feature = Compositeyout
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/plugin.xml b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/plugin.xml
new file mode 100644
index 0000000000..fb82c4097c
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/plugin.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/pom.xml b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/pom.xml
new file mode 100644
index 0000000000..1db30b6834
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/pom.xml
@@ -0,0 +1,17 @@
+
+
+ 4.0.0
+
+ org.eclipse.set
+ org.eclipse.set.model.temporaryintegration.edit
+ 2.6.0-SNAPSHOT
+ eclipse-plugin
+
+
+ ../../..
+ org.eclipse.set
+ org.eclipse.set.releng.parent
+ 2.6.0-SNAPSHOT
+
+
\ No newline at end of file
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/src/org/eclipse/set/model/temporaryintegration/provider/TemporaryIntegrationEditPlugin.java b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/src/org/eclipse/set/model/temporaryintegration/provider/TemporaryIntegrationEditPlugin.java
new file mode 100644
index 0000000000..8cfddf9c3c
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/src/org/eclipse/set/model/temporaryintegration/provider/TemporaryIntegrationEditPlugin.java
@@ -0,0 +1,97 @@
+/**
+ * Copyright (c) 2026 DB InfraGO AG and others
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License 2.0 which is available at
+ * https://www.eclipse.org/legal/epl-2.0.
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+package org.eclipse.set.model.temporaryintegration.provider;
+
+import org.eclipse.emf.common.EMFPlugin;
+
+import org.eclipse.emf.common.util.ResourceLocator;
+
+import org.eclipse.set.model.planpro.PlanPro.provider.PlanProEditPlugin;
+
+import org.eclipse.set.model.simplemerge.provider.SimplemergeEditPlugin;
+
+/**
+ * This is the central singleton for the TemporaryIntegration edit plugin.
+ *
+ * @generated
+ */
+public final class TemporaryIntegrationEditPlugin extends EMFPlugin {
+ /**
+ * Keep track of the singleton.
+ *
+ * @generated
+ */
+ public static final TemporaryIntegrationEditPlugin INSTANCE = new TemporaryIntegrationEditPlugin();
+
+ /**
+ * Keep track of the singleton.
+ *
+ * @generated
+ */
+ private static Implementation plugin;
+
+ /**
+ * Create the instance.
+ *
+ * @generated
+ */
+ public TemporaryIntegrationEditPlugin() {
+ super(new ResourceLocator[] { SimplemergeEditPlugin.INSTANCE,
+ PlanProEditPlugin.INSTANCE, });
+ }
+
+ /**
+ * Returns the singleton instance of the Eclipse plugin.
+ *
+ * @return the singleton instance.
+ * @generated
+ */
+ @Override
+ public ResourceLocator getPluginResourceLocator() {
+ return plugin;
+ }
+
+ /**
+ * Returns the singleton instance of the Eclipse plugin.
+ *
+ * @return the singleton instance.
+ * @generated
+ */
+ public static Implementation getPlugin() {
+ return plugin;
+ }
+
+ /**
+ * The actual implementation of the Eclipse Plugin.
+ *
+ * @generated
+ */
+ public static class Implementation extends EclipsePlugin {
+ /**
+ * Creates an instance.
+ *
+ * @generated
+ */
+ public Implementation() {
+ super();
+
+ // Remember the static instance.
+ //
+ plugin = this;
+ }
+ }
+
+}
diff --git a/java/bundles/org.eclipse.set.model.temporaryintegration.edit/src/org/eclipse/set/model/temporaryintegration/provider/TemporaryIntegrationItemProvider.java b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/src/org/eclipse/set/model/temporaryintegration/provider/TemporaryIntegrationItemProvider.java
new file mode 100644
index 0000000000..0ada423197
--- /dev/null
+++ b/java/bundles/org.eclipse.set.model.temporaryintegration.edit/src/org/eclipse/set/model/temporaryintegration/provider/TemporaryIntegrationItemProvider.java
@@ -0,0 +1,390 @@
+/**
+ * Copyright (c) 2026 DB InfraGO AG and others
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License 2.0 which is available at
+ * https://www.eclipse.org/legal/epl-2.0.
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ */
+package org.eclipse.set.model.temporaryintegration.provider;
+
+import java.util.Collection;
+import java.util.List;
+
+import org.eclipse.emf.common.notify.AdapterFactory;
+import org.eclipse.emf.common.notify.Notification;
+
+import org.eclipse.emf.common.util.ResourceLocator;
+
+import org.eclipse.emf.ecore.EStructuralFeature;
+
+import org.eclipse.emf.edit.provider.ComposeableAdapterFactory;
+import org.eclipse.emf.edit.provider.IEditingDomainItemProvider;
+import org.eclipse.emf.edit.provider.IItemLabelProvider;
+import org.eclipse.emf.edit.provider.IItemPropertyDescriptor;
+import org.eclipse.emf.edit.provider.IItemPropertySource;
+import org.eclipse.emf.edit.provider.IStructuredItemContentProvider;
+import org.eclipse.emf.edit.provider.ITreeItemContentProvider;
+import org.eclipse.emf.edit.provider.ItemPropertyDescriptor;
+import org.eclipse.emf.edit.provider.ItemProviderAdapter;
+import org.eclipse.emf.edit.provider.ViewerNotification;
+
+import org.eclipse.set.model.planpro.Layoutinformationen.LayoutinformationenFactory;
+
+import org.eclipse.set.model.planpro.PlanPro.PlanProFactory;
+
+import org.eclipse.set.model.simplemerge.SimplemergeFactory;
+
+import org.eclipse.set.model.temporaryintegration.TemporaryIntegration;
+import org.eclipse.set.model.temporaryintegration.TemporaryintegrationPackage;
+
+/**
+ * This is the item provider adapter for a
+ * {@link org.eclipse.set.model.temporaryintegration.TemporaryIntegration}
+ * object.
+ *
+ * @generated
+ */
+public class TemporaryIntegrationItemProvider extends ItemProviderAdapter
+ implements IEditingDomainItemProvider, IStructuredItemContentProvider,
+ ITreeItemContentProvider, IItemLabelProvider, IItemPropertySource {
+ /**
+ * This constructs an instance from a factory and a notifier.
+ *
+ * @generated
+ */
+ public TemporaryIntegrationItemProvider(AdapterFactory adapterFactory) {
+ super(adapterFactory);
+ }
+
+ /**
+ * This returns the property descriptors for the adapted class.
+ *
+ * @generated
+ */
+ @Override
+ public List getPropertyDescriptors(Object object) {
+ if (itemPropertyDescriptors == null) {
+ super.getPropertyDescriptors(object);
+
+ addPrimaryPlanningFilenamePropertyDescriptor(object);
+ addPrimaryPlanningWasValidPropertyDescriptor(object);
+ addSecondaryPlanningFilenamePropertyDescriptor(object);
+ addSecondaryPlanningWasValidPropertyDescriptor(object);
+ addIntegrationDirectoryPropertyDescriptor(object);
+ }
+ return itemPropertyDescriptors;
+ }
+
+ /**
+ * This adds a property descriptor for the Primary Planning Filename
+ * feature.
+ *
+ * @generated
+ */
+ protected void addPrimaryPlanningFilenamePropertyDescriptor(Object object) {
+ itemPropertyDescriptors.add(createItemPropertyDescriptor(
+ ((ComposeableAdapterFactory) adapterFactory)
+ .getRootAdapterFactory(),
+ getResourceLocator(),
+ getString(
+ "_UI_TemporaryIntegration_primaryPlanningFilename_feature"),
+ getString("_UI_PropertyDescriptor_description",
+ "_UI_TemporaryIntegration_primaryPlanningFilename_feature",
+ "_UI_TemporaryIntegration_type"),
+ TemporaryintegrationPackage.Literals.TEMPORARY_INTEGRATION__PRIMARY_PLANNING_FILENAME,
+ true, false, false, ItemPropertyDescriptor.GENERIC_VALUE_IMAGE,
+ null, null));
+ }
+
+ /**
+ * This adds a property descriptor for the Primary Planning Was Valid
+ * feature.
+ *
+ * @generated
+ */
+ protected void addPrimaryPlanningWasValidPropertyDescriptor(Object object) {
+ itemPropertyDescriptors.add(createItemPropertyDescriptor(
+ ((ComposeableAdapterFactory) adapterFactory)
+ .getRootAdapterFactory(),
+ getResourceLocator(),
+ getString(
+ "_UI_TemporaryIntegration_primaryPlanningWasValid_feature"),
+ getString("_UI_PropertyDescriptor_description",
+ "_UI_TemporaryIntegration_primaryPlanningWasValid_feature",
+ "_UI_TemporaryIntegration_type"),
+ TemporaryintegrationPackage.Literals.TEMPORARY_INTEGRATION__PRIMARY_PLANNING_WAS_VALID,
+ true, false, false, ItemPropertyDescriptor.BOOLEAN_VALUE_IMAGE,
+ null, null));
+ }
+
+ /**
+ * This adds a property descriptor for the Secondary Planning Filename
+ * feature.
+ *
+ * @generated
+ */
+ protected void addSecondaryPlanningFilenamePropertyDescriptor(
+ Object object) {
+ itemPropertyDescriptors.add(createItemPropertyDescriptor(
+ ((ComposeableAdapterFactory) adapterFactory)
+ .getRootAdapterFactory(),
+ getResourceLocator(),
+ getString(
+ "_UI_TemporaryIntegration_secondaryPlanningFilename_feature"),
+ getString("_UI_PropertyDescriptor_description",
+ "_UI_TemporaryIntegration_secondaryPlanningFilename_feature",
+ "_UI_TemporaryIntegration_type"),
+ TemporaryintegrationPackage.Literals.TEMPORARY_INTEGRATION__SECONDARY_PLANNING_FILENAME,
+ true, false, false, ItemPropertyDescriptor.GENERIC_VALUE_IMAGE,
+ null, null));
+ }
+
+ /**
+ * This adds a property descriptor for the Secondary Planning Was Valid
+ * feature.
+ *
+ * @generated
+ */
+ protected void addSecondaryPlanningWasValidPropertyDescriptor(
+ Object object) {
+ itemPropertyDescriptors.add(createItemPropertyDescriptor(
+ ((ComposeableAdapterFactory) adapterFactory)
+ .getRootAdapterFactory(),
+ getResourceLocator(),
+ getString(
+ "_UI_TemporaryIntegration_secondaryPlanningWasValid_feature"),
+ getString("_UI_PropertyDescriptor_description",
+ "_UI_TemporaryIntegration_secondaryPlanningWasValid_feature",
+ "_UI_TemporaryIntegration_type"),
+ TemporaryintegrationPackage.Literals.TEMPORARY_INTEGRATION__SECONDARY_PLANNING_WAS_VALID,
+ true, false, false, ItemPropertyDescriptor.BOOLEAN_VALUE_IMAGE,
+ null, null));
+ }
+
+ /**
+ * This adds a property descriptor for the Integration Directory feature.
+ *
+ *
+ * @generated
+ */
+ protected void addIntegrationDirectoryPropertyDescriptor(Object object) {
+ itemPropertyDescriptors.add(createItemPropertyDescriptor(
+ ((ComposeableAdapterFactory) adapterFactory)
+ .getRootAdapterFactory(),
+ getResourceLocator(),
+ getString(
+ "_UI_TemporaryIntegration_integrationDirectory_feature"),
+ getString("_UI_PropertyDescriptor_description",
+ "_UI_TemporaryIntegration_integrationDirectory_feature",
+ "_UI_TemporaryIntegration_type"),
+ TemporaryintegrationPackage.Literals.TEMPORARY_INTEGRATION__INTEGRATION_DIRECTORY,
+ true, false, false, ItemPropertyDescriptor.GENERIC_VALUE_IMAGE,
+ null, null));
+ }
+
+ /**
+ * This specifies how to implement {@link #getChildren} and is used to
+ * deduce an appropriate feature for an
+ * {@link org.eclipse.emf.edit.command.AddCommand},
+ * {@link org.eclipse.emf.edit.command.RemoveCommand} or
+ * {@link org.eclipse.emf.edit.command.MoveCommand} in
+ * {@link #createCommand}.
+ *
+ * @generated
+ */
+ @Override
+ public Collection extends EStructuralFeature> getChildrenFeatures(
+ Object object) {
+ if (childrenFeatures == null) {
+ super.getChildrenFeatures(object);
+ childrenFeatures.add(
+ TemporaryintegrationPackage.Literals.TEMPORARY_INTEGRATION__PRIMARY_PLANNING);
+ childrenFeatures.add(
+ TemporaryintegrationPackage.Literals.TEMPORARY_INTEGRATION__PRIMARY_LAYOUT);
+ childrenFeatures.add(
+ TemporaryintegrationPackage.Literals.TEMPORARY_INTEGRATION__SECONDARY_PLANNING);
+ childrenFeatures.add(
+ TemporaryintegrationPackage.Literals.TEMPORARY_INTEGRATION__SECONDARY_LAYOUT);
+ childrenFeatures.add(
+ TemporaryintegrationPackage.Literals.TEMPORARY_INTEGRATION__COMPOSITE_PLANNING);
+ childrenFeatures.add(
+ TemporaryintegrationPackage.Literals.TEMPORARY_INTEGRATION__COMPOSITEYOUT);
+ childrenFeatures.add(
+ TemporaryintegrationPackage.Literals.TEMPORARY_INTEGRATION__COMPARISON_INITIAL_STATE);
+ childrenFeatures.add(
+ TemporaryintegrationPackage.Literals.TEMPORARY_INTEGRATION__COMPARISON_FINAL_STATE);
+ }
+ return childrenFeatures;
+ }
+
+ /**
+ *
+ *
+ * @generated
+ */
+ @Override
+ protected EStructuralFeature getChildFeature(Object object, Object child) {
+ // Check the type of the specified child object and return the proper
+ // feature to use for
+ // adding (see {@link AddCommand}) it as a child.
+
+ return super.getChildFeature(object, child);
+ }
+
+ /**
+ * This returns TemporaryIntegration.gif.
+ *
+ * @generated
+ */
+ @Override
+ public Object getImage(Object object) {
+ return overlayImage(object, getResourceLocator()
+ .getImage("full/obj16/TemporaryIntegration"));
+ }
+
+ /**
+ * This returns the label text for the adapted class.
+ *
+ * @generated
+ */
+ @Override
+ public String getText(Object object) {
+ String label = ((TemporaryIntegration) object)
+ .getPrimaryPlanningFilename();
+ return label == null || label.length() == 0
+ ? getString("_UI_TemporaryIntegration_type")
+ : getString("_UI_TemporaryIntegration_type") + " " + label;
+ }
+
+ /**
+ * This handles model notifications by calling {@link #updateChildren} to
+ * update any cached children and by creating a viewer notification, which
+ * it passes to {@link #fireNotifyChanged}.
+ *
+ * @generated
+ */
+ @Override
+ public void notifyChanged(Notification notification) {
+ updateChildren(notification);
+
+ switch (notification.getFeatureID(TemporaryIntegration.class)) {
+ case TemporaryintegrationPackage.TEMPORARY_INTEGRATION__PRIMARY_PLANNING_FILENAME:
+ case TemporaryintegrationPackage.TEMPORARY_INTEGRATION__PRIMARY_PLANNING_WAS_VALID:
+ case TemporaryintegrationPackage.TEMPORARY_INTEGRATION__SECONDARY_PLANNING_FILENAME:
+ case TemporaryintegrationPackage.TEMPORARY_INTEGRATION__SECONDARY_PLANNING_WAS_VALID:
+ case TemporaryintegrationPackage.TEMPORARY_INTEGRATION__INTEGRATION_DIRECTORY:
+ fireNotifyChanged(new ViewerNotification(notification,
+ notification.getNotifier(), false, true));
+ return;
+ case TemporaryintegrationPackage.TEMPORARY_INTEGRATION__PRIMARY_PLANNING:
+ case TemporaryintegrationPackage.TEMPORARY_INTEGRATION__PRIMARY_LAYOUT:
+ case TemporaryintegrationPackage.TEMPORARY_INTEGRATION__SECONDARY_PLANNING:
+ case TemporaryintegrationPackage.TEMPORARY_INTEGRATION__SECONDARY_LAYOUT:
+ case TemporaryintegrationPackage.TEMPORARY_INTEGRATION__COMPOSITE_PLANNING:
+ case TemporaryintegrationPackage.TEMPORARY_INTEGRATION__COMPOSITEYOUT:
+ case TemporaryintegrationPackage.TEMPORARY_INTEGRATION__COMPARISON_INITIAL_STATE:
+ case TemporaryintegrationPackage.TEMPORARY_INTEGRATION__COMPARISON_FINAL_STATE:
+ fireNotifyChanged(new ViewerNotification(notification,
+ notification.getNotifier(), true, false));
+ return;
+ }
+ super.notifyChanged(notification);
+ }
+
+ /**
+ * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s
+ * describing the children that can be created under this object.
+ *
+ * @generated
+ */
+ @Override
+ protected void collectNewChildDescriptors(
+ Collection