| [jwt-dev] Plugin mode check |
|
Hi, The plugin mode check
done by GeneralHelper has been hard coded for “agilpro” as
below: if
(Platform.getProduct().getName() != null &&
Platform.getProduct().getName().toLowerCase().contains("agilpro"))
//$NON-NLS-1$ {
return false; } else {
return true; } I’m trying to integrate JWT with my RCP app and unless
I have “agilpro” in my product name the “workflow
editor” perspective opens up the “Package Explorer” view
which fails. In JWT 0.5 the code checked for “eclipse” in the
product name which seems to be the right approach. So, how do I get around this in JWT 0.6? Regards, Ravi
|