blob: be2c166bc8e83ad7ef941fd67e06237837429887 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 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.jface.action.IAction;
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;
import org.eclipse.ui.tests.TestPlugin;
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";
private IWorkbenchWindow window;
/* (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) {
this.window = workbenchWindow;
}
/* (non-Javadoc)
* @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
*/
public void run(IAction action) {
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("category" , String.valueOf(i/2));
MarkerUtilities.createMarker(root, attribs, CATEGORY_TEST_MARKER);
}
} catch (CoreException e) {
openError(e);
}
}
private void openError(Exception e) {
String msg = e.getMessage();
if (msg == null) {
msg = e.getClass().getName();
}
e.printStackTrace();
IStatus status = new Status(Status.ERROR, TestPlugin.getDefault()
.getDescriptor().getUniqueIdentifier(), 0, msg, e);
TestPlugin.getDefault().getLog().log(status);
ErrorDialog.openError(window.getShell(), "Error", msg, status);
}
/* (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
}
}