typo (IDEADEV-41328)
[fedora-idea.git] / platform / lang-api / src / com / intellij / execution / configurations / UnknownConfigurationType.java
blobb4c7a4a1a2a183b5c6ed498f03c23debbc05f62b
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package com.intellij.execution.configurations;
19 import com.intellij.openapi.util.IconLoader;
20 import com.intellij.openapi.project.Project;
21 import org.jetbrains.annotations.NotNull;
23 import javax.swing.*;
25 /**
26 * @author spleaner
28 public class UnknownConfigurationType implements ConfigurationType {
30 public static final UnknownConfigurationType INSTANCE = new UnknownConfigurationType();
32 private static final Icon ICON = IconLoader.getIcon("/runConfigurations/unknown.png");
33 public static final String NAME = "Unknown";
35 public String getDisplayName() {
36 return getId();
39 public String getConfigurationTypeDescription() {
40 return "Configuration which cannot be loaded due to some reasons";
43 public Icon getIcon() {
44 return ICON;
47 @NotNull
48 public String getId() {
49 return NAME;
52 public ConfigurationFactory[] getConfigurationFactories() {
53 return new ConfigurationFactory[] {new ConfigurationFactory(new UnknownConfigurationType()) {
54 @Override
55 public RunConfiguration createTemplateConfiguration(final Project project) {
56 return new UnknownRunConfiguration(this, project);
58 }};