blob: 0c37d8273e4e9d75e9ba0a97748293a3f61512a4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 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.core.runtime.internal.adaptor;
import java.util.*;
/**
* Interface used as an entry to the IPluginConverter
*
* <p>Internal class.</p>
*/
public interface IPluginInfo {
public Map getLibraries();
public String[] getLibrariesName();
public ArrayList getRequires();
public String getMasterId();
public String getMasterVersion();
public String getMasterMatch();
public String getPluginClass();
public String getUniqueId();
public String getVersion();
public boolean isFragment();
public Set getPackageFilters();
public String getPluginName();
public String getProviderName();
public boolean isSingleton();
public boolean hasExtensionExtensionPoints();
String validateForm();
}