File: code-gen

package info (click to toggle)
eclipse-emf 2.24.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 62,044 kB
  • sloc: java: 644,589; xml: 11,649; makefile: 5
file content (20 lines) | stat: -rw-r--r-- 399 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

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


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