IDEADEV-41714 ("Collecting Information on Changes" hangs entire GUI) r=yole
[fedora-idea.git] / plugins / svn4idea / src / org / jetbrains / idea / svn / branchConfig / InfoReliability.java
blobe8a69a06ff7f78358b35d13df6c500699f839b26
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 org.jetbrains.idea.svn.branchConfig;
18 public enum InfoReliability {
19 empty() {
20 @Override
21 protected final InfoReliability[] getOverriddenBy() {
22 return new InfoReliability[] {defaultValues, setByUser};
23 }},
24 defaultValues() {
25 @Override
26 protected final InfoReliability[] getOverriddenBy() {
27 return new InfoReliability[] {setByUser};
28 }},
29 setByUser() {
30 @Override
31 protected final InfoReliability[] getOverriddenBy() {
32 return new InfoReliability[] {setByUser};
33 }};
35 protected abstract InfoReliability[] getOverriddenBy();
37 public boolean shouldOverride(final InfoReliability other) {
38 for (InfoReliability info : other.getOverriddenBy()) {
39 if (info.equals(this)) return true;
41 return false;