public BuildAgentsDiffTab()

in server/src/jetbrains/buildServer/agentsDiff/BuildAgentsDiffTab.java [29:40]


  public BuildAgentsDiffTab(@NotNull PagePlaces pagePlaces,
                            @NotNull PluginDescriptor pluginDescriptor,
                            @NotNull AgentTypeStorage agentTypeStorage,
                            @NotNull BuildAgentManagerEx buildAgentManager) {
    super(pagePlaces, PlaceId.AGENTS_TAB, "diff", pluginDescriptor.getPluginResourcesPath("agentsDiffTab.jsp"), "Diff");
    myBuildAgentManager = buildAgentManager;
    myAgentTypeStorage = agentTypeStorage;
    addCssFile(pluginDescriptor.getPluginResourcesPath("agentsDiff.css"));
    addJsFile(pluginDescriptor.getPluginResourcesPath("agentsDiff.js"));
    addJsFile(pluginDescriptor.getPluginResourcesPath("libs/diff_match_patch.js"));
    register();
  }