Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [pde-dev] API to check for feature existance

Hi Rajeev,
You can try using this:

PDECore.getDefault().getFeatureModelManager().findFeatureModel(featureName, desiredVersion);

The PDECore, FeatureModelManager, etc are found in package org.eclipse.pde.internal.core so you might want to use a:

@SuppressWarnings("restricted")

on the class where they are referenced.

Regards,
Thomas Hallgren

Rajeev Sikka wrote:

Hi,

Is there an API that can be used to determine if a particular feature exists in the target eclipse.

Thanks
Rajeev
------------------------------------------------------------------------

_______________________________________________
pde-dev mailing list
pde-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/pde-dev



Back to the top