private DroolsBuildMarker[] parseGDSTFile(IFile file) {
List markers = new ArrayList();
try {
String gdst = convertToString(file.getContents());
TypeSafeGuidedDecisionTable dt = GuidedDTXMLPersistence.getInstance().unmarshal(gdst);
String drl = GuidedDTDRLPersistence.getInstance().marshal(dt);
// TODO pass this through DSL converter in case brl is based on dsl
DRLInfo drlInfo =