blob: 4d39e022891aee8fc55284e613e0a2fc6d8522da [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2014 Xored Software Inc 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:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.ecl.operations.internal;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Plugin;
import org.eclipse.core.runtime.Status;
import org.osgi.framework.BundleContext;
public class OperationsPlugin extends Plugin {
private static OperationsPlugin plugin = null;
public static final String PLUGIN_ID = "org.eclipse.rcptt.ecl.operations";
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
@Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}
public static OperationsPlugin getDefault() {
return plugin;
}
public static IStatus createErr(Throwable cause, String format,
Object... args) {
return createStatus(IStatus.ERROR, cause, format, args);
}
public static IStatus createErr(String format, Object... args) {
return createErr(null, format, args);
}
public static IStatus createStatus(int severity, Throwable cause,
String format, Object... args) {
return new Status(severity, PLUGIN_ID, String.format(format, args),
cause);
}
}