Back to project page SeniorDesign.
The source code is released under:
GNU General Public License
If you think the Android project SeniorDesign 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 fakesetgame.seniordesign.view; //from ww w . j ava 2 s . c o m import android.content.Context; import android.view.View; /** * The class for the view used in a single row of the Game Summary outcomes list. */ public class GameSummaryListItemView extends View { public GameSummaryListItemView(Context context) { super(context); } }