/**@class android.content.DefaultDataHandler
 implements android.content.ContentInsertHandler

@extends java.lang.Object

 Inserts default data from InputStream, should be in XML format.
 If the provider syncs data to the server, the imported data will be synced to the server.
 <p>Samples:</p>
 <br/>
  Insert one row:
 <pre>
 &lt;row uri="content://contacts/people">
  &lt;Col column = "name" value = "foo feebe "/>
  &lt;Col column = "addr" value = "Tx"/>
 &lt;/row></pre>
 <br/>
 Delete, it must be in order of uri, select, and arg:
 <pre>
 &lt;del uri="content://contacts/people" select="name=? and addr=?" 
  arg1 = "foo feebe" arg2 ="Tx"/></pre>
 <br/>
  Use first row's uri to insert into another table,
  content://contacts/people/1/phones:
 <pre>
 &lt;row uri="content://contacts/people">
  &lt;col column = "name" value = "foo feebe"/>
  &lt;col column = "addr" value = "Tx"/>
  &lt;row postfix="phones">
    &lt;col column="number" value="512-514-6535"/>
  &lt;/row>
  &lt;row postfix="phones">
    &lt;col column="cell" value="512-514-6535"/>
  &lt;/row>  
 &lt;/row></pre>
 <br/>
  Insert multiple rows in to same table and same attributes:
 <pre>
 &lt;row uri="content://contacts/people" >
  &lt;row>
   &lt;col column= "name" value = "foo feebe"/>
   &lt;col column= "addr" value = "Tx"/>
  &lt;/row>
  &lt;row>
  &lt;/row>
 &lt;/row></pre>

 @hide
*/
var DefaultDataHandler = {

/**
*/
insert : function(  ) {},

/**
*/
insert : function(  ) {},

/**
*/
startElement : function(  ) {},

/**
*/
endElement : function(  ) {},

/**
*/
characters : function(  ) {},

/**
*/
endDocument : function(  ) {},

/**
*/
endPrefixMapping : function(  ) {},

/**
*/
ignorableWhitespace : function(  ) {},

/**
*/
processingInstruction : function(  ) {},

/**
*/
setDocumentLocator : function(  ) {},

/**
*/
skippedEntity : function(  ) {},

/**
*/
startDocument : function(  ) {},

/**
*/
startPrefixMapping : function(  ) {},


};