List of usage examples for com.intellij.openapi.application ApplicationStarter interface-usage
From source file com.intellij.codeInspection.AbstractInspectionToolStarter.java
/** * @author Roman.Chernyatchik */ @SuppressWarnings("UseOfSystemOutOrSystemErr") public abstract class AbstractInspectionToolStarter implements ApplicationStarter { protected InspectionApplication myApplication;
From source file com.intellij.codeInspection.InspectionMain.java
public class InspectionMain implements ApplicationStarter { private InspectionApplication myApplication; @Override public String getCommandName() { return "inspect";
From source file com.intellij.ide.ui.search.TraverseUIStarter.java
/** * Used by Installer's build buildSearchableOptions step. In order to run locally use TraverseUi configuration. * Pass corresponding -Didea.platform.prefix=YOUR_IDE_PREFIX to vm options and choose main_YOUR_IDE module */ @SuppressWarnings({ "CallToPrintStackTrace", "SynchronizeOnThis" }) public class TraverseUIStarter implements ApplicationStarter {
From source file com.sixrr.metrics.offline.MetricsCommandLine.java
public class MetricsCommandLine implements ApplicationStarter { private static final Logger LOG = Logger.getInstance("MetricsReloaded"); @Argument(index = 0, required = true, metaVar = "<project_path>", usage = "the project to calculate metrics for") private String projectPath = null;