HubItem.java 853 Bytes
package com.lotus.town.hub;

public class HubItem {
  public enum Type {
    DATE,
    TIME
  }

  private Type type;
  private String date;
  private String time;
  private String behaviour;

  public HubItem(Type type, String date, String time, String behaviour) {
    this.type = type;
    this.date = date;
    this.time = time;
    this.behaviour = behaviour;
  }

  public Type getType() {
    return type;
  }

  public void setType(Type type) {
    this.type = type;
  }

  public String getDate() {
    return date;
  }

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

  public String getTime() {
    return time;
  }

  public void setTime(String time) {
    this.time = time;
  }

  public String getBehaviour() {
    return behaviour;
  }

  public void setBehaviour(String behaviour) {
    this.behaviour = behaviour;
  }
}