mock filetype manager if no application allows running lexer suites.
[fedora-idea.git] / platform-api / src / com / intellij / ui / LoadingNode.java
blob7dfb6ec1a44d5cd0f49651a5dec011cf2317e664
1 package com.intellij.ui;
3 import com.intellij.ide.IdeBundle;
5 import javax.swing.tree.DefaultMutableTreeNode;
7 public class LoadingNode extends DefaultMutableTreeNode {
8 public LoadingNode() {
9 this(IdeBundle.message("treenode.loading"));
12 public LoadingNode(String text) {
13 super(text);