blob: 05655ca2e4a582982dff3f4cebb91aede0e58e17 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2020 RBEI and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v. 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:
* Adhith Gopal - Initial contribution and API
*******************************************************************************/
package org.eclipse.blockchain.application;
import org.eclipse.equinox.app.IApplicationContext;
import org.eclipse.ui.internal.ide.application.IDEApplication;
/**
*
* Eclipse Application class
*
*/
public class BlockchainApplication extends IDEApplication {
/**
* {@inheritDoc}
*/
@Override
public Object start(final IApplicationContext appContext) throws Exception {
Object start = super.start(appContext);
return start;
}
}