Back to project page OrganGigManager.
The source code is released under:
GNU General Public License
If you think the Android project OrganGigManager listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * /* w ww. ja v a2s . com*/ */ package com.example.organgigmanager.gigs; /** * @author klavi * */ public interface GigData { long getDate(); void setDate(long date); String getLocation(); void setLocation(String location); String getIssue(); void setIssue(String issue); boolean isBillMet(); void setBillMet(boolean isBillMet); boolean isInvoiceRequired(); void setInvoiceRequired(boolean isInvoiceRequired); }