if (!linkFile.exists() || linkFile.isDirectory())
{
throw new RemoteSimulationException("The VDM link file does not exist: "
+ linkFile);
}
VdmLinkParserWrapper linksParser = new VdmLinkParserWrapper();
links = linksParser.parse(linkFile);// Links.load(linkFile);
if (links == null || linksParser.hasErrors())
{
throw new RemoteSimulationException("Faild to parse vdm links");
}
if (disableRtLog)