blob: 1e7ffa8923f506dbf7ffc86cd3c214d10bed2534 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010 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.internal.e4.compatibility;
import javax.inject.Inject;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.e4.core.services.annotations.Optional;
import org.eclipse.e4.ui.model.application.MPart;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.IWorkbenchPartReference;
public class CompatibilityView extends CompatibilityPart {
private ViewReference reference;
@Inject
CompatibilityView(MPart part, ViewReference ref) {
super(part);
reference = ref;
}
// FIXME: remove me when bug 299760 is fixed
void doSave(@Optional IProgressMonitor monitor) {
super.doSave(monitor);
}
public IViewPart getView() {
return (IViewPart) getPart();
}
/*
* (non-Javadoc)
*
* @see
* org.eclipse.ui.internal.e4.compatibility.CompatibilityPart#getReference()
*/
@Override
public IWorkbenchPartReference getReference() {
return reference;
}
}