blob: c468b410795165137e3d4a6d51a1efb3ccc62cba [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.tests.menus;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;
import org.eclipse.ui.texteditor.MarkerUtilities;
import org.eclipse.ui.views.markers.MarkerViewUtil;
/**
* @since 3.1
*/
public class AddMarkersAction implements IWorkbenchWindowActionDelegate {
static final String CATEGORY_TEST_MARKER = "org.eclipse.ui.tests.categoryTestMarker";
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.IWorkbenchWindowActionDelegate#dispose()
*/
public void dispose() {
// TODO Auto-generated method stub
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.IWorkbenchWindowActionDelegate#init(org.eclipse.ui.IWorkbenchWindow)
*/
public void init(IWorkbenchWindow workbenchWindow) {
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
*/
public void run(IAction action) {
Job addJob = new Job("Add Markers") {
protected IStatus run(
org.eclipse.core.runtime.IProgressMonitor monitor) {
try {
IWorkspaceRoot root = ResourcesPlugin.getWorkspace()
.getRoot();
Map attribs = new HashMap();
for (int i = 0; i < 1000; i++) {
if (i / 2 == 0) {
attribs.put(MarkerViewUtil.NAME_ATTRIBUTE,
"Test Name " + i);
attribs.put(MarkerViewUtil.PATH_ATTRIBUTE,
"Test Path " + i);
}
attribs.put(IMarker.SEVERITY, new Integer(
IMarker.SEVERITY_ERROR));
attribs.put(IMarker.MESSAGE, "this is a test " + i);
attribs.put(IMarker.LOCATION, "Location " + i);
attribs.put("testAttribute", String.valueOf(i / 2));
MarkerUtilities.createMarker(root, attribs,
CATEGORY_TEST_MARKER);
}
} catch (CoreException e) {
return e.getStatus();
}
return Status.OK_STATUS;
};
};
addJob.schedule();
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.IActionDelegate#selectionChanged(org.eclipse.jface.action.IAction,
* org.eclipse.jface.viewers.ISelection)
*/
public void selectionChanged(IAction action, ISelection selection) {
// TODO Auto-generated method stub
}
}