blob: 58cde389027bb543b873abc76a3e6df3b688e873 [file] [log] [blame]
/**
* Copyright (c) 2011, 2014 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.vaaclipse.addons.application.views;
import javax.inject.Inject;
import org.eclipse.e4.core.contexts.IEclipseContext;
import org.eclipse.e4.ui.model.application.MApplication;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.vaadin.ui.VerticalLayout;
/**
* View that shows problems.
*/
public class OutlineView {
/** The Constant LOGGER. */
@SuppressWarnings("unused")
private static final Logger LOGGER = LoggerFactory
.getLogger(OutlineView.class);
/**
* Instantiates a new outline view.
*
* @param parent
* the parent
* @param eclipseContext
* the eclipse context
* @param app
* the app
*/
@Inject
public OutlineView(VerticalLayout parent, IEclipseContext eclipseContext,
MApplication app) {
}
}