internal SetDocumentationLongDescriptionCommand(EFDocumentableItem efElement, string longDescriptionText)
        {
            Debug.Assert(efElement != null, "efElement should not be null");
            Debug.Assert(efElement.HasDocumentationElement, "SetDocumentationSummary not supported for this EFElement");

            _efElement           = efElement;
            _longDescriptionText = longDescriptionText;
        }
 public DocumentationDescriptor(EFDocumentableItem efElement)
 {
     Debug.Assert(efElement.HasDocumentationElement, "element does not have documentation element");
     _efElement  = efElement;
     _isReadOnly = IsCsdlElement(_efElement);
 }