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.properties; //w w w . j av a 2 s . c o m import java.util.Date; import net.azyobuzi.azyotter.saostar.d_aqa.Property; import net.azyobuzi.azyotter.saostar.d_aqa.PropertyFactory; import net.azyobuzi.azyotter.saostar.timeline_data.TimelineItem; public class RetweetedCreatedAtProperty extends Property { @Override public int getResultType() { return TYPE_DATETIME; } @Override public Object invoke(TimelineItem target) { if (target.retweeted != null) return target.retweeted.createdAt; else return new Date(1900, 1, 1); } public static class Factory implements PropertyFactory { @Override public String getPropertyName() { return "retweeted.createdAt"; } @Override public int getType() { return TYPE_DATETIME; } @Override public Property createProperty() { return new RetweetedCreatedAtProperty(); } } }