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 a va2 s. co m import net.azyobuzi.azyotter.saostar.timeline_data.TimelineItem; public class Constant implements Invokable { public Constant(int type, Object value) { this.type = type; this.value = value; } private int type; @Override public int getResultType() { return type; } private Object value; public Object getValue() { return value; } @Override public Object invoke(TimelineItem target) { return getValue(); } }