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

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