0aabb763db4932b115581eeddc0611b92fa66898
[fedora-idea.git] / platform / platform-api / src / com / intellij / openapi / wm / ToolWindowId.java
blob0aabb763db4932b115581eeddc0611b92fa66898
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.openapi.wm;
18 import com.intellij.ui.UIBundle;
20 public interface ToolWindowId {
21 String COMMANDER = UIBundle.message("tool.window.name.commander");
22 String MESSAGES_WINDOW = UIBundle.message("tool.window.name.messages");
23 String PROJECT_VIEW = UIBundle.message("tool.window.name.project");
24 String STRUCTURE_VIEW = UIBundle.message("tool.window.name.structure");
25 String FAVORITES_VIEW = UIBundle.message("tool.window.name.favorites");
26 String ANT_BUILD = UIBundle.message("tool.window.name.ant.build");
27 String DEBUG = UIBundle.message("tool.window.name.debug");
28 String RUN = UIBundle.message("tool.window.name.run");
29 String FIND = UIBundle.message("tool.window.name.find");
30 String CVS = UIBundle.message("tool.window.name.cvs");
31 String HIERARCHY = UIBundle.message("tool.window.name.hierarchy");
32 String INSPECTION = UIBundle.message("tool.window.name.inspection");
33 String TODO_VIEW = UIBundle.message("tool.window.name.todo");
34 String DEPENDENCIES = UIBundle.message("tool.window.name.dependency.viewer");
35 String VCS = UIBundle.message("tool.window.name.version.control");
36 String MODULES_DEPENDENCIES = UIBundle.message("tool.window.name.module.dependencies");
37 String DUPLICATES = UIBundle.message("tool.window.name.module.duplicates");