コード例 #1
0
 public T4RootTemplateKindProvider(
     [NotNull] IT4TemplateKindProvider templateKindProvider,
     [NotNull] IT4FileDependencyGraph graph
     )
 {
     TemplateKindProvider = templateKindProvider;
     Graph = graph;
 }
 public T4PreprocessedCSharpCodeBehindGenerationInfoCollector(
     [NotNull] ISolution solution,
     [NotNull] IPsiSourceFile root,
     [NotNull] IT4FileDependencyGraph graph,
     bool isRootFile
     ) : base(solution)
 {
     Root       = root;
     Graph      = graph;
     IsRootFile = isRootFile;
 }
コード例 #3
0
 public T4OutputExtensionFrontendNotifier(
     Lifetime lifetime,
     [NotNull] IT4FileGraphNotifier notifier,
     [NotNull] DocumentManager documentManager,
     [NotNull] IT4FileDependencyGraph graph,
     [NotNull] IPsiServices services,
     [NotNull] IPsiCachesState state,
     [NotNull] IPsiFiles psiFiles
     ) : base(lifetime, notifier, services, state)
 {
     DocumentManager = documentManager;
     Graph           = graph;
     PsiFiles        = psiFiles;
 }