Back to project page android-nextbus.
The source code is released under:
MIT License
If you think the Android project android-nextbus 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.andrei.nextbus.library.objects; /*from w ww .ja va 2s.c o m*/ public class AgencyStopPair { private String both; public AgencyStopPair (String agencyTag, String stopTag){ both = agencyTag + "|" + stopTag; } public AgencyStopPair (Agency agency, Stop stop){ this (agency.getTag(), stop.getTag()); } public String getConcatedTuple (){ return both; } }