propertyComposite.setLayout(gridLayout1);
// run test logging setting: new logging framework
cachedRunTestLoggingSetting =
getLoggingService().getAllLoggingInfo(getProject(), LoggingInfo.SupportedFeatureEnum.RunTest);
LoggingComposite runTestLoggingComposite =
new LoggingComposite(propertyComposite, getLoggingService(), SWT.NONE, true,
LoggingInfo.SupportedFeatureEnum.RunTest);
runTestLoggingComposite.enable(getProject());
// execute anonymous logging setting: new logging framework
cachedExeAnonymousLoggingSetting =
getLoggingService().getAllLoggingInfo(getProject(), LoggingInfo.SupportedFeatureEnum.ExecuteAnonymous);
LoggingComposite loggingComposite =
new LoggingComposite(propertyComposite, getLoggingService(), SWT.NONE, true,
LoggingInfo.SupportedFeatureEnum.ExecuteAnonymous);
loggingComposite.enable(getProject());
UIUtils.setHelpContext(propertyComposite, this.getClass().getSimpleName());
return propertyComposite;
}