AndroidLookup  0.02
 All Classes Namespaces Files Functions Variables Pages
Protected Member Functions | List of all members
com.jburto2.androidlookup.LookupPingTask Class Reference

This class is an LookupTask that uses java.net.InetAddress to see if a host is rechable or not. More...

Inheritance diagram for com.jburto2.androidlookup.LookupPingTask:
com.jburto2.androidlookup.LookupTask

Protected Member Functions

String doInBackground (String...urls)
 This function uses java.net.InetAddress to determine if the host is reachable. More...
 
void onPostExecute (String str)
 Method to be done after the task has executed. More...
 
- Protected Member Functions inherited from com.jburto2.androidlookup.LookupTask
String doInBackground (String...urls)
 This function makes the function call in the background. More...
 
void onPostExecute (String str)
 Method to be done after the task has executed. More...
 

Additional Inherited Members

- Public Member Functions inherited from com.jburto2.androidlookup.LookupTask
Exception getException ()
 
String getExceptionMsg ()
 
- Protected Attributes inherited from com.jburto2.androidlookup.LookupTask
Exception exception
 This holds any exception generated from the lookup call. More...
 

Detailed Description

This class is an LookupTask that uses java.net.InetAddress to see if a host is rechable or not.

Author
James Burton

Definition at line 21 of file LookupPingTask.java.

Member Function Documentation

protected String com.jburto2.androidlookup.LookupPingTask.doInBackground ( String...  urls)
protected

This function uses java.net.InetAddress to determine if the host is reachable.

Parameters
urlsArray of strings that are arguments to the function. url[0] is the address to lookup.
Returns
"Yes" if host is reachable.
"No" if host is not reachable or if an exception is generated.
Exceptions
Exceptiongenerated from InetAddress call is stored in the public instance variable exception.

Found NSLookup from http://www.coderanch.com/t/328875/java/java/nslookup-Java More on inet addresses from http://download.java.net/jdk7/archive/b123/docs/api/java/net/InetAddress.html

Definition at line 37 of file LookupPingTask.java.

protected void com.jburto2.androidlookup.LookupPingTask.onPostExecute ( String  str)
protected

Method to be done after the task has executed.

Parameters
strSome string

Definition at line 77 of file LookupPingTask.java.


The documentation for this class was generated from the following file: