/* * Copyright 2000-2017 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jetbrains.osgi.bnd.run; import com.intellij.execution.configurations.*; import com.intellij.openapi.project.Project; import icons.OsmorcIdeaIcons; import org.jetbrains.annotations.NotNull; import org.jetbrains.osgi.bnd.imp.BndProjectImporter; import javax.swing.*; import static org.osmorc.i18n.OsmorcBundle.message; public class BndRunConfigurationType extends ConfigurationTypeBase { private static final String ID = "osgi.bnd.run"; @NotNull public static BndRunConfigurationType getInstance() { return ConfigurationTypeUtil.findConfigurationType(BndRunConfigurationType.class); } public BndRunConfigurationType() { super(ID, message("bnd.configuration.name"), message("bnd.configuration.description"), OsmorcIdeaIcons.Bnd); addFactory(new LaunchFactory(this)); addFactory(new TestFactory(this)); } private static abstract class FactoryBase extends ConfigurationFactory { private final String myName; private final Icon myIcon; public FactoryBase(@NotNull ConfigurationType type, @NotNull String name, @NotNull Icon icon) { super(type); myName = name; myIcon = icon; } @Override public String getName() { return myName; } @Override public Icon getIcon() { return myIcon; } @Override public boolean isApplicable(@NotNull Project project) { return BndProjectImporter.getWorkspace(project) != null; } } private static class LaunchFactory extends FactoryBase { public LaunchFactory(@NotNull ConfigurationType type) { super(type, message("bnd.run.configuration.name"), OsmorcIdeaIcons.BndLaunch); } @NotNull @Override public RunConfiguration createTemplateConfiguration(@NotNull Project project) { return new BndRunConfigurationBase.Launch(project, this, ""); } } private static class TestFactory extends FactoryBase { public TestFactory(@NotNull ConfigurationType type) { super(type, message("bnd.test.configuration.name"), OsmorcIdeaIcons.BndTest); } @NotNull @Override public RunConfiguration createTemplateConfiguration(@NotNull Project project) { return new BndRunConfigurationBase.Test(project, this, ""); } } }