IDEADEV-38479 Show run configuration's icon in "Run"-window
[fedora-idea.git] / platform / lang-api / src / com / intellij / execution / configurations / RunProfile.java
blob43c22521468a9b6155869bdaa573cd296d4a017d
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.
16 package com.intellij.execution.configurations;
18 import com.intellij.execution.Executor;
19 import com.intellij.execution.ExecutionException;
20 import com.intellij.execution.runners.ExecutionEnvironment;
21 import org.jetbrains.annotations.NotNull;
22 import org.jetbrains.annotations.Nullable;
24 import javax.swing.*;
26 public interface RunProfile {
27 /**
28 * todo - javadoc
30 @Nullable
31 RunProfileState getState(@NotNull Executor executor, @NotNull ExecutionEnvironment env) throws ExecutionException ;
33 String getName();
35 @Nullable
36 Icon getIcon();
38 void checkConfiguration() throws RuntimeConfigurationException;