aboutsummaryrefslogtreecommitdiff
path: root/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/EclipseLintIssueRegistry.java
blob: 3abbdeb84c081f5b6aa5175051cb3af214e21488 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 * Copyright (C) 2014 The Android Open Source Project
 *
 * Licensed under the Eclipse Public License, Version 1.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.eclipse.org/org/documents/epl-v10.php
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.android.ide.eclipse.adt.internal.lint;

import com.android.annotations.NonNull;
import com.android.tools.lint.checks.*;
import com.android.tools.lint.detector.api.Issue;

import java.util.ArrayList;
import java.util.List;

public class EclipseLintIssueRegistry extends BuiltinIssueRegistry {
    private static List<Issue> sFilteredIssues;

    public EclipseLintIssueRegistry() {
    }

    @NonNull
    @Override
    public List<Issue> getIssues() {
        if (sFilteredIssues == null) {
            // Remove issues that do not work properly in Eclipse
            List<Issue> sIssues = super.getIssues();
            List<Issue> result = new ArrayList<Issue>(sIssues.size());
            for (Issue issue : sIssues) {
                if (issue == MissingClassDetector.INSTANTIATABLE) {
                    // Apparently violated by
                    // android.support.v7.internal.widget.ActionBarView.HomeView
                    // See issue 72760
                    continue;
                } else if (issue == DuplicateIdDetector.WITHIN_LAYOUT) {
                    // Apparently violated by
                    // sdk/extras/android/support/v7/appcompat/abc_activity_chooser_view_include.xml
                    // See issue 72760
                    continue;
                } else if (issue == AppCompatResourceDetector.ISSUE
                        || issue == AppCompatCallDetector.ISSUE) {
                    // Apparently has some false positives in Eclipse; see issue
                    // 72824
                    continue;
                } else if (issue.getImplementation().getDetectorClass() == RtlDetector.class) {
                    // False positives in Eclipse; see issue 78780
                    continue;
                }
                result.add(issue);
            }
            sFilteredIssues = result;
        }

        return sFilteredIssues;
    }
}