Index: trunk/autoquest-plugin-uml/src/main/java/de/ugoe/cs/autoquest/plugin/uml/UMLInteractionCreator.java
===================================================================
--- trunk/autoquest-plugin-uml/src/main/java/de/ugoe/cs/autoquest/plugin/uml/UMLInteractionCreator.java	(revision 2010)
+++ trunk/autoquest-plugin-uml/src/main/java/de/ugoe/cs/autoquest/plugin/uml/UMLInteractionCreator.java	(revision 2011)
@@ -482,5 +482,4 @@
             else if (prop.getType() instanceof DataType) {
                 if( isXSDSequence(prop.getType()) ) { // XSD sequence, no real type
-                    System.out.println(SOAPUtils.getChildNodeNames(currentNode));
                     List<String> childNames = SOAPUtils.getChildNodeNames(currentNode);
                     List<org.w3c.dom.Element> childNodes = SOAPUtils.getChildElements(currentNode);
@@ -550,5 +549,4 @@
                             } 
                         }
-                        System.out.println(prop.getName() + " " + sequenceIsMatch);
                     }
                 }
@@ -697,5 +695,7 @@
                 Console.traceln(Level.SEVERE, "could not create literal for primitive type: " +
                     prop.getType().getName());
-                throw new RuntimeException("unknown primitive type: " + prop.getType().getName());
+                Console.traceln(Level.SEVERE, "attribute is ignored!");
+                // TODO
+                //throw new RuntimeException("unknown primitive type: " + prop.getType().getName());
             }
         }
@@ -747,5 +747,4 @@
             if( attributeValue!=null ) {
                 value.setInstance(((Enumeration) prop.getType()).getOwnedLiteral(attributeValue));
-                System.out.println("foo");
             } else {
                 throw new RuntimeException("cannot create enumeration literal with dummy value");
Index: trunk/autoquest-plugin-uml/src/main/java/de/ugoe/cs/autoquest/plugin/uml/UMLUtils.java
===================================================================
--- trunk/autoquest-plugin-uml/src/main/java/de/ugoe/cs/autoquest/plugin/uml/UMLUtils.java	(revision 2010)
+++ trunk/autoquest-plugin-uml/src/main/java/de/ugoe/cs/autoquest/plugin/uml/UMLUtils.java	(revision 2011)
@@ -759,5 +759,7 @@
         final Set<Property> properties = new HashSet<>();
         for (Property property : testContext.getAllAttributes()) {
-            if (property.getType().getAppliedStereotypes().contains(utpTestComponent)) {
+            // TODO once all models are update the first condition should be removed
+            if (property.getType().getAppliedStereotypes().contains(utpTestComponent) ||
+                property.getType().getApplicableStereotypes().contains(utpTestComponent)) {
                 properties.add(property);
             }
