/*******************************************************************************
* Copyright (c) 2000, 2008 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.text.plugin;
import org.eclipse.jface.text.IDocument;
import org.eclipse.osgi.service.resolver.BundleDescription;
import org.eclipse.pde.core.plugin.IPlugin;
import org.eclipse.pde.core.plugin.IPluginModel;
public class PluginModel extends PluginModelBase implements IPluginModel {
public PluginModel(IDocument document, boolean isReconciling) {
super(document, isReconciling);
}
/* (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;
}
/* (non-Javadoc)
* @see org.eclipse.pde.core.plugin.IPluginModelBase#getBundleDescription()
*/
public BundleDescription getBundleDescription() {
return null;
}
/* (non-Javadoc)
* @see org.eclipse.pde.core.plugin.IPluginModelBase#setBundleDescription(org.eclipse.osgi.service.resolver.BundleDescription)
*/
public void setBundleDescription(BundleDescription description) {
}
}
|