blob: 2615c83e90826e8dfb0c9ca9886e6e4485b1ef9a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016, 2018 Obeo.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors: Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.eef.properties.ui.api;
/**
* Wrapper for contributors who want to use this version of the framework but can not have a hard dependency (via
* inheritance) towards IEEFTabbedPropertySheetPageContributor.
*
* @author pcdavid
*/
public abstract class AbstractEEFTabbedPropertySheetPageContributorWrapper implements IEEFTabbedPropertySheetPageContributor {
/**
* The original contributor object.
*/
protected final Object realContributor;
/**
* The contributor id.
*/
protected final String contributorId;
/**
* Creates a wrapper.
*
* @param realContributor
* the original contributor object.
* @param contributorId
* the contributor id.
*/
public AbstractEEFTabbedPropertySheetPageContributorWrapper(Object realContributor, String contributorId) {
this.realContributor = realContributor;
this.contributorId = contributorId;
}
@Override
public String getContributorId() {
return contributorId;
}
/**
* Return the original (wrapped) Contributor.
*
* @return the original (wrapped) Contributor.
*/
public Object getRealContributor() {
return this.realContributor;
}
}