use of org.eclipse.sapphire.ValueProperty in project liferay-ide by liferay.
the class ProviderValueServiceConditon method applicable.
@Override
public boolean applicable(final ServiceContext context) {
ValueProperty prop = context.find(ValueProperty.class);
ValueProperty property = BaseModuleOp.PROP_PROJECT_PROVIDER;
if ((prop != null) && prop.name().equals(property.name())) {
return true;
}
return false;
}
Aggregations