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; /*from w w w. ja va2 s.co m*/ import java.util.Date; public class transItem { private String route=""; private String name=""; private String desc=""; private String type=""; public transItem(String _route, String _name, String _desc, String _type) { route = _route; name = _name; desc = _desc; type = _type; } public transItem() { } public String getRoute(){ return(route); } public String getName() { return(name); } public void setName(String name) { this.name=name; } public void setRoute(String route){ this.route=route; } public String getDesc() { return(desc); } public void setDesc(String desc) { this.desc=desc; } public String getType() { return(type); } public void setType(String type) { this.type=type; } public String toString() { return(getName()); } }