Copyright (c) 2013-, YungYu Zhuang. All rights reserved.
ReactiveDominoJ is a practical implementation of an expand event system supporting reactive programming. This project is an extension to the DominoJ compiler. For the publications and binary distribution please visit our project webpage:
http://www.csg.ci.i.u-tokyo.ac.jp/projects/rdominoj/
The source code of this project is licensed under the modified BSD License (please see the LICENSE file for the full text).
-
checkout ReactiveDominoJ from GitHub.
git clone https://github.com/yungyu/rdominoj.git rdominoj -
checkout DominoJ from GitHub.
git clone https://github.com/yungyu/dominoj.git dominoj -
checkout JastAddJ from its SVN repository.
svn checkout http://svn.cs.lth.se/svn/jastadd-oxford/projects/branches/JastAddJ-stable/ jastaddj -
copy dominoj runtime in DominoJ to ReactiveDominoJ.
cp -r dominoj/dominoj rdominoj/ -
build ReactiveDominoJ using ant.
cd rdominoj && ant
-
ant jarfor buildingDominoJCompiler.jaranddominoj.jar. -
ant sourcefor buildingdominoj-compiler-src.jar.
-
cd examples && antfor building. -
ant runfor testing.
-
cd testcases && antfor building. -
ant runfor testing.
java -jar ReactiveDominoJCompiler.jar MyClass.java
or
java -cp ~/devel/ReactiveDominoJ JavaCompiler MyClass.java
or let rdominojc could be found in your $PATH and then
rdominojc MyClass.java
java -cp dominoj.jar:. MyClass