Back to project page saostar.
The source code is released under:
Apache License
If you think the Android project saostar listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.azyobuzi.azyotter.saostar.d_aqa; // w ww . j av a 2 s .co m public abstract class Operator implements Invokable { public Operator(Invokable left, Invokable right) { this.left = left; this.right = right; } protected Invokable left; protected Invokable right; @Override public int getResultType() { return Invokable.TYPE_BOOLEAN; } }