blob: 06133fa7e203ad5c2e315e03bb59c6b614197319 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.plugin;
import java.io.InputStream;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.CoreException;
/**
* AbbreviatedFragmentModel
*
*/
public class AbbreviatedFragmentModel extends WorkspaceFragmentModel {
/**
*
*/
private static final long serialVersionUID = 1L;
private String[] fExtensionPointIDs;
/**
* @param file
* @param abbreviated
*/
public AbbreviatedFragmentModel(IFile file, String[] extensionPointIDs) {
super(file, true);
fExtensionPointIDs = extensionPointIDs;
}
/**
* @param file
* @param extensionPointID
*/
public AbbreviatedFragmentModel(IFile file, String extensionPointID) {
super(file, true);
fExtensionPointIDs = new String[] {extensionPointID};
}
/* (non-Javadoc)
* @see org.eclipse.pde.internal.core.plugin.AbstractPluginModelBase#load(java.io.InputStream, boolean)
*/
public void load(InputStream stream, boolean outOfSync) throws CoreException {
load(stream, outOfSync, new AbbreviatedPluginHandler(fExtensionPointIDs));
}
}