Android Open Source - FlyingDB Prefix Event






From Project

Back to project page FlyingDB.

License

The source code is released under:

MIT License

If you think the Android project FlyingDB listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

//**********************************************************
//************** AUTOGENERATED with FLYINGDB ***************
//**********************************************************
//from w  w w  .jav  a 2 s  . c  om
package com.flyingboba.flyingdb;


public class PrefixEvent {

  private String eventId;
  private String date;
  private String locationId;
  private String title;

  public PrefixEvent(String eventId, String date, String locationId, String title) {
    setEventId(eventId);
    setDate(date);
    setLocationId(locationId);
    setTitle(title);
  }

  public void setEventId(String eventId) {
    this.eventId = eventId;
  }

  public void setDate(String date) {
    this.date = date;
  }

  public void setLocationId(String locationId) {
    this.locationId = locationId;
  }

  public void setTitle(String title) {
    this.title = title;
  }

  public String getEventId() {
    return eventId;
  }

  public String getDate() {
    return date;
  }

  public String getLocationId() {
    return locationId;
  }

  public String getTitle() {
    return title;
  }

}




Java Source Code List

com.flyingboba.flyingdb.DatabaseAdapter.java
com.flyingboba.flyingdb.DatabaseHelper.java
com.flyingboba.flyingdb.PrefixEvent.java
com.flyingboba.flyingdb.PrefixLocation.java
com.flyingboba.flyingdb.PrefixPerson.java
com.flyingboba.flyingdbexample.MainActivity.java