コード例 #1
0
 /**
  * {@inheritDoc}
  *
  * @see
  *     org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#updatePart(org.eclipse.emf.common.notify.Notification)
  */
 public void updatePart(Notification msg) {
   super.updatePart(msg);
   if (editingPart.isVisible()) {
     NotesPropertiesEditionPart notesPart = (NotesPropertiesEditionPart) editingPart;
     if (SACMPackage.eINSTANCE.getModelElement_TaggedValue().equals(msg.getFeature())
         && isAccessible(EvidenceViewsRepository.Notes.Properties.taggedValue))
       notesPart.updateTaggedValue();
     if (SACMPackage.eINSTANCE.getModelElement_Annotation().equals(msg.getFeature())
         && isAccessible(EvidenceViewsRepository.Notes.Properties.annotation))
       notesPart.updateAnnotation();
   }
 }