Back to project page ElyTheme.
The source code is released under:
GNU General Public License
If you think the Android project ElyTheme 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 com.afollestad.cardsui; /*from w ww . j ava 2 s.c om*/ import android.graphics.drawable.Drawable; import com.afollestad.silk.SilkComparable; /** * @author Aidan Follestad (afollestad) */ public interface CardBase<ItemType> extends SilkComparable { public abstract CharSequence getTitle(); public abstract CharSequence getContent(); public abstract boolean isHeader(); public abstract boolean isClickable(); public abstract int getPopupMenu(); public CardHeader.ActionListener getActionCallback(); public String getActionTitle(); public abstract Card.CardMenuListener<ItemType> getPopupListener(); public abstract Drawable getThumbnail(); public abstract int getLayout(); public abstract Object getTag(); }