Changeset 1231 for trunk-eclipse

Show
Ignore:
Timestamp:
10/28/08 10:33:25 (23 months ago)
Author:
koezleal
Message:

1.0.9 version

Location:
trunk-eclipse/art-core
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk-eclipse/art-core/META-INF/MANIFEST.MF

    r1210 r1231  
    33Bundle-Name: ART Core Plug-in 
    44Bundle-SymbolicName: de.verit.art.core;singleton:=true 
    5 Bundle-Version: 1.0.8 
     5Bundle-Version: 1.0.9 
    66Bundle-Activator: de.verit.art.core.ArtCore 
    77Bundle-Vendor: verit Informationssysteme GmbH 
  • trunk-eclipse/art-core/src/java/de/verit/art/core/model/RequirementComponent.java

    r1226 r1231  
    133133                                for (Attribute attribute : (EList<Attribute>) entity 
    134134                                                .getAttribute()) { 
    135                                         if (attribute.getObjectreference() != null) { 
     135                                        if (attribute.getObjectreference() != null && attribute.getObjectreference().getRef() != null) { 
    136136                                                String id = attribute.getObjectreference().getRef() 
    137137                                                                .getId(); 
    138                                                 referenceNames.add(id); 
     138                                                if (id != null) { 
     139                                                        referenceNames.add(id); 
     140                                                } 
    139141                                        } 
    140142                                }