@Override
 public Set<NabuccoProperty> getProperties() {
   Set<NabuccoProperty> properties = super.getProperties();
   properties.add(super.createProperty(Address.getPropertyDescriptor(OWNER), this.owner, null));
   properties.add(
       super.createProperty(Address.getPropertyDescriptor(DESCRIPTION), this.description, null));
   properties.add(super.createProperty(Address.getPropertyDescriptor(TYPE), this.getType(), null));
   properties.add(
       super.createProperty(
           Address.getPropertyDescriptor(STATUSTYPE), this.getStatusType(), null));
   properties.add(
       super.createProperty(Address.getPropertyDescriptor(FUNCTIONALID), this.functionalId, null));
   properties.add(
       super.createProperty(
           Address.getPropertyDescriptor(FUNCTIONALTYPE), this.getFunctionalType(), null));
   return properties;
 }