summaryrefslogtreecommitdiffstats
path: root/org.eclipse.cdt.codan.core/src/org/eclipse/cdt/codan/core/model/ICheckersRegistry.java
blob: 052d868059d2cfce9b46d6cc0fcf393b38ef82ef (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
66
/*******************************************************************************
 * Copyright (c) 2009 Alena Laskavaia 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Alena Laskavaia  - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.codan.core.model;

import java.util.Iterator;

import org.eclipse.core.resources.IResource;

/**
 * @author Alena
 * 
 */
public interface ICheckersRegistry {
	public abstract Iterator<IChecker> iterator();

	public abstract void addChecker(IChecker checker);

	public abstract void addProblem(IProblem p, String category);

	public abstract void addCategory(IProblemCategory p, String category);

	public abstract void addRefProblem(IChecker c, IProblem p);

	/**
	 * @return
	 */
	public abstract IProblemProfile getDefaultProfile();

	/**
	 * @return
	 */
	public abstract IProblemProfile getWorkspaceProfile();

	/**
	 * @param element
	 * @return
	 */
	public abstract IProblemProfile getResourceProfile(IResource element);

	/**
	 * @param element
	 * @return
	 */
	public abstract IProblemProfile getResourceProfileWorkingCopy(
			IResource element);

	/**
	 * Set profile for resource. This method is called by UI, and should not be
	 * called by clients directly
	 * 
	 * @param resource
	 *            - resource
	 * @param profile
	 *            - problems profile
	 */
	public abstract void updateProfile(IResource resource,
			IProblemProfile profile);
}