Changeset 1231 for trunk-eclipse/art-core/src/java/de/verit/art/core/model/RequirementComponent.java
- Timestamp:
- 10/28/08 10:33:25 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk-eclipse/art-core/src/java/de/verit/art/core/model/RequirementComponent.java
r1226 r1231 133 133 for (Attribute attribute : (EList<Attribute>) entity 134 134 .getAttribute()) { 135 if (attribute.getObjectreference() != null ) {135 if (attribute.getObjectreference() != null && attribute.getObjectreference().getRef() != null) { 136 136 String id = attribute.getObjectreference().getRef() 137 137 .getId(); 138 referenceNames.add(id); 138 if (id != null) { 139 referenceNames.add(id); 140 } 139 141 } 140 142 }
