IDEADEV-41062 (Map help button of "Import into Subversion" dialog box)
[fedora-idea.git] / plugins / svn4idea / src / org / jetbrains / idea / svn / SvnFileStatus.java
blobe5330ab2650cebaf61338c3caa0764114a270fb7
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.
18 package org.jetbrains.idea.svn;
20 import com.intellij.openapi.vcs.FileStatus;
21 import com.intellij.openapi.vcs.FileStatusFactory;
23 import java.awt.*;
25 public class SvnFileStatus {
26 private SvnFileStatus() {
29 public static final FileStatus EXTERNAL =
30 FileStatusFactory.SERVICE.getInstance()
31 .createFileStatus("IDEA_SVN_FILESTATUS_EXTERNAL", SvnBundle.message("file.status.external"), new Color(0x72A038));
33 public static final FileStatus OBSTRUCTED =
34 FileStatusFactory.SERVICE.getInstance()
35 .createFileStatus("IDEA_SVN_FILESTATUS_OBSTRUCTED", SvnBundle.message("file.status.obstructed"), new Color(0x727238));
37 public static final FileStatus REPLACED =
38 FileStatusFactory.SERVICE.getInstance().createFileStatus("IDEA_SVN_REPLACED",
39 SvnBundle.message("file.status.replaced"),
40 FileStatus.COLOR_ADDED);