Back to project page MassRoute.
The source code is released under:
Copyright (c) 2010 Todd Anderson http://www.custardbelly.com/blog Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (th...
If you think the Android project MassRoute 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.custardbelly.massdot.model; //from www . j av a 2 s . c om import java.io.Serializable; import java.util.ArrayList; public class StoredStopRequests implements Serializable { public ArrayList<StoredStopRequest> requests; static final long serialVersionUID = 20100925; public StoredStopRequests() { requests = new ArrayList<StoredStopRequest>(); } public void addRequest( StoredStopRequest request ) { requests.add( request ); } public void removeRequest( StoredStopRequest request ) { requests.remove( request ); } }