Back to project page VirginMobileMinutesChecker.
The source code is released under:
Copyright 2011 Jay Goel. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Red...
If you think the Android project VirginMobileMinutesChecker 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.jaygoel.virginminuteschecker; //from ww w.j a va2 s.c o m /** * Interface for VirginMobileChecker's Website Scraper */ public interface IVMCScraper { boolean isValid(String str); String getPhoneNumber(String str); String getMonthlyCharge(String str); String getCurrentBalance(String str); String getMinAmountDue(String str); String getDateDue(String str); String getChargedOn(String str); String getMinutesUsed(String str); }