blob: e0aa334674638042290fdb47eda274c8f5d08c0b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.tweaklts.workingsets.internal;
import org.eclipse.ui.plugin.AbstractUIPlugin;
public class Activator extends AbstractUIPlugin {
public static final String PLUGIN_ID = "org.eclipse.ui.tweaklets.workingsets";
private static Activator instance;
public Activator() {
instance = this;
}
public static Activator getInstance() {
return instance;
}
}