Back to project page BusTicketer.
The source code is released under:
Copyright (c) 2013, Nelspike All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Red...
If you think the Android project BusTicketer 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 bus.ticketer.inspector; /* w ww . java 2s.com*/ import java.util.ArrayList; import android.app.Application; public class BusInspector extends Application { public final String IPAddress = "http://192.168.178.24:81"; private ArrayList<Integer> ticketiList; public boolean isTicketValidated(int client) { return ticketiList.contains(client); } public void saveTicketList(ArrayList<Integer> clientList) { this.ticketiList=clientList; } }