VCS: allow Git to report changed on server files comparing the whole tree. !! require...
[fedora-idea.git] / plugins / svn4idea / src / org / jetbrains / idea / svn / SvnFileStatus.java
blob9b5dc13267276f69b5415bf99ac2fd1afb8d193d
1 /**
2 * @copyright
3 * ====================================================================
4 * Copyright (c) 2003-2004 QintSoft. All rights reserved.
6 * This software is licensed as described in the file COPYING, which
7 * you should have received as part of this distribution. The terms
8 * are also available at http://subversion.tigris.org/license-1.html.
9 * If newer versions of this license are posted there, you may use a
10 * newer version instead, at your option.
12 * This software consists of voluntary contributions made by many
13 * individuals. For exact contribution history, see the revision
14 * history and logs, available at http://svnup.tigris.org/.
15 * ====================================================================
16 * @endcopyright
19 * Copyright 2000-2005 JetBrains s.r.o.
21 * Licensed under the Apache License, Version 2.0 (the "License");
22 * you may not use this file except in compliance with the License.
23 * You may obtain a copy of the License at
25 * http://www.apache.org/licenses/LICENSE-2.0
27 * Unless required by applicable law or agreed to in writing, software
28 * distributed under the License is distributed on an "AS IS" BASIS,
29 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
30 * See the License for the specific language governing permissions and
31 * limitations under the License.
33 package org.jetbrains.idea.svn;
35 import com.intellij.openapi.vcs.FileStatus;
36 import com.intellij.openapi.vcs.FileStatusFactory;
38 import java.awt.*;
40 public class SvnFileStatus {
41 private SvnFileStatus() {
44 public static final FileStatus EXTERNAL =
45 FileStatusFactory.SERVICE.getInstance()
46 .createFileStatus("IDEA_SVN_FILESTATUS_EXTERNAL", SvnBundle.message("file.status.external"), new Color(0x72A038));
48 public static final FileStatus OBSTRUCTED =
49 FileStatusFactory.SERVICE.getInstance()
50 .createFileStatus("IDEA_SVN_FILESTATUS_OBSTRUCTED", SvnBundle.message("file.status.obstructed"), new Color(0x727238));
52 public static final FileStatus REPLACED =
53 FileStatusFactory.SERVICE.getInstance().createFileStatus("IDEA_SVN_REPLACED",
54 SvnBundle.message("file.status.replaced"),
55 FileStatus.COLOR_ADDED);