public CodeCompletionDataBase(CodeCompletionBase codeCompletion, string text, string description)
 {
     CodeCompletion = codeCompletion;
     Text           = text;
     Description    = description;
 }
Esempio n. 2
0
 public JQueryCodeCompletionData(CodeCompletionBase codeCompletion, Entry entry) : base(codeCompletion, entry.Name)
 {
     _entry = entry;
 }
 public CodeCompletionDataBase(CodeCompletionBase codeCompletion, string text)
 {
     CodeCompletion = codeCompletion;
     Text           = text;
 }