
theWorkspace=workspace
while [ "$1" != "" ]; do
  case $1 in
    -platform)  shift; theWorkspace=$1; shift;;
    *)          break;;
  esac
done

$VABASE/jre/bin/java \
  -Xmx900M \
  -Djava.compiler=NONE \
  -verify \
  -cp $VABASE/startup.jar \
  org.eclipse.core.launcher.Main \
  -noupdate \
  -data $theWorkspace \
  -application org.eclipse.emf.codegen.ecore.Rose2GenModel \
  "$@"

