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

This class is an LookupTask that uses java.net.InetAddress to looks up the Canonical Name of a host. More...

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

Protected Member Functions

String doInBackground (String...urls)
 This function uses java.net.InetAddress to lookup the Canonical Name (CNAME) of a server. 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 looks up the Canonical Name of a host.

Author
James Burton

Definition at line 17 of file LookupCNAMETask.java.

Member Function Documentation

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

This function uses java.net.InetAddress to lookup the Canonical Name (CNAME) of a server.

This takes either a hostname an ipaddress.

Parameters
urlsArray of strings that are arguments to the function. url[0] is the address to lookup.
Returns
String that represents the CNAME if call succeeded.
null If the call failed.
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 34 of file LookupCNAMETask.java.

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

Method to be done after the task has executed.

Parameters
strSome string

Definition at line 60 of file LookupCNAMETask.java.


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