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; /*www. j a v a 2s . co m*/ import net.azyobuzi.azyotter.saostar.timeline_data.TimelineItem; public interface Invokable { /* * ? * TYPE_STRING - String * TYPE_NUMBER - long * TYPE_BOOLEAN - boolean * TYPE_DATETIME - Date * TYPE_STRING_ARRAY - String[] */ public static final int TYPE_STRING = 0; public static final int TYPE_NUMBER = 1; public static final int TYPE_BOOLEAN = 2; public static final int TYPE_DATETIME = 3; public static final int TYPE_STRING_ARRAY = 4; int getResultType(); Object invoke(TimelineItem target); }