Back to project page openmbta-android.
The source code is released under:
Copyright (c) 2014 Kaja Software Corporation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal...
If you think the Android project openmbta-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 com.kaja.openmbta; // ww w . j a va 2s . c om import java.util.Date; public class ScheduleItem { private String name=""; private String[] desc; private String type=""; public ScheduleItem(String _name, String[] _desc, String _type) { name = _name; desc = _desc; type = _type; } public ScheduleItem() { } public String getName() { return(name); } public void setName(String name) { this.name=name; } public String getDesc(int i) { return(desc[i]); } public void setDesc(int i) { this.desc[i]=desc[i]; } public String getType() { return(type); } public void setType(String type) { this.type=type; } public String toString() { return(getName()); } }