String filePath = CamelDebugUtils.getRawCamelContextFilePathFromLaunchConfig(getLaunch().getLaunchConfiguration());
if (filePath != null) {
File f = new File(filePath);
if (f.exists() && f.isFile() && CamelUtils.isCamelContextFile(filePath)) {
XmlContainerMarshaller m = new XmlContainerMarshaller();
RouteContainer c = m.loadRoutes(f);
if (c != null) {
this.camelContextId = c.getCamelContextId();
}
if (CamelUtils.isBlueprintFile(filePath)) {
this.contentType = ICamelDebugConstants.CAMEL_CONTEXT_CONTENT_TYPE_BLUEPRINT;