EclipsePlug-in访问问题视图(ProblemsView)并添加问题

首先打开视图:

PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView(IPageLayout.ID_PROBLEM_VIEW);
//调用添加一个问题方法.
addMarker(ResourcesPlugin.getWorkspace().getRoot(), "严重语法问题", 99, IMarker.SEVERITY_ERROR, IMarker.PRIORITY_HIGH);

向问题视图添加问题方法:

public static final String PROBLEMS_MARKER_ID = "org.eclipse.core.resources.problemmarker";
//静态方法.随便添加在哪里都可以. 打开试图后, 直接调用就可以.
public static void addMarker(IResource resource, String message,
		int lineNumber, int severity, int priority ) throws CoreException {
	if (resource != null) {
		IMarker marker = resource.createMarker(PROBLEMS_MARKER_ID);
		if (message != null) {
			marker.setAttribute(IMarker.MESSAGE, message);
		}
		if (lineNumber >= 0) {
			marker.setAttribute(IMarker.LINE_NUMBER, lineNumber);
		}
		marker.setAttribute(IMarker.SEVERITY, severity);
		marker.setAttribute(IMarker.PRIORITY, priority);
	}
}
参数在IMarker里面有常量设置. 直接使用.

你可能感兴趣的:(EclipsePlug-in访问问题视图(ProblemsView)并添加问题)