blob: 4dbbe1f279e87e0255d025a7a5feaad707755926 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2006 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.pde.internal.core.bundle;
import org.eclipse.pde.core.plugin.IPlugin;
import org.eclipse.pde.core.plugin.IPluginBase;
import org.eclipse.pde.internal.core.ibundle.IBundlePluginModel;
public class BundlePluginModel extends BundlePluginModelBase implements IBundlePluginModel {
private static final long serialVersionUID = 1L;
public IPluginBase createPluginBase() {
BundlePlugin bplugin = new BundlePlugin();
bplugin.setModel(this);
return bplugin;
}
/* (non-Javadoc)
* @see org.eclipse.pde.core.plugin.IPluginModel#getPlugin()
*/
public IPlugin getPlugin() {
return (IPlugin) getPluginBase();
}
/* (non-Javadoc)
* @see org.eclipse.pde.core.plugin.IPluginModelBase#isFragmentModel()
*/
public boolean isFragmentModel() {
return false;
}
}