blob: 8f51e35554a2a1073d66f757bfcb5c3e5d85b91b [file] [log] [blame]
/*
* Copyright (c) 2014 Zeligsoft (2009) Limited.
* All rights reserved. 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
*/
package org.eclipse.papyrus.designer.languages.java.codegen.tests;
import org.eclipse.ui.plugin.AbstractUIPlugin;
public class TestPlugin extends AbstractUIPlugin {
private static TestPlugin instance;
public TestPlugin() {
instance = this;
}
public static TestPlugin getInstance() {
return instance;
}
}