blob: eeadfea0509e1c8c34260d3beb3c4cc9f36fa4e9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 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 v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.ecl.interop.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 EclInteropPlugin extends Plugin {
public static final String PLUGIN_ID = "org.eclipse.rcptt.ecl.interop";
private static EclInteropPlugin plugin = null;
public static EclInteropPlugin getDefault() {
return plugin;
}
@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 Status error(String message) {
return new Status(Status.ERROR, PLUGIN_ID, message);
}
public static Status error(String message, Object... args) {
return error(String.format(message, args));
}
public static IStatus error(Throwable cause, String format, Object... args) {
return new Status(IStatus.ERROR, PLUGIN_ID, String.format(format, args), cause);
}
}