In my current project, I write a high-level specification (as indicated below for reference) and parse it using grammar written in ANTLR and then using StringTempate to generate the equivalent Java programming code. Now my client discovers the difficulty of writing this high-level text specification and want me to provide equivalent visual constructs and an editor for drag and drop programming to specify these programming constructs. My question is: does eclipse drag and drop the desktop to develop visual software constructs and editors? CAN be easily integrated with ANTLR.
An example of the example or its link will be useful.
TemperatureSensor generate tempMeasurement : TempStruct; TempStruct tempValue : double; unitOfMeasurement: String;
java eclipse drag-and-drop antlr
Pankesh
source share