blob: c7416dde5cfe9d17304e81a9f97711c903728f6b [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:
* Pavithra Krishna Reddy - Initial contribution and API
*******************************************************************************/
package org.eclipse.blockchain.ui.views;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.part.ViewPart;
/**
*
*/
public class CompileViewPart extends ViewPart {
public CompileViewPart() {
super();
}
/**
* {@inheritDoc}
*/
@Override
public void createPartControl(final Composite parent) {
// TODO Auto-generated method stub
}
/**
* {@inheritDoc}
*/
@Override
public void setFocus() {
// TODO Auto-generated method stub
}
}