blob: f588301e432cac957c2a5575d419f2af4215cfa4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Remain Software
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* wim.jongman@remainsoftware.com - initial API and implementation
*******************************************************************************/
package org.eclipse.tips.ide.internal;
import org.eclipse.ui.plugin.AbstractUIPlugin;
public class Plugin extends AbstractUIPlugin {
private static Plugin instance;
public Plugin() {
instance = this;
}
public static AbstractUIPlugin getInstance() {
return instance;
}
}