Back to project page KnightNews_Android.
The source code is released under:
Copyright (c) 2014, James Van Gaasbeck All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are m...
If you think the Android project KnightNews_Android 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 knightnews.android; /*from ww w . j av a 2 s . c o m*/ public class EventItem { private String mEventName; private String mEventDate; private String mEventDesc; public String getEventName() { return mEventName; } public void setEventName(String name) { mEventName = name; } public String getEventDate() { return mEventDate; } public void setEventDate(String date) { mEventDate = date; } public String getEventDesc() { return mEventDesc; } public void setEventDesc(String desc) { mEventDesc = desc; } }